diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/components b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/components new file mode 100644 index 0000000000000000000000000000000000000000..7ea309afe693d564006de1279b61a4fe93796538 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/components @@ -0,0 +1,7 @@ +cargo-x86_64-pc-windows-msvc +rust-std-x86_64-pc-windows-msvc +rustc-x86_64-pc-windows-msvc +rust-src +rust-analyzer-preview-x86_64-pc-windows-msvc +rustfmt-preview-x86_64-pc-windows-msvc +clippy-preview-x86_64-pc-windows-msvc diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/gdb_load_rust_pretty_printers.py b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/gdb_load_rust_pretty_printers.py new file mode 100644 index 0000000000000000000000000000000000000000..73d1e79f9617d13bd13032131b58fcd90f6fdf30 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/gdb_load_rust_pretty_printers.py @@ -0,0 +1,16 @@ +# Add this folder to the python sys path; GDB Python-interpreter will now find modules in this path +import sys +from os import path + +self_dir = path.dirname(path.realpath(__file__)) +sys.path.append(self_dir) + +# ruff: noqa: E402 +import gdb +import gdb_lookup + +# current_objfile can be none; even with `gdb foo-app`; sourcing this file after gdb init now works +try: + gdb_lookup.register_printers(gdb.current_objfile()) +except Exception: + gdb_lookup.register_printers(gdb.selected_inferior().progspace) diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/gdb_lookup.py b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/gdb_lookup.py new file mode 100644 index 0000000000000000000000000000000000000000..d368f7ed1ec5c5c4a117bfeb51d4bed681295e2c --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/gdb_lookup.py @@ -0,0 +1,121 @@ +import gdb +import gdb.printing +import re + +from gdb_providers import * +from rust_types import * + + +_gdb_version_matched = re.search("([0-9]+)\\.([0-9]+)", gdb.VERSION) +gdb_version = ( + [int(num) for num in _gdb_version_matched.groups()] if _gdb_version_matched else [] +) + + +def register_printers(objfile): + objfile.pretty_printers.append(printer) + + +# BACKCOMPAT: rust 1.35 +def is_hashbrown_hashmap(hash_map): + return len(hash_map.type.fields()) == 1 + + +def classify_rust_type(type): + type_class = type.code + if type_class == gdb.TYPE_CODE_STRUCT: + return classify_struct(type.tag, type.fields()) + if type_class == gdb.TYPE_CODE_UNION: + return classify_union(type.fields()) + + return RustType.OTHER + + +def check_enum_discriminant(valobj): + content = valobj[valobj.type.fields()[0]] + fields = content.type.fields() + if len(fields) > 1: + discriminant = int(content[fields[0]]) + 1 + if discriminant > len(fields): + # invalid discriminant + return False + return True + + +# Helper for enum printing that checks the discriminant. Only used in +# older gdb. +def enum_provider(valobj): + if check_enum_discriminant(valobj): + return EnumProvider(valobj) + return None + + +# Helper to handle both old and new hash maps. +def hashmap_provider(valobj): + if is_hashbrown_hashmap(valobj): + return StdHashMapProvider(valobj) + else: + return StdOldHashMapProvider(valobj) + + +# Helper to handle both old and new hash sets. +def hashset_provider(valobj): + hash_map = valobj[valobj.type.fields()[0]] + if is_hashbrown_hashmap(hash_map): + return StdHashMapProvider(valobj, show_values=False) + else: + return StdOldHashMapProvider(hash_map, show_values=False) + + +class PrintByRustType(gdb.printing.SubPrettyPrinter): + def __init__(self, name, provider): + super(PrintByRustType, self).__init__(name) + self.provider = provider + + def __call__(self, val): + if self.enabled: + return self.provider(val) + return None + + +class RustPrettyPrinter(gdb.printing.PrettyPrinter): + def __init__(self, name): + super(RustPrettyPrinter, self).__init__(name, []) + self.type_map = {} + + def add(self, rust_type, provider): + # Just use the rust_type as the name. + printer = PrintByRustType(rust_type, provider) + self.type_map[rust_type] = printer + self.subprinters.append(printer) + + def __call__(self, valobj): + rust_type = classify_rust_type(valobj.type) + if rust_type in self.type_map: + return self.type_map[rust_type](valobj) + return None + + +printer = RustPrettyPrinter("rust") +# use enum provider only for GDB <7.12 +if gdb_version[0] < 7 or (gdb_version[0] == 7 and gdb_version[1] < 12): + printer.add(RustType.ENUM, enum_provider) +printer.add(RustType.STD_STRING, StdStringProvider) +printer.add(RustType.STD_OS_STRING, StdOsStringProvider) +printer.add(RustType.STD_STR, StdStrProvider) +printer.add(RustType.STD_SLICE, StdSliceProvider) +printer.add(RustType.STD_VEC, StdVecProvider) +printer.add(RustType.STD_VEC_DEQUE, StdVecDequeProvider) +printer.add(RustType.STD_BTREE_SET, StdBTreeSetProvider) +printer.add(RustType.STD_BTREE_MAP, StdBTreeMapProvider) +printer.add(RustType.STD_HASH_MAP, hashmap_provider) +printer.add(RustType.STD_HASH_SET, hashset_provider) +printer.add(RustType.STD_RC, StdRcProvider) +printer.add(RustType.STD_ARC, lambda valobj: StdRcProvider(valobj, is_atomic=True)) + +printer.add(RustType.STD_CELL, StdCellProvider) +printer.add(RustType.STD_REF, StdRefProvider) +printer.add(RustType.STD_REF_MUT, StdRefProvider) +printer.add(RustType.STD_REF_CELL, StdRefCellProvider) + +printer.add(RustType.STD_NONZERO_NUMBER, StdNonZeroNumberProvider) diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/gdb_providers.py b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/gdb_providers.py new file mode 100644 index 0000000000000000000000000000000000000000..b0b6682f5279edad03cf7d7310b31ae121f42403 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/gdb_providers.py @@ -0,0 +1,497 @@ +from sys import version_info + +import gdb + +if version_info[0] >= 3: + xrange = range + +ZERO_FIELD = "__0" +FIRST_FIELD = "__1" + + +def unwrap_unique_or_non_null(unique_or_nonnull): + # BACKCOMPAT: rust 1.32 + # https://github.com/rust-lang/rust/commit/7a0911528058e87d22ea305695f4047572c5e067 + # BACKCOMPAT: rust 1.60 + # https://github.com/rust-lang/rust/commit/2a91eeac1a2d27dd3de1bf55515d765da20fd86f + ptr = unique_or_nonnull["pointer"] + return ptr if ptr.type.code == gdb.TYPE_CODE_PTR else ptr[ptr.type.fields()[0]] + + +# GDB 14 has a tag class that indicates that extension methods are ok +# to call. Use of this tag only requires that printers hide local +# attributes and methods by prefixing them with "_". +if hasattr(gdb, "ValuePrinter"): + printer_base = gdb.ValuePrinter +else: + printer_base = object + + +class EnumProvider(printer_base): + def __init__(self, valobj): + content = valobj[valobj.type.fields()[0]] + fields = content.type.fields() + self._empty = len(fields) == 0 + if not self._empty: + if len(fields) == 1: + discriminant = 0 + else: + discriminant = int(content[fields[0]]) + 1 + self._active_variant = content[fields[discriminant]] + self._name = fields[discriminant].name + self._full_name = "{}::{}".format(valobj.type.name, self._name) + else: + self._full_name = valobj.type.name + + def to_string(self): + return self._full_name + + def children(self): + if not self._empty: + yield self._name, self._active_variant + + +class StdStringProvider(printer_base): + def __init__(self, valobj): + self._valobj = valobj + vec = valobj["vec"] + self._length = int(vec["len"]) + self._data_ptr = unwrap_unique_or_non_null(vec["buf"]["inner"]["ptr"]) + + def to_string(self): + return self._data_ptr.lazy_string(encoding="utf-8", length=self._length) + + @staticmethod + def display_hint(): + return "string" + + +class StdOsStringProvider(printer_base): + def __init__(self, valobj): + self._valobj = valobj + buf = self._valobj["inner"]["inner"] + is_windows = "Wtf8Buf" in buf.type.name + vec = buf["bytes"] if is_windows else buf + + self._length = int(vec["len"]) + self._data_ptr = unwrap_unique_or_non_null(vec["buf"]["inner"]["ptr"]) + + def to_string(self): + return self._data_ptr.lazy_string(encoding="utf-8", length=self._length) + + def display_hint(self): + return "string" + + +class StdStrProvider(printer_base): + def __init__(self, valobj): + self._valobj = valobj + self._length = int(valobj["length"]) + self._data_ptr = valobj["data_ptr"] + + def to_string(self): + return self._data_ptr.lazy_string(encoding="utf-8", length=self._length) + + @staticmethod + def display_hint(): + return "string" + + +def _enumerate_array_elements(element_ptrs): + for i, element_ptr in enumerate(element_ptrs): + key = "[{}]".format(i) + element = element_ptr.dereference() + + try: + # rust-lang/rust#64343: passing deref expr to `str` allows + # catching exception on garbage pointer + str(element) + except RuntimeError: + yield key, "inaccessible" + + break + + yield key, element + + +class StdSliceProvider(printer_base): + def __init__(self, valobj): + self._valobj = valobj + self._length = int(valobj["length"]) + self._data_ptr = valobj["data_ptr"] + + def to_string(self): + return "{}(size={})".format(self._valobj.type, self._length) + + def children(self): + return _enumerate_array_elements( + self._data_ptr + index for index in xrange(self._length) + ) + + def num_children(self): + return self._length + + @staticmethod + def display_hint(): + return "array" + + +class StdVecProvider(printer_base): + def __init__(self, valobj): + self._valobj = valobj + self._length = int(valobj["len"]) + self._data_ptr = unwrap_unique_or_non_null(valobj["buf"]["inner"]["ptr"]) + ptr_ty = gdb.Type.pointer(valobj.type.template_argument(0)) + self._data_ptr = self._data_ptr.reinterpret_cast(ptr_ty) + + def to_string(self): + return "Vec(size={})".format(self._length) + + def children(self): + return _enumerate_array_elements( + self._data_ptr + index for index in xrange(self._length) + ) + + def num_children(self): + return self._length + + @staticmethod + def display_hint(): + return "array" + + +class StdVecDequeProvider(printer_base): + def __init__(self, valobj): + self._valobj = valobj + self._head = int(valobj["head"]) + self._size = int(valobj["len"]) + # BACKCOMPAT: rust 1.75 + cap = valobj["buf"]["inner"]["cap"] + if cap.type.code != gdb.TYPE_CODE_INT: + cap = cap[ZERO_FIELD] + self._cap = int(cap) + self._data_ptr = unwrap_unique_or_non_null(valobj["buf"]["inner"]["ptr"]) + ptr_ty = gdb.Type.pointer(valobj.type.template_argument(0)) + self._data_ptr = self._data_ptr.reinterpret_cast(ptr_ty) + + def to_string(self): + return "VecDeque(size={})".format(self._size) + + def children(self): + return _enumerate_array_elements( + (self._data_ptr + ((self._head + index) % self._cap)) + for index in xrange(self._size) + ) + + def num_children(self): + return self._size + + @staticmethod + def display_hint(): + return "array" + + +class StdRcProvider(printer_base): + def __init__(self, valobj, is_atomic=False): + self._valobj = valobj + self._is_atomic = is_atomic + self._ptr = unwrap_unique_or_non_null(valobj["ptr"]) + self._value = self._ptr["data" if is_atomic else "value"] + self._strong = self._ptr["strong"]["v" if is_atomic else "value"]["value"] + self._weak = self._ptr["weak"]["v" if is_atomic else "value"]["value"] - 1 + + def to_string(self): + if self._is_atomic: + return "Arc(strong={}, weak={})".format(int(self._strong), int(self._weak)) + else: + return "Rc(strong={}, weak={})".format(int(self._strong), int(self._weak)) + + def children(self): + yield "value", self._value + yield "strong", self._strong + yield "weak", self._weak + + +class StdCellProvider(printer_base): + def __init__(self, valobj): + self._value = valobj["value"]["value"] + + def to_string(self): + return "Cell" + + def children(self): + yield "value", self._value + + +class StdRefProvider(printer_base): + def __init__(self, valobj): + self._value = valobj["value"].dereference() + self._borrow = valobj["borrow"]["borrow"]["value"]["value"] + + def to_string(self): + borrow = int(self._borrow) + if borrow >= 0: + return "Ref(borrow={})".format(borrow) + else: + return "Ref(borrow_mut={})".format(-borrow) + + def children(self): + yield "*value", self._value + yield "borrow", self._borrow + + +class StdRefCellProvider(printer_base): + def __init__(self, valobj): + self._value = valobj["value"]["value"] + self._borrow = valobj["borrow"]["value"]["value"] + + def to_string(self): + borrow = int(self._borrow) + if borrow >= 0: + return "RefCell(borrow={})".format(borrow) + else: + return "RefCell(borrow_mut={})".format(-borrow) + + def children(self): + yield "value", self._value + yield "borrow", self._borrow + + +class StdNonZeroNumberProvider(printer_base): + def __init__(self, valobj): + fields = valobj.type.fields() + assert len(fields) == 1 + field = fields[0] + + inner_valobj = valobj[field] + + inner_fields = inner_valobj.type.fields() + assert len(inner_fields) == 1 + inner_field = inner_fields[0] + + self._value = inner_valobj[inner_field] + + def to_string(self): + return self._value + + +# Yields children (in a provider's sense of the word) for a BTreeMap. +def children_of_btree_map(map): + # Yields each key/value pair in the node and in any child nodes. + def children_of_node(node_ptr, height): + def cast_to_internal(node): + internal_type_name = node.type.target().name.replace( + "LeafNode", "InternalNode", 1 + ) + internal_type = gdb.lookup_type(internal_type_name) + return node.cast(internal_type.pointer()) + + if node_ptr.type.name.startswith("alloc::collections::btree::node::BoxedNode<"): + # BACKCOMPAT: rust 1.49 + node_ptr = node_ptr["ptr"] + node_ptr = unwrap_unique_or_non_null(node_ptr) + leaf = node_ptr.dereference() + keys = leaf["keys"] + vals = leaf["vals"] + edges = cast_to_internal(node_ptr)["edges"] if height > 0 else None + length = leaf["len"] + + for i in xrange(0, length + 1): + if height > 0: + child_ptr = edges[i]["value"]["value"][ZERO_FIELD] + for child in children_of_node(child_ptr, height - 1): + yield child + if i < length: + # Avoid "Cannot perform pointer math on incomplete type" on zero-sized arrays. + key_type_size = keys.type.sizeof + val_type_size = vals.type.sizeof + key = ( + keys[i]["value"]["value"][ZERO_FIELD] + if key_type_size > 0 + else gdb.parse_and_eval("()") + ) + val = ( + vals[i]["value"]["value"][ZERO_FIELD] + if val_type_size > 0 + else gdb.parse_and_eval("()") + ) + yield key, val + + if map["length"] > 0: + root = map["root"] + if root.type.name.startswith("core::option::Option<"): + root = root.cast(gdb.lookup_type(root.type.name[21:-1])) + node_ptr = root["node"] + height = root["height"] + for child in children_of_node(node_ptr, height): + yield child + + +class StdBTreeSetProvider(printer_base): + def __init__(self, valobj): + self._valobj = valobj + + def to_string(self): + return "BTreeSet(size={})".format(self._valobj["map"]["length"]) + + def children(self): + inner_map = self._valobj["map"] + for i, (child, _) in enumerate(children_of_btree_map(inner_map)): + yield "[{}]".format(i), child + + @staticmethod + def display_hint(): + return "array" + + +class StdBTreeMapProvider(printer_base): + def __init__(self, valobj): + self._valobj = valobj + + def to_string(self): + return "BTreeMap(size={})".format(self._valobj["length"]) + + def children(self): + for i, (key, val) in enumerate(children_of_btree_map(self._valobj)): + yield "key{}".format(i), key + yield "val{}".format(i), val + + @staticmethod + def display_hint(): + return "map" + + +# BACKCOMPAT: rust 1.35 +class StdOldHashMapProvider(printer_base): + def __init__(self, valobj, show_values=True): + self._valobj = valobj + self._show_values = show_values + + self._table = self._valobj["table"] + self._size = int(self._table["size"]) + self._hashes = self._table["hashes"] + self._hash_uint_type = self._hashes.type + self._hash_uint_size = self._hashes.type.sizeof + self._modulo = 2**self._hash_uint_size + self._data_ptr = self._hashes[ZERO_FIELD]["pointer"] + + self._capacity_mask = int(self._table["capacity_mask"]) + self._capacity = (self._capacity_mask + 1) % self._modulo + + marker = self._table["marker"].type + self._pair_type = marker.template_argument(0) + self._pair_type_size = self._pair_type.sizeof + + self._valid_indices = [] + for idx in range(self._capacity): + data_ptr = self._data_ptr.cast(self._hash_uint_type.pointer()) + address = data_ptr + idx + hash_uint = address.dereference() + hash_ptr = hash_uint[ZERO_FIELD]["pointer"] + if int(hash_ptr) != 0: + self._valid_indices.append(idx) + + def to_string(self): + if self._show_values: + return "HashMap(size={})".format(self._size) + else: + return "HashSet(size={})".format(self._size) + + def children(self): + start = int(self._data_ptr) & ~1 + + hashes = self._hash_uint_size * self._capacity + align = self._pair_type_size + len_rounded_up = ( + ( + (((hashes + align) % self._modulo - 1) % self._modulo) + & ~((align - 1) % self._modulo) + ) + % self._modulo + - hashes + ) % self._modulo + + pairs_offset = hashes + len_rounded_up + pairs_start = gdb.Value(start + pairs_offset).cast(self._pair_type.pointer()) + + for index in range(self._size): + table_index = self._valid_indices[index] + idx = table_index & self._capacity_mask + element = (pairs_start + idx).dereference() + if self._show_values: + yield "key{}".format(index), element[ZERO_FIELD] + yield "val{}".format(index), element[FIRST_FIELD] + else: + yield "[{}]".format(index), element[ZERO_FIELD] + + def display_hint(self): + return "map" if self._show_values else "array" + + +class StdHashMapProvider(printer_base): + def __init__(self, valobj, show_values=True): + self._valobj = valobj + self._show_values = show_values + + table = self._table() + table_inner = table["table"] + capacity = int(table_inner["bucket_mask"]) + 1 + ctrl = table_inner["ctrl"]["pointer"] + + self._size = int(table_inner["items"]) + self._pair_type = table.type.template_argument(0).strip_typedefs() + + self._new_layout = not table_inner.type.has_key("data") + if self._new_layout: + self._data_ptr = ctrl.cast(self._pair_type.pointer()) + else: + self._data_ptr = table_inner["data"]["pointer"] + + self._valid_indices = [] + for idx in range(capacity): + address = ctrl + idx + value = address.dereference() + is_presented = value & 128 == 0 + if is_presented: + self._valid_indices.append(idx) + + def _table(self): + if self._show_values: + hashbrown_hashmap = self._valobj["base"] + elif self._valobj.type.fields()[0].name == "map": + # BACKCOMPAT: rust 1.47 + # HashSet wraps std::collections::HashMap, which wraps hashbrown::HashMap + hashbrown_hashmap = self._valobj["map"]["base"] + else: + # HashSet wraps hashbrown::HashSet, which wraps hashbrown::HashMap + hashbrown_hashmap = self._valobj["base"]["map"] + return hashbrown_hashmap["table"] + + def to_string(self): + if self._show_values: + return "HashMap(size={})".format(self._size) + else: + return "HashSet(size={})".format(self._size) + + def children(self): + pairs_start = self._data_ptr + + for index in range(self._size): + idx = self._valid_indices[index] + if self._new_layout: + idx = -(idx + 1) + element = (pairs_start + idx).dereference() + if self._show_values: + yield "key{}".format(index), element[ZERO_FIELD] + yield "val{}".format(index), element[FIRST_FIELD] + else: + yield "[{}]".format(index), element[ZERO_FIELD] + + def num_children(self): + result = self._size + if self._show_values: + result *= 2 + return result + + def display_hint(self): + return "map" if self._show_values else "array" diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/intrinsic.natvis b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/intrinsic.natvis new file mode 100644 index 0000000000000000000000000000000000000000..49e0ce319efac90bdc77de25defea29c112d561f --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/intrinsic.natvis @@ -0,0 +1,372 @@ + + + + + + + + {(char*)data_ptr,[length]s8} + (char*)data_ptr,[length]s8 + + length + + + + length + data_ptr + + + + + + + + + + + {{ len={length} }} + + length + + length + data_ptr + + + + + + + + + + + + + + + + + + + + + + inf + -inf + NaN + + {(float) (sign() * raw_significand() / 16384.0)} + + {(float) (sign() * (raw_significand() + 1.0) * two_pow_exponent())} + + + () + + + ({__0}) + + __0 + + + + ({__0}, {__1}) + + __0 + __1 + + + + ({__0}, {__1}, {__2}) + + __0 + __1 + __2 + + + + ({__0}, {__1}, {__2}, {__3}) + + __0 + __1 + __2 + __3 + + + + ({__0}, {__1}, {__2}, {__3}, {__4}) + + __0 + __1 + __2 + __3 + __4 + + + + ({__0}, {__1}, {__2}, {__3}, {__4}, {__5}) + + __0 + __1 + __2 + __3 + __4 + __5 + + + + ({__0}, {__1}, {__2}, {__3}, {__4}, {__5}, {__6}) + + __0 + __1 + __2 + __3 + __4 + __5 + __6 + + + + ({__0}, {__1}, {__2}, {__3}, {__4}, {__5}, {__6}, {__7}) + + __0 + __1 + __2 + __3 + __4 + __5 + __6 + __7 + + + + ({__0}, {__1}, {__2}, {__3}, {__4}, {__5}, {__6}, {__7}, {__8}) + + __0 + __1 + __2 + __3 + __4 + __5 + __6 + __7 + __8 + + + + ({__0}, {__1}, {__2}, {__3}, {__4}, {__5}, {__6}, {__7}, {__8}, {__9}) + + __0 + __1 + __2 + __3 + __4 + __5 + __6 + __7 + __8 + __9 + + + + ({__0}, {__1}, {__2}, {__3}, {__4}, {__5}, {__6}, {__7}, {__8}, {__9}, ...) + + __0 + __1 + __2 + __3 + __4 + __5 + __6 + __7 + __8 + __9 + ... + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {variant0.NAME,en} + {variant1.NAME,en} + {variant2.NAME,en} + {variant3.NAME,en} + {variant4.NAME,en} + {variant5.NAME,en} + {variant6.NAME,en} + {variant7.NAME,en} + {variant8.NAME,en} + {variant9.NAME,en} + {variant10.NAME,en} + {variant11.NAME,en} + {variant12.NAME,en} + {variant13.NAME,en} + {variant14.NAME,en} + {variant15.NAME,en} + + {variant0.NAME,en} + {variant1.NAME,en} + {variant2.NAME,en} + {variant3.NAME,en} + {variant4.NAME,en} + {variant5.NAME,en} + {variant6.NAME,en} + {variant7.NAME,en} + {variant8.NAME,en} + {variant9.NAME,en} + {variant10.NAME,en} + {variant11.NAME,en} + {variant12.NAME,en} + {variant13.NAME,en} + {variant14.NAME,en} + {variant15.NAME,en} + + {variant0.NAME,en} + {variant1.NAME,en} + {variant2.NAME,en} + {variant3.NAME,en} + {variant4.NAME,en} + {variant5.NAME,en} + {variant6.NAME,en} + {variant7.NAME,en} + {variant8.NAME,en} + {variant9.NAME,en} + {variant10.NAME,en} + {variant11.NAME,en} + {variant12.NAME,en} + {variant13.NAME,en} + {variant14.NAME,en} + {variant15.NAME,en} + + {variant0.NAME,en} + {variant1.NAME,en} + {variant2.NAME,en} + {variant3.NAME,en} + {variant4.NAME,en} + {variant5.NAME,en} + {variant6.NAME,en} + {variant7.NAME,en} + {variant8.NAME,en} + {variant9.NAME,en} + {variant10.NAME,en} + {variant11.NAME,en} + {variant12.NAME,en} + {variant13.NAME,en} + {variant14.NAME,en} + {variant15.NAME,en} + + + variant0.value + variant1.value + variant2.value + variant3.value + variant4.value + variant5.value + variant6.value + variant7.value + variant8.value + variant9.value + variant10.value + variant11.value + variant12.value + variant13.value + variant14.value + variant15.value + + variant0.value + variant1.value + variant2.value + variant3.value + variant4.value + variant5.value + variant6.value + variant7.value + variant8.value + variant9.value + variant10.value + variant11.value + variant12.value + variant13.value + variant14.value + variant15.value + + variant0.value + variant1.value + variant2.value + variant3.value + variant4.value + variant5.value + variant6.value + variant7.value + variant8.value + variant9.value + variant10.value + variant11.value + variant12.value + variant13.value + variant14.value + variant15.value + + variant0.value + variant1.value + variant2.value + variant3.value + variant4.value + variant5.value + variant6.value + variant7.value + variant8.value + variant9.value + variant10.value + variant11.value + variant12.value + variant13.value + variant14.value + variant15.value + + + diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/liballoc.natvis b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/liballoc.natvis new file mode 100644 index 0000000000000000000000000000000000000000..1528a8b1226ca14679de29bd2df49575e844c253 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/liballoc.natvis @@ -0,0 +1,190 @@ + + + + {{ len={len} }} + + len + buf.inner.cap.__0 + + len + ($T1*)buf.inner.ptr.pointer.pointer + + + + + {{ len={len} }} + + len + buf.inner.cap.__0 + + + len + + + + + (($T1*)buf.inner.ptr.pointer.pointer)[(i + head) % buf.inner.cap.__0] + i = i + 1 + + + + + + {{ len={len} }} + + + len + *(alloc::collections::linked_list::Node<$T1> **)&head + *(alloc::collections::linked_list::Node<$T1> **)&next + element + + + + + {(char*)vec.buf.inner.ptr.pointer.pointer,[vec.len]s8} + (char*)vec.buf.inner.ptr.pointer.pointer,[vec.len]s8 + + vec.len + vec.buf.inner.cap.__0 + + {(char*)vec.buf.inner.ptr.pointer.pointer,[vec.len]s8} + + + vec.len + (char*)vec.buf.inner.ptr.pointer.pointer + + + + + + + + + + {ptr.pointer->value} + + + ptr.pointer->value + ptr.pointer->strong + ptr.pointer->weak + + + ptr.pointer.pointer->strong + ptr.pointer.pointer->weak + + + + + + {{ len={ptr.pointer.length} }} + + ptr.pointer.length + ptr.pointer.data_ptr->strong + ptr.pointer.data_ptr->weak + + ptr.pointer.length + + ($T1*)(((size_t*)ptr.pointer.data_ptr) + 2) + + + + + + + {ptr.pointer->value} + + + ptr.pointer->value + ptr.pointer->strong + ptr.pointer->weak + + + ptr.pointer.pointer->strong + ptr.pointer.pointer->weak + + + + + + {{ len={ptr.pointer.length} }} + + ptr.pointer.length + ptr.pointer.data_ptr->strong + ptr.pointer.data_ptr->weak + + ptr.pointer.length + ($T1*)(((size_t*)ptr.pointer.data_ptr) + 2) + + + + + + + {ptr.pointer->data} + + + ptr.pointer->data + ptr.pointer->strong + ptr.pointer->weak + + + ptr.pointer.pointer->strong + ptr.pointer.pointer->weak + + + + + + {{ len={ptr.pointer.length} }} + + ptr.pointer.length + ptr.pointer.data_ptr->strong + ptr.pointer.data_ptr->weak + + ptr.pointer.length + ($T1*)(((size_t*)ptr.pointer.data_ptr) + 2) + + + + + + + {ptr.pointer->data} + + + ptr.pointer->data + ptr.pointer->strong + ptr.pointer->weak + + + ptr.pointer.pointer->strong + ptr.pointer.pointer->weak + + + + + + {{ len={ptr.pointer.length} }} + + ptr.pointer.length + ptr.pointer.data_ptr->strong + ptr.pointer.data_ptr->weak + + ptr.pointer.length + ($T1*)(((size_t*)ptr.pointer.data_ptr) + 2) + + + + diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/libcore.natvis b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/libcore.natvis new file mode 100644 index 0000000000000000000000000000000000000000..d09f0d635692a48ed9307be451dff61995d0e20f --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/libcore.natvis @@ -0,0 +1,133 @@ + + + + {value.value} + + value.value + + + + {value.pointer} + + value.pointer + + + + {value.pointer} + + value.pointer + + + + {value.value} + + "Unborrowed",sb + "Immutably borrowed",sb + "Mutably borrowed",sb + value.value + + + + {value} + + value + + + + + {value.__0} + + value.__0 + + + + + {__0.__0} + + __0.__0 + + + + + {__0} + + + + ({start}..{end}) + + + ({start}..) + + + ({start}..={end}) + + + (..{end}) + + + (..={end}) + + + + Pin({(void*)pointer}: {pointer}) + + pointer + + + + + NonNull({(void*) pointer}: {pointer}) + + pointer + + + + + Unique({(void*)pointer.pointer}: {pointer.pointer}) + + pointer + + + + + {(bool)v.value} + + + {v.value} + + + {v.value} + + + {v.value} + + + {v.value} + + + {v.value} + + + {v.value} + + + {v.value} + + + {v.value} + + + {v.value} + + + {v.value} + + + + {secs,d}s {nanos.__0,d}ns + + secs,d + nanos.__0,d + + + diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/libstd.natvis b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/libstd.natvis new file mode 100644 index 0000000000000000000000000000000000000000..93e94e5f38261fa8813bb6c88ad663476388829d --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/libstd.natvis @@ -0,0 +1,120 @@ + + + + + + {{ len={base.table.table.items} }} + + base.table.table.items + base.table.table.items + base.table.table.growth_left + base.hash_builder + + + + + base.table.table.items + + + + + n-- + ((tuple$<$T1,$T2>*)base.table.table.ctrl.pointer)[-(i + 1)].__1 + + i++ + + + + + + + {{ len={base.map.table.table.items} }} + + base.map.table.table.items + base.map.table.table.items + base.map.table.table.growth_left + base.map.hash_builder + + + + + base.map.table.table.items + + + + + n-- + (($T1*)base.map.table.table.ctrl.pointer)[-(i + 1)] + + i++ + + + + + + + {(char*)inner.data_ptr} + + + {(char*)inner.data_ptr} + + + inner.length + (char*)inner.data_ptr + + + + + + + + {(char*) inner} + + + {(char*) inner} + + + strlen((char *) inner) + 1 + (char*)inner + + + + + + + + {(char*)inner.inner.bytes.buf.inner.ptr.pointer.pointer,[inner.inner.bytes.len]} + + + {(char*)inner.inner.bytes.buf.inner.ptr.pointer.pointer,[inner.inner.bytes.len]} + + + inner.inner.bytes.len + (char*)inner.inner.bytes.buf.inner.ptr.pointer.pointer + + + + + + diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/lldb_commands b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/lldb_commands new file mode 100644 index 0000000000000000000000000000000000000000..eff065d545657fc5427685a4ffa2401c9d602c6c --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/lldb_commands @@ -0,0 +1,81 @@ +# Forces test-compliant formatting to all other types +type synthetic add -l lldb_lookup.synthetic_lookup -x ".*" --category Rust +# Std String +type synthetic add -l lldb_lookup.StdStringSyntheticProvider -x "^(alloc::([a-z_]+::)+)String$" --category Rust +type summary add -F lldb_lookup.StdStringSummaryProvider -e -x -h "^(alloc::([a-z_]+::)+)String$" --category Rust +# Std str +type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust +type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust +## MSVC +type synthetic add -l lldb_lookup.MSVCStrSyntheticProvider -x "^ref(_mut)?\$$" --category Rust +type summary add -F lldb_lookup.StdStrSummaryProvider -e -h -x "^ref(_mut)?\$$" --category Rust +# Array +type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust +type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust +# Slice +## MSVC +type synthetic add -l lldb_lookup.MSVCStdSliceSyntheticProvider -x "^ref(_mut)?\$ >" --category Rust +type summary add -F lldb_lookup.StdSliceSummaryProvider -e -x -h "^ref(_mut)?\$ >" --category Rust +# OsString +type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust +type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust +# Vec +type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust +type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust +# VecDeque +type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust +type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust +# BTreeSet +type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust +type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust +# BTreeMap +type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust +type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust +# HashMap +type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust +type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust +# HashSet +type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust +type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust +# Rc +type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust +type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust +# Arc +type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust +type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust +# Cell +type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust +type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust +# RefCell +type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust +type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust +type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust +type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust +type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust +type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust +# NonZero +type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust +type synthetic add -l lldb_lookup.synthetic_lookup -x "^core::num::([a-z_]+::)*NonZero.+$" --category Rust +type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust +type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust +# PathBuf +type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::([a-z_]+::)+)PathBuf$" --category Rust +type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust +# Path +type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust +type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust +# Enum +# type summary add -F lldb_lookup.ClangEncodedEnumSummaryProvider -e -h "lldb_lookup.is_sum_type_enum" --recognizer-function --category Rust +## MSVC +type synthetic add -l lldb_lookup.MSVCEnumSyntheticProvider -x "^enum2\$<.+>$" --category Rust +type summary add -F lldb_lookup.MSVCEnumSummaryProvider -e -x -h "^enum2\$<.+>$" --category Rust +## MSVC Variants +type synthetic add -l lldb_lookup.synthetic_lookup -x "^enum2\$<.+>::.*$" --category Rust +type summary add -F lldb_lookup.summary_lookup -e -x -h "^enum2\$<.+>::.*$" --category Rust +# Tuple +type synthetic add -l lldb_lookup.synthetic_lookup -x "^\(.*\)$" --category Rust +type summary add -F lldb_lookup.TupleSummaryProvider -e -x -h "^\(.*\)$" --category Rust +## MSVC +type synthetic add -l lldb_lookup.MSVCTupleSyntheticProvider -x "^tuple\$<.+>$" --category Rust +type summary add -F lldb_lookup.TupleSummaryProvider -e -x -h "^tuple\$<.+>$" --category Rust +type category enable Rust diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/lldb_lookup.py b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/lldb_lookup.py new file mode 100644 index 0000000000000000000000000000000000000000..2b90d4022f7fba81b1e4236e7428c85c883812c3 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/lldb_lookup.py @@ -0,0 +1,142 @@ +import lldb + +from lldb_providers import * +from rust_types import RustType, classify_struct, classify_union + + +# BACKCOMPAT: rust 1.35 +def is_hashbrown_hashmap(hash_map: lldb.SBValue) -> bool: + return len(hash_map.type.fields) == 1 + + +def classify_rust_type(type: lldb.SBType) -> str: + type_class = type.GetTypeClass() + if type_class == lldb.eTypeClassStruct: + return classify_struct(type.name, type.fields) + if type_class == lldb.eTypeClassUnion: + return classify_union(type.fields) + + return RustType.OTHER + + +def summary_lookup(valobj: lldb.SBValue, _dict: LLDBOpaque) -> str: + """Returns the summary provider for the given value""" + rust_type = classify_rust_type(valobj.GetType()) + + if rust_type == RustType.STD_STRING: + return StdStringSummaryProvider(valobj, _dict) + if rust_type == RustType.STD_OS_STRING: + return StdOsStringSummaryProvider(valobj, _dict) + if rust_type == RustType.STD_STR: + return StdStrSummaryProvider(valobj, _dict) + + if rust_type == RustType.STD_VEC: + return SizeSummaryProvider(valobj, _dict) + if rust_type == RustType.STD_VEC_DEQUE: + return SizeSummaryProvider(valobj, _dict) + if rust_type == RustType.STD_SLICE: + return SizeSummaryProvider(valobj, _dict) + + if rust_type == RustType.STD_HASH_MAP: + return SizeSummaryProvider(valobj, _dict) + if rust_type == RustType.STD_HASH_SET: + return SizeSummaryProvider(valobj, _dict) + + if rust_type == RustType.STD_RC: + return StdRcSummaryProvider(valobj, _dict) + if rust_type == RustType.STD_ARC: + return StdRcSummaryProvider(valobj, _dict) + + if rust_type == RustType.STD_REF: + return StdRefSummaryProvider(valobj, _dict) + if rust_type == RustType.STD_REF_MUT: + return StdRefSummaryProvider(valobj, _dict) + if rust_type == RustType.STD_REF_CELL: + return StdRefSummaryProvider(valobj, _dict) + + if rust_type == RustType.STD_NONZERO_NUMBER: + return StdNonZeroNumberSummaryProvider(valobj, _dict) + + if rust_type == RustType.STD_PATHBUF: + return StdPathBufSummaryProvider(valobj, _dict) + if rust_type == RustType.STD_PATH: + return StdPathSummaryProvider(valobj, _dict) + + return "" + + +def synthetic_lookup(valobj: lldb.SBValue, _dict: LLDBOpaque) -> object: + """Returns the synthetic provider for the given value""" + rust_type = classify_rust_type(valobj.GetType()) + + if rust_type == RustType.STRUCT: + return StructSyntheticProvider(valobj, _dict) + if rust_type == RustType.STRUCT_VARIANT: + return StructSyntheticProvider(valobj, _dict, is_variant=True) + if rust_type == RustType.TUPLE: + return TupleSyntheticProvider(valobj, _dict) + if rust_type == RustType.TUPLE_VARIANT: + return TupleSyntheticProvider(valobj, _dict, is_variant=True) + if rust_type == RustType.EMPTY: + return EmptySyntheticProvider(valobj, _dict) + if rust_type == RustType.REGULAR_ENUM: + discriminant = valobj.GetChildAtIndex(0).GetChildAtIndex(0).GetValueAsUnsigned() + return synthetic_lookup(valobj.GetChildAtIndex(discriminant), _dict) + if rust_type == RustType.SINGLETON_ENUM: + return synthetic_lookup(valobj.GetChildAtIndex(0), _dict) + if rust_type == RustType.ENUM: + # this little trick lets us treat `synthetic_lookup` as a "recognizer function" for the enum + # summary providers, reducing the number of lookups we have to do. This is a huge time save + # because there's no way (via type name) to recognize sum-type enums on `*-gnu` targets. The + # alternative would be to shove every single type through `summary_lookup`, which is + # incredibly wasteful. Once these scripts are updated for LLDB 19.0 and we can use + # `--recognizer-function`, this hack will only be needed for backwards compatibility. + summary: lldb.SBTypeSummary = valobj.GetTypeSummary() + if ( + summary.summary_data is None + or summary.summary_data.strip() + != "lldb_lookup.ClangEncodedEnumSummaryProvider(valobj,internal_dict)" + ): + rust_category: lldb.SBTypeCategory = lldb.debugger.GetCategory("Rust") + rust_category.AddTypeSummary( + lldb.SBTypeNameSpecifier(valobj.GetTypeName()), + lldb.SBTypeSummary().CreateWithFunctionName( + "lldb_lookup.ClangEncodedEnumSummaryProvider" + ), + ) + + return ClangEncodedEnumProvider(valobj, _dict) + if rust_type == RustType.STD_VEC: + return StdVecSyntheticProvider(valobj, _dict) + if rust_type == RustType.STD_VEC_DEQUE: + return StdVecDequeSyntheticProvider(valobj, _dict) + if rust_type == RustType.STD_SLICE or rust_type == RustType.STD_STR: + return StdSliceSyntheticProvider(valobj, _dict) + + if rust_type == RustType.STD_HASH_MAP: + if is_hashbrown_hashmap(valobj): + return StdHashMapSyntheticProvider(valobj, _dict) + else: + return StdOldHashMapSyntheticProvider(valobj, _dict) + if rust_type == RustType.STD_HASH_SET: + hash_map = valobj.GetChildAtIndex(0) + if is_hashbrown_hashmap(hash_map): + return StdHashMapSyntheticProvider(valobj, _dict, show_values=False) + else: + return StdOldHashMapSyntheticProvider(hash_map, _dict, show_values=False) + + if rust_type == RustType.STD_RC: + return StdRcSyntheticProvider(valobj, _dict) + if rust_type == RustType.STD_ARC: + return StdRcSyntheticProvider(valobj, _dict, is_atomic=True) + + if rust_type == RustType.STD_CELL: + return StdCellSyntheticProvider(valobj, _dict) + if rust_type == RustType.STD_REF: + return StdRefSyntheticProvider(valobj, _dict) + if rust_type == RustType.STD_REF_MUT: + return StdRefSyntheticProvider(valobj, _dict) + if rust_type == RustType.STD_REF_CELL: + return StdRefSyntheticProvider(valobj, _dict, is_cell=True) + + return DefaultSyntheticProvider(valobj, _dict) diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/lldb_providers.py b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/lldb_providers.py new file mode 100644 index 0000000000000000000000000000000000000000..582471622baa641fba6d636707b12ab82ca4a046 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/lldb_providers.py @@ -0,0 +1,1403 @@ +from __future__ import annotations +import sys +from typing import Generator, List, TYPE_CHECKING + +from lldb import ( + SBData, + SBError, + eBasicTypeLong, + eBasicTypeUnsignedLong, + eBasicTypeUnsignedChar, + eFormatChar, +) + +from rust_types import is_tuple_fields + +if TYPE_CHECKING: + from lldb import SBValue, SBType, SBTypeStaticField, SBTarget + +# from lldb.formatters import Logger + +#################################################################################################### +# This file contains two kinds of pretty-printers: summary and synthetic. +# +# Important classes from LLDB module: +# SBValue: the value of a variable, a register, or an expression +# SBType: the data type; each SBValue has a corresponding SBType +# +# Summary provider is a function with the type `(SBValue, dict) -> str`. +# The first parameter is the object encapsulating the actual variable being displayed; +# The second parameter is an internal support parameter used by LLDB, and you should not touch it. +# +# Synthetic children is the way to provide a children-based representation of the object's value. +# Synthetic provider is a class that implements the following interface: +# +# class SyntheticChildrenProvider: +# def __init__(self, SBValue, dict) +# def num_children(self) +# def get_child_index(self, str) +# def get_child_at_index(self, int) +# def update(self) +# def has_children(self) +# def get_value(self) +# +# +# You can find more information and examples here: +# 1. https://lldb.llvm.org/varformats.html +# 2. https://lldb.llvm.org/use/python-reference.html +# 3. https://github.com/llvm/llvm-project/blob/llvmorg-8.0.1/lldb/www/python_reference/lldb.formatters.cpp-pysrc.html +# 4. https://github.com/llvm-mirror/lldb/tree/master/examples/summaries/cocoa +#################################################################################################### + +PY3 = sys.version_info[0] == 3 + + +class LLDBOpaque: + """ + An marker type for use in type hints to denote LLDB bookkeeping variables. Values marked with + this type should never be used except when passing as an argument to an LLDB function. + """ + + +class ValueBuilder: + def __init__(self, valobj: SBValue): + self.valobj = valobj + process = valobj.GetProcess() + self.endianness = process.GetByteOrder() + self.pointer_size = process.GetAddressByteSize() + + def from_int(self, name: str, value: int) -> SBValue: + type = self.valobj.GetType().GetBasicType(eBasicTypeLong) + data = SBData.CreateDataFromSInt64Array( + self.endianness, self.pointer_size, [value] + ) + return self.valobj.CreateValueFromData(name, data, type) + + def from_uint(self, name: str, value: int) -> SBValue: + type = self.valobj.GetType().GetBasicType(eBasicTypeUnsignedLong) + data = SBData.CreateDataFromUInt64Array( + self.endianness, self.pointer_size, [value] + ) + return self.valobj.CreateValueFromData(name, data, type) + + +def unwrap_unique_or_non_null(unique_or_nonnull: SBValue) -> SBValue: + # BACKCOMPAT: rust 1.32 + # https://github.com/rust-lang/rust/commit/7a0911528058e87d22ea305695f4047572c5e067 + # BACKCOMPAT: rust 1.60 + # https://github.com/rust-lang/rust/commit/2a91eeac1a2d27dd3de1bf55515d765da20fd86f + ptr = unique_or_nonnull.GetChildMemberWithName("pointer") + return ptr if ptr.TypeIsPointerType() else ptr.GetChildAtIndex(0) + + +class DefaultSyntheticProvider: + def __init__(self, valobj: SBValue, _dict: LLDBOpaque): + # logger = Logger.Logger() + # logger >> "Default synthetic provider for " + str(valobj.GetName()) + self.valobj = valobj + + def num_children(self) -> int: + return self.valobj.GetNumChildren() + + def get_child_index(self, name: str) -> int: + return self.valobj.GetIndexOfChildWithName(name) + + def get_child_at_index(self, index: int) -> SBValue: + return self.valobj.GetChildAtIndex(index) + + def update(self): + pass + + def has_children(self) -> bool: + return self.valobj.MightHaveChildren() + + +class EmptySyntheticProvider: + def __init__(self, valobj: SBValue, _dict: LLDBOpaque): + # logger = Logger.Logger() + # logger >> "[EmptySyntheticProvider] for " + str(valobj.GetName()) + self.valobj = valobj + + def num_children(self) -> int: + return 0 + + def get_child_index(self, name: str) -> int: + return -1 + + def get_child_at_index(self, index: int) -> SBValue: + return None + + def update(self): + pass + + def has_children(self) -> bool: + return False + + +def get_template_args(type_name: str) -> Generator[str, None, None]: + """ + Takes a type name `T, D>` and returns a list of its generic args + `["A", "tuple$", "D"]`. + + String-based replacement for LLDB's `SBType.template_args`, as LLDB is currently unable to + populate this field for targets with PDB debug info. Also useful for manually altering the type + name of generics (e.g. `Vec >` -> `Vec<&str>`). + + Each element of the returned list can be looked up for its `SBType` value via + `SBTarget.FindFirstType()` + """ + level = 0 + start = 0 + for i, c in enumerate(type_name): + if c == "<": + level += 1 + if level == 1: + start = i + 1 + elif c == ">": + level -= 1 + if level == 0: + yield type_name[start:i].strip() + elif c == "," and level == 1: + yield type_name[start:i].strip() + start = i + 1 + + +MSVC_PTR_PREFIX: List[str] = ["ref$<", "ref_mut$<", "ptr_const$<", "ptr_mut$<"] + + +def resolve_msvc_template_arg(arg_name: str, target: SBTarget) -> SBType: + """ + RECURSIVE when arrays or references are nested (e.g. `ref$ >`, `array$ >`) + + Takes the template arg's name (likely from `get_template_args`) and finds/creates its + corresponding SBType. + + For non-reference/pointer/array types this is identical to calling + `target.FindFirstType(arg_name)` + + LLDB internally interprets refs, pointers, and arrays C-style (`&u8` -> `u8 *`, + `*const u8` -> `u8 *`, `[u8; 5]` -> `u8 [5]`). Looking up these names still doesn't work in the + current version of LLDB, so instead the types are generated via `base_type.GetPointerType()` and + `base_type.GetArrayType()`, which bypass the PDB file and ask clang directly for the type node. + """ + result = target.FindFirstType(arg_name) + + if result.IsValid(): + return result + + for prefix in MSVC_PTR_PREFIX: + if arg_name.startswith(prefix): + arg_name = arg_name[len(prefix) : -1].strip() + + result = resolve_msvc_template_arg(arg_name, target) + return result.GetPointerType() + + if arg_name.startswith("array$<"): + arg_name = arg_name[7:-1].strip() + + template_args = get_template_args(arg_name) + + element_name = next(template_args) + length = next(template_args) + + result = resolve_msvc_template_arg(element_name, target) + + return result.GetArrayType(int(length)) + + return result + + +def StructSummaryProvider(valobj: SBValue, _dict: LLDBOpaque) -> str: + # structs need the field name before the field value + output = ( + f"{valobj.GetChildAtIndex(i).GetName()}:{child}" + for i, child in enumerate(aggregate_field_summary(valobj, _dict)) + ) + + return "{" + ", ".join(output) + "}" + + +def TupleSummaryProvider(valobj: SBValue, _dict: LLDBOpaque): + return "(" + ", ".join(aggregate_field_summary(valobj, _dict)) + ")" + + +def aggregate_field_summary(valobj: SBValue, _dict) -> Generator[str, None, None]: + for i in range(0, valobj.GetNumChildren()): + child: SBValue = valobj.GetChildAtIndex(i) + summary = child.summary + if summary is None: + summary = child.value + if summary is None: + if is_tuple_fields(child): + summary = TupleSummaryProvider(child, _dict) + else: + summary = StructSummaryProvider(child, _dict) + yield summary + + +def SizeSummaryProvider(valobj: SBValue, _dict: LLDBOpaque) -> str: + return "size=" + str(valobj.GetNumChildren()) + + +def vec_to_string(vec: SBValue) -> str: + length = vec.GetNumChildren() + chars = [vec.GetChildAtIndex(i).GetValueAsUnsigned() for i in range(length)] + return ( + bytes(chars).decode(errors="replace") + if PY3 + else "".join(chr(char) for char in chars) + ) + + +def StdStringSummaryProvider(valobj, dict): + inner_vec = ( + valobj.GetNonSyntheticValue() + .GetChildMemberWithName("vec") + .GetNonSyntheticValue() + ) + + pointer = ( + inner_vec.GetChildMemberWithName("buf") + .GetChildMemberWithName("inner") + .GetChildMemberWithName("ptr") + .GetChildMemberWithName("pointer") + .GetChildMemberWithName("pointer") + ) + + length = inner_vec.GetChildMemberWithName("len").GetValueAsUnsigned() + + if length <= 0: + return '""' + error = SBError() + process = pointer.GetProcess() + data = process.ReadMemory(pointer.GetValueAsUnsigned(), length, error) + if error.Success(): + return '"' + data.decode("utf8", "replace") + '"' + else: + raise Exception("ReadMemory error: %s", error.GetCString()) + + +def StdOsStringSummaryProvider(valobj: SBValue, _dict: LLDBOpaque) -> str: + # logger = Logger.Logger() + # logger >> "[StdOsStringSummaryProvider] for " + str(valobj.GetName()) + buf = valobj.GetChildAtIndex(0).GetChildAtIndex(0) + is_windows = "Wtf8Buf" in buf.type.name + vec = buf.GetChildAtIndex(0) if is_windows else buf + return '"%s"' % vec_to_string(vec) + + +def StdStrSummaryProvider(valobj: SBValue, _dict: LLDBOpaque) -> str: + # logger = Logger.Logger() + # logger >> "[StdStrSummaryProvider] for " + str(valobj.GetName()) + + # the code below assumes non-synthetic value, this makes sure the assumption holds + valobj = valobj.GetNonSyntheticValue() + + length = valobj.GetChildMemberWithName("length").GetValueAsUnsigned() + if length == 0: + return '""' + + data_ptr = valobj.GetChildMemberWithName("data_ptr") + + start = data_ptr.GetValueAsUnsigned() + error = SBError() + process = data_ptr.GetProcess() + data = process.ReadMemory(start, length, error) + data = data.decode(encoding="UTF-8") if PY3 else data + return '"%s"' % data + + +def StdPathBufSummaryProvider(valobj: SBValue, _dict: LLDBOpaque) -> str: + # logger = Logger.Logger() + # logger >> "[StdPathBufSummaryProvider] for " + str(valobj.GetName()) + return StdOsStringSummaryProvider(valobj.GetChildMemberWithName("inner"), _dict) + + +def StdPathSummaryProvider(valobj: SBValue, _dict: LLDBOpaque) -> str: + # logger = Logger.Logger() + # logger >> "[StdPathSummaryProvider] for " + str(valobj.GetName()) + length = valobj.GetChildMemberWithName("length").GetValueAsUnsigned() + if length == 0: + return '""' + + data_ptr = valobj.GetChildMemberWithName("data_ptr") + + start = data_ptr.GetValueAsUnsigned() + error = SBError() + process = data_ptr.GetProcess() + data = process.ReadMemory(start, length, error) + if PY3: + try: + data = data.decode(encoding="UTF-8") + except UnicodeDecodeError: + return "%r" % data + return '"%s"' % data + + +def sequence_formatter(output: str, valobj: SBValue, _dict: LLDBOpaque): + length: int = valobj.GetNumChildren() + + long: bool = False + for i in range(0, length): + if len(output) > 32: + long = True + break + + child: SBValue = valobj.GetChildAtIndex(i) + + summary = child.summary + if summary is None: + summary = child.value + if summary is None: + summary = "{...}" + output += f"{summary}, " + if long: + output = f"(len: {length}) " + output + "..." + else: + output = output[:-2] + + return output + + +class StructSyntheticProvider: + """Pretty-printer for structs and struct enum variants""" + + def __init__(self, valobj: SBValue, _dict: LLDBOpaque, is_variant: bool = False): + # logger = Logger.Logger() + self.valobj = valobj + self.is_variant = is_variant + self.type = valobj.GetType() + self.fields = {} + + if is_variant: + self.fields_count = self.type.GetNumberOfFields() - 1 + real_fields = self.type.fields[1:] + else: + self.fields_count = self.type.GetNumberOfFields() + real_fields = self.type.fields + + for number, field in enumerate(real_fields): + self.fields[field.name] = number + + def num_children(self) -> int: + return self.fields_count + + def get_child_index(self, name: str) -> int: + return self.fields.get(name, -1) + + def get_child_at_index(self, index: int) -> SBValue: + if self.is_variant: + field = self.type.GetFieldAtIndex(index + 1) + else: + field = self.type.GetFieldAtIndex(index) + return self.valobj.GetChildMemberWithName(field.name) + + def update(self): + # type: () -> None + pass + + def has_children(self) -> bool: + return True + + +class StdStringSyntheticProvider: + def __init__(self, valobj: SBValue, _dict: LLDBOpaque): + self.valobj = valobj + self.update() + + def update(self): + inner_vec = self.valobj.GetChildMemberWithName("vec").GetNonSyntheticValue() + self.data_ptr = ( + inner_vec.GetChildMemberWithName("buf") + .GetChildMemberWithName("inner") + .GetChildMemberWithName("ptr") + .GetChildMemberWithName("pointer") + .GetChildMemberWithName("pointer") + ) + self.length = inner_vec.GetChildMemberWithName("len").GetValueAsUnsigned() + self.element_type = self.data_ptr.GetType().GetPointeeType() + + def has_children(self) -> bool: + return True + + def num_children(self) -> int: + return self.length + + def get_child_index(self, name: str) -> int: + index = name.lstrip("[").rstrip("]") + if index.isdigit(): + return int(index) + + return -1 + + def get_child_at_index(self, index: int) -> SBValue: + if not 0 <= index < self.length: + return None + start = self.data_ptr.GetValueAsUnsigned() + address = start + index + element = self.data_ptr.CreateValueFromAddress( + f"[{index}]", address, self.element_type + ) + element.SetFormat(eFormatChar) + return element + + +class MSVCStrSyntheticProvider: + __slots__ = ["valobj", "data_ptr", "length"] + + def __init__(self, valobj: SBValue, _dict: LLDBOpaque): + self.valobj = valobj + self.update() + + def update(self): + self.data_ptr = self.valobj.GetChildMemberWithName("data_ptr") + self.length = self.valobj.GetChildMemberWithName("length").GetValueAsUnsigned() + + def has_children(self) -> bool: + return True + + def num_children(self) -> int: + return self.length + + def get_child_index(self, name: str) -> int: + index = name.lstrip("[").rstrip("]") + if index.isdigit(): + return int(index) + + return -1 + + def get_child_at_index(self, index: int) -> SBValue: + if not 0 <= index < self.length: + return None + start = self.data_ptr.GetValueAsUnsigned() + address = start + index + element = self.data_ptr.CreateValueFromAddress( + f"[{index}]", address, self.data_ptr.GetType().GetPointeeType() + ) + return element + + def get_type_name(self): + if self.valobj.GetTypeName().startswith("ref_mut"): + return "&mut str" + else: + return "&str" + + +def _getVariantName(variant: SBValue) -> str: + """ + Since the enum variant's type name is in the form `TheEnumName::TheVariantName$Variant`, + we can extract `TheVariantName` from it for display purpose. + """ + s = variant.GetType().GetName() + if not s.endswith("$Variant"): + return "" + + # trim off path and "$Variant" + # len("$Variant") == 8 + return s.rsplit("::", 1)[1][:-8] + + +class ClangEncodedEnumProvider: + """Pretty-printer for 'clang-encoded' enums support implemented in LLDB""" + + valobj: SBValue + variant: SBValue + value: SBValue + + DISCRIMINANT_MEMBER_NAME = "$discr$" + VALUE_MEMBER_NAME = "value" + + __slots__ = ("valobj", "variant", "value") + + def __init__(self, valobj: SBValue, _dict: LLDBOpaque): + self.valobj = valobj + self.update() + + def has_children(self) -> bool: + return self.value.MightHaveChildren() + + def num_children(self) -> int: + return self.value.GetNumChildren() + + def get_child_index(self, name: str) -> int: + return self.value.GetIndexOfChildWithName(name) + + def get_child_at_index(self, index: int) -> SBValue: + return self.value.GetChildAtIndex(index) + + def update(self): + all_variants = self.valobj.GetChildAtIndex(0) + index = self._getCurrentVariantIndex(all_variants) + self.variant = all_variants.GetChildAtIndex(index) + self.value = self.variant.GetChildMemberWithName( + ClangEncodedEnumProvider.VALUE_MEMBER_NAME + ).GetSyntheticValue() + + def _getCurrentVariantIndex(self, all_variants: SBValue) -> int: + default_index = 0 + for i in range(all_variants.GetNumChildren()): + variant = all_variants.GetChildAtIndex(i) + discr = variant.GetChildMemberWithName( + ClangEncodedEnumProvider.DISCRIMINANT_MEMBER_NAME + ) + if discr.IsValid(): + discr_unsigned_value = discr.GetValueAsUnsigned() + if variant.GetName() == f"$variant${discr_unsigned_value}": + return i + else: + default_index = i + return default_index + + +def ClangEncodedEnumSummaryProvider(valobj: SBValue, _dict: LLDBOpaque) -> str: + enum_synth = ClangEncodedEnumProvider(valobj.GetNonSyntheticValue(), _dict) + variant = enum_synth.variant + name = _getVariantName(variant) + + if valobj.GetNumChildren() == 0: + return name + + child_name: str = valobj.GetChildAtIndex(0).name + if child_name == "0" or child_name == "__0": + # enum variant is a tuple struct + return name + TupleSummaryProvider(valobj, _dict) + else: + # enum variant is a regular struct + return name + StructSummaryProvider(valobj, _dict) + + +class MSVCEnumSyntheticProvider: + """ + Synthetic provider for sum-type enums on MSVC. For a detailed explanation of the internals, + see: + + https://github.com/rust-lang/rust/blob/HEAD/compiler/rustc_codegen_llvm/src/debuginfo/metadata/enums/cpp_like.rs + """ + + valobj: SBValue + variant: SBValue + value: SBValue + + __slots__ = ["valobj", "variant", "value"] + + def __init__(self, valobj: SBValue, _dict: LLDBOpaque): + self.valobj = valobj + self.update() + + def update(self): + tag: SBValue = self.valobj.GetChildMemberWithName("tag") + + if tag.IsValid(): + tag: int = tag.GetValueAsUnsigned() + for child in self.valobj.GetNonSyntheticValue().children: + if not child.name.startswith("variant"): + continue + + variant_type: SBType = child.GetType() + try: + exact: SBTypeStaticField = variant_type.GetStaticFieldWithName( + "DISCR_EXACT" + ) + except AttributeError: + # LLDB versions prior to 19.0.0 do not have the `SBTypeGetStaticField` API. + # With current DI generation there's not a great way to provide a "best effort" + # evaluation either, so we just return the object itself with no further + # attempts to inspect the type information + self.variant = self.valobj + self.value = self.valobj + return + + if exact.IsValid(): + discr: int = exact.GetConstantValue( + self.valobj.target + ).GetValueAsUnsigned() + if tag == discr: + self.variant = child + self.value = child.GetChildMemberWithName( + "value" + ).GetSyntheticValue() + return + else: # if invalid, DISCR must be a range + begin: int = ( + variant_type.GetStaticFieldWithName("DISCR_BEGIN") + .GetConstantValue(self.valobj.target) + .GetValueAsUnsigned() + ) + end: int = ( + variant_type.GetStaticFieldWithName("DISCR_END") + .GetConstantValue(self.valobj.target) + .GetValueAsUnsigned() + ) + + # begin isn't necessarily smaller than end, so we must test for both cases + if begin < end: + if begin <= tag <= end: + self.variant = child + self.value = child.GetChildMemberWithName( + "value" + ).GetSyntheticValue() + return + else: + if tag >= begin or tag <= end: + self.variant = child + self.value = child.GetChildMemberWithName( + "value" + ).GetSyntheticValue() + return + else: # if invalid, tag is a 128 bit value + tag_lo: int = self.valobj.GetChildMemberWithName( + "tag128_lo" + ).GetValueAsUnsigned() + tag_hi: int = self.valobj.GetChildMemberWithName( + "tag128_hi" + ).GetValueAsUnsigned() + + tag: int = (tag_hi << 64) | tag_lo + + for child in self.valobj.GetNonSyntheticValue().children: + if not child.name.startswith("variant"): + continue + + variant_type: SBType = child.GetType() + exact_lo: SBTypeStaticField = variant_type.GetStaticFieldWithName( + "DISCR128_EXACT_LO" + ) + + if exact_lo.IsValid(): + exact_lo: int = exact_lo.GetConstantValue( + self.valobj.target + ).GetValueAsUnsigned() + exact_hi: int = ( + variant_type.GetStaticFieldWithName("DISCR128_EXACT_HI") + .GetConstantValue(self.valobj.target) + .GetValueAsUnsigned() + ) + + discr: int = (exact_hi << 64) | exact_lo + if tag == discr: + self.variant = child + self.value = child.GetChildMemberWithName( + "value" + ).GetSyntheticValue() + return + else: # if invalid, DISCR must be a range + begin_lo: int = ( + variant_type.GetStaticFieldWithName("DISCR128_BEGIN_LO") + .GetConstantValue(self.valobj.target) + .GetValueAsUnsigned() + ) + begin_hi: int = ( + variant_type.GetStaticFieldWithName("DISCR128_BEGIN_HI") + .GetConstantValue(self.valobj.target) + .GetValueAsUnsigned() + ) + + end_lo: int = ( + variant_type.GetStaticFieldWithName("DISCR128_END_LO") + .GetConstantValue(self.valobj.target) + .GetValueAsUnsigned() + ) + end_hi: int = ( + variant_type.GetStaticFieldWithName("DISCR128_END_HI") + .GetConstantValue(self.valobj.target) + .GetValueAsUnsigned() + ) + + begin = (begin_hi << 64) | begin_lo + end = (end_hi << 64) | end_lo + + # begin isn't necessarily smaller than end, so we must test for both cases + if begin < end: + if begin <= tag <= end: + self.variant = child + self.value = child.GetChildMemberWithName( + "value" + ).GetSyntheticValue() + return + else: + if tag >= begin or tag <= end: + self.variant = child + self.value = child.GetChildMemberWithName( + "value" + ).GetSyntheticValue() + return + + def num_children(self) -> int: + return self.value.GetNumChildren() + + def get_child_index(self, name: str) -> int: + return self.value.GetIndexOfChildWithName(name) + + def get_child_at_index(self, index: int) -> SBValue: + return self.value.GetChildAtIndex(index) + + def has_children(self) -> bool: + return self.value.MightHaveChildren() + + def get_type_name(self) -> str: + name = self.valobj.GetTypeName() + # remove "enum2$<", str.removeprefix() is python 3.9+ + name = name[7:] + + # MSVC misinterprets ">>" as a shift operator, so spaces are inserted by rust to + # avoid that + if name.endswith(" >"): + name = name[:-2] + elif name.endswith(">"): + name = name[:-1] + + return name + + +def MSVCEnumSummaryProvider(valobj: SBValue, _dict: LLDBOpaque) -> str: + enum_synth = MSVCEnumSyntheticProvider(valobj.GetNonSyntheticValue(), _dict) + variant_names: SBType = valobj.target.FindFirstType( + f"{enum_synth.valobj.GetTypeName()}::VariantNames" + ) + try: + name_idx = ( + enum_synth.variant.GetType() + .GetStaticFieldWithName("NAME") + .GetConstantValue(valobj.target) + .GetValueAsUnsigned() + ) + except AttributeError: + # LLDB versions prior to 19 do not have the `SBTypeGetStaticField` API, and have no way + # to determine the value based on the tag field. + tag: SBValue = valobj.GetChildMemberWithName("tag") + + if tag.IsValid(): + discr: int = tag.GetValueAsUnsigned() + return "".join(["{tag = ", str(tag.unsigned), "}"]) + else: + tag_lo: int = valobj.GetChildMemberWithName( + "tag128_lo" + ).GetValueAsUnsigned() + tag_hi: int = valobj.GetChildMemberWithName( + "tag128_hi" + ).GetValueAsUnsigned() + + discr: int = (tag_hi << 64) | tag_lo + + return "".join(["{tag = ", str(discr), "}"]) + + name: str = variant_names.enum_members[name_idx].name + + if enum_synth.num_children() == 0: + return name + + child_name: str = enum_synth.value.GetChildAtIndex(0).name + if child_name == "0" or child_name == "__0": + # enum variant is a tuple struct + return name + TupleSummaryProvider(enum_synth.value, _dict) + else: + # enum variant is a regular struct + return name + StructSummaryProvider(enum_synth.value, _dict) + + +class TupleSyntheticProvider: + """Pretty-printer for tuples and tuple enum variants""" + + def __init__(self, valobj: SBValue, _dict: LLDBOpaque, is_variant: bool = False): + # logger = Logger.Logger() + self.valobj = valobj + self.is_variant = is_variant + self.type = valobj.GetType() + + if is_variant: + self.size = self.type.GetNumberOfFields() - 1 + else: + self.size = self.type.GetNumberOfFields() + + def num_children(self) -> int: + return self.size + + def get_child_index(self, name: str) -> int: + if name.isdigit(): + return int(name) + else: + return -1 + + def get_child_at_index(self, index: int) -> SBValue: + if self.is_variant: + field = self.type.GetFieldAtIndex(index + 1) + else: + field = self.type.GetFieldAtIndex(index) + element = self.valobj.GetChildMemberWithName(field.name) + return self.valobj.CreateValueFromData( + str(index), element.GetData(), element.GetType() + ) + + def update(self): + pass + + def has_children(self) -> bool: + return True + + +class MSVCTupleSyntheticProvider: + __slots__ = ["valobj"] + + def __init__(self, valobj: SBValue, _dict: LLDBOpaque): + self.valobj = valobj + + def num_children(self) -> int: + return self.valobj.GetNumChildren() + + def get_child_index(self, name: str) -> int: + return self.valobj.GetIndexOfChildWithName(name) + + def get_child_at_index(self, index: int) -> SBValue: + child: SBValue = self.valobj.GetChildAtIndex(index) + offset = self.valobj.GetType().GetFieldAtIndex(index).byte_offset + return self.valobj.CreateChildAtOffset(str(index), offset, child.GetType()) + + def update(self): + pass + + def has_children(self) -> bool: + return self.valobj.MightHaveChildren() + + def get_type_name(self) -> str: + name = self.valobj.GetTypeName() + # remove "tuple$<" and ">", str.removeprefix and str.removesuffix require python 3.9+ + name = name[7:-1].strip() + return "(" + name + ")" + + +class StdVecSyntheticProvider: + """Pretty-printer for alloc::vec::Vec + + struct Vec { buf: RawVec, len: usize } + rust 1.75: struct RawVec { ptr: Unique, cap: usize, ... } + rust 1.76: struct RawVec { ptr: Unique, cap: Cap(usize), ... } + rust 1.31.1: struct Unique { pointer: NonZero<*const T>, ... } + rust 1.33.0: struct Unique { pointer: *const T, ... } + rust 1.62.0: struct Unique { pointer: NonNull, ... } + struct NonZero(T) + struct NonNull { pointer: *const T } + """ + + def __init__(self, valobj: SBValue, _dict: LLDBOpaque): + # logger = Logger.Logger() + # logger >> "[StdVecSyntheticProvider] for " + str(valobj.GetName()) + self.valobj = valobj + self.element_type = None + self.update() + + def num_children(self) -> int: + return self.length + + def get_child_index(self, name: str) -> int: + index = name.lstrip("[").rstrip("]") + if index.isdigit(): + return int(index) + else: + return -1 + + def get_child_at_index(self, index: int) -> SBValue: + start = self.data_ptr.GetValueAsUnsigned() + address = start + index * self.element_type_size + element = self.data_ptr.CreateValueFromAddress( + "[%s]" % index, address, self.element_type + ) + return element + + def update(self): + self.length = self.valobj.GetChildMemberWithName("len").GetValueAsUnsigned() + self.buf = self.valobj.GetChildMemberWithName("buf").GetChildMemberWithName( + "inner" + ) + + self.data_ptr = unwrap_unique_or_non_null( + self.buf.GetChildMemberWithName("ptr") + ) + + self.element_type = self.valobj.GetType().GetTemplateArgumentType(0) + + if not self.element_type.IsValid(): + arg_name = next(get_template_args(self.valobj.GetTypeName())) + + self.element_type = resolve_msvc_template_arg(arg_name, self.valobj.target) + + self.element_type_size = self.element_type.GetByteSize() + + def has_children(self) -> bool: + return True + + +class StdSliceSyntheticProvider: + __slots__ = ["valobj", "length", "data_ptr", "element_type", "element_size"] + + def __init__(self, valobj: SBValue, _dict: LLDBOpaque): + self.valobj = valobj + self.update() + + def num_children(self) -> int: + return self.length + + def get_child_index(self, name: str) -> int: + index = name.lstrip("[").rstrip("]") + if index.isdigit(): + return int(index) + else: + return -1 + + def get_child_at_index(self, index: int) -> SBValue: + start = self.data_ptr.GetValueAsUnsigned() + address = start + index * self.element_size + element = self.data_ptr.CreateValueFromAddress( + "[%s]" % index, address, self.element_type + ) + return element + + def update(self): + self.length = self.valobj.GetChildMemberWithName("length").GetValueAsUnsigned() + self.data_ptr = self.valobj.GetChildMemberWithName("data_ptr") + + self.element_type = self.data_ptr.GetType().GetPointeeType() + self.element_size = self.element_type.GetByteSize() + + def has_children(self) -> bool: + return True + + +class MSVCStdSliceSyntheticProvider(StdSliceSyntheticProvider): + def get_type_name(self) -> str: + name = self.valobj.GetTypeName() + + if name.startswith("ref_mut"): + # remove "ref_mut$ >" + name = name[17:-3] + ref = "&mut " + else: + # remove "ref$ >" + name = name[13:-3] + ref = "&" + + return "".join([ref, "[", name, "]"]) + + +def StdSliceSummaryProvider(valobj, dict): + output = sequence_formatter("[", valobj, dict) + output += "]" + return output + + +class StdVecDequeSyntheticProvider: + """Pretty-printer for alloc::collections::vec_deque::VecDeque + + struct VecDeque { head: usize, len: usize, buf: RawVec } + """ + + def __init__(self, valobj: SBValue, _dict: LLDBOpaque): + # logger = Logger.Logger() + # logger >> "[StdVecDequeSyntheticProvider] for " + str(valobj.GetName()) + self.valobj = valobj + self.element_type = None + self.update() + + def num_children(self) -> int: + return self.size + + def get_child_index(self, name: str) -> int: + index = name.lstrip("[").rstrip("]") + if index.isdigit() and int(index) < self.size: + return int(index) + else: + return -1 + + def get_child_at_index(self, index: int) -> SBValue: + start = self.data_ptr.GetValueAsUnsigned() + address = start + ((index + self.head) % self.cap) * self.element_type_size + element = self.data_ptr.CreateValueFromAddress( + "[%s]" % index, address, self.element_type + ) + return element + + def update(self): + self.head = self.valobj.GetChildMemberWithName("head").GetValueAsUnsigned() + self.size = self.valobj.GetChildMemberWithName("len").GetValueAsUnsigned() + self.buf = self.valobj.GetChildMemberWithName("buf").GetChildMemberWithName( + "inner" + ) + cap = self.buf.GetChildMemberWithName("cap") + if cap.GetType().num_fields == 1: + cap = cap.GetChildAtIndex(0) + self.cap = cap.GetValueAsUnsigned() + + self.data_ptr = unwrap_unique_or_non_null( + self.buf.GetChildMemberWithName("ptr") + ) + + self.element_type = self.valobj.GetType().GetTemplateArgumentType(0) + + if not self.element_type.IsValid(): + arg_name = next(get_template_args(self.valobj.GetTypeName())) + + self.element_type = resolve_msvc_template_arg(arg_name, self.valobj.target) + + self.element_type_size = self.element_type.GetByteSize() + + def has_children(self) -> bool: + return True + + +# BACKCOMPAT: rust 1.35 +class StdOldHashMapSyntheticProvider: + """Pretty-printer for std::collections::hash::map::HashMap + + struct HashMap {..., table: RawTable, ... } + struct RawTable { capacity_mask: usize, size: usize, hashes: TaggedHashUintPtr, ... } + """ + + def __init__(self, valobj: SBValue, _dict: LLDBOpaque, show_values: bool = True): + self.valobj = valobj + self.show_values = show_values + self.update() + + def num_children(self) -> int: + return self.size + + def get_child_index(self, name: str) -> int: + index = name.lstrip("[").rstrip("]") + if index.isdigit(): + return int(index) + else: + return -1 + + def get_child_at_index(self, index: int) -> SBValue: + # logger = Logger.Logger() + start = self.data_ptr.GetValueAsUnsigned() & ~1 + + # See `libstd/collections/hash/table.rs:raw_bucket_at + hashes = self.hash_uint_size * self.capacity + align = self.pair_type_size + # See `libcore/alloc.rs:padding_needed_for` + len_rounded_up = ( + ( + (((hashes + align) % self.modulo - 1) % self.modulo) + & ~((align - 1) % self.modulo) + ) + % self.modulo + - hashes + ) % self.modulo + # len_rounded_up = ((hashes + align - 1) & ~(align - 1)) - hashes + + pairs_offset = hashes + len_rounded_up + pairs_start = start + pairs_offset + + table_index = self.valid_indices[index] + idx = table_index & self.capacity_mask + address = pairs_start + idx * self.pair_type_size + element = self.data_ptr.CreateValueFromAddress( + "[%s]" % index, address, self.pair_type + ) + if self.show_values: + return element + else: + key = element.GetChildAtIndex(0) + return self.valobj.CreateValueFromData( + "[%s]" % index, key.GetData(), key.GetType() + ) + + def update(self): + # logger = Logger.Logger() + + self.table = self.valobj.GetChildMemberWithName("table") # type: SBValue + self.size = self.table.GetChildMemberWithName("size").GetValueAsUnsigned() + self.hashes = self.table.GetChildMemberWithName("hashes") + self.hash_uint_type = self.hashes.GetType() + self.hash_uint_size = self.hashes.GetType().GetByteSize() + self.modulo = 2**self.hash_uint_size + self.data_ptr = self.hashes.GetChildAtIndex(0).GetChildAtIndex(0) + + self.capacity_mask = self.table.GetChildMemberWithName( + "capacity_mask" + ).GetValueAsUnsigned() + self.capacity = (self.capacity_mask + 1) % self.modulo + + marker = self.table.GetChildMemberWithName("marker").GetType() # type: SBType + self.pair_type = marker.template_args[0] + self.pair_type_size = self.pair_type.GetByteSize() + + self.valid_indices = [] + for idx in range(self.capacity): + address = self.data_ptr.GetValueAsUnsigned() + idx * self.hash_uint_size + hash_uint = self.data_ptr.CreateValueFromAddress( + "[%s]" % idx, address, self.hash_uint_type + ) + hash_ptr = hash_uint.GetChildAtIndex(0).GetChildAtIndex(0) + if hash_ptr.GetValueAsUnsigned() != 0: + self.valid_indices.append(idx) + + # logger >> "Valid indices: {}".format(str(self.valid_indices)) + + def has_children(self) -> bool: + return True + + +class StdHashMapSyntheticProvider: + """Pretty-printer for hashbrown's HashMap""" + + def __init__(self, valobj: SBValue, _dict: LLDBOpaque, show_values: bool = True): + self.valobj = valobj + self.show_values = show_values + self.update() + + def num_children(self) -> int: + return self.size + + def get_child_index(self, name: str) -> int: + index = name.lstrip("[").rstrip("]") + if index.isdigit(): + return int(index) + else: + return -1 + + def get_child_at_index(self, index: int) -> SBValue: + pairs_start = self.data_ptr.GetValueAsUnsigned() + idx = self.valid_indices[index] + if self.new_layout: + idx = -(idx + 1) + address = pairs_start + idx * self.pair_type_size + element = self.data_ptr.CreateValueFromAddress( + "[%s]" % index, address, self.pair_type + ) + + if self.show_values: + return element + else: + key = element.GetChildAtIndex(0) + return self.valobj.CreateValueFromData( + "[%s]" % index, key.GetData(), key.GetType() + ) + + def update(self): + table = self.table() + inner_table = table.GetChildMemberWithName("table") + + capacity = ( + inner_table.GetChildMemberWithName("bucket_mask").GetValueAsUnsigned() + 1 + ) + ctrl = inner_table.GetChildMemberWithName("ctrl").GetChildAtIndex(0) + + self.size = inner_table.GetChildMemberWithName("items").GetValueAsUnsigned() + + self.pair_type = table.GetType().GetTemplateArgumentType(0) + + if not self.pair_type.IsValid(): + arg_name = next(get_template_args(table.GetTypeName())) + + self.pair_type = resolve_msvc_template_arg(arg_name, self.valobj.target) + + if self.pair_type.IsTypedefType(): + self.pair_type = self.pair_type.GetTypedefedType() + self.pair_type_size = self.pair_type.GetByteSize() + + self.new_layout = not inner_table.GetChildMemberWithName("data").IsValid() + if self.new_layout: + self.data_ptr = ctrl.Cast(self.pair_type.GetPointerType()) + else: + self.data_ptr = inner_table.GetChildMemberWithName("data").GetChildAtIndex( + 0 + ) + + u8_type = self.valobj.GetTarget().GetBasicType(eBasicTypeUnsignedChar) + u8_type_size = ( + self.valobj.GetTarget().GetBasicType(eBasicTypeUnsignedChar).GetByteSize() + ) + + self.valid_indices = [] + for idx in range(capacity): + address = ctrl.GetValueAsUnsigned() + idx * u8_type_size + value = ctrl.CreateValueFromAddress( + "ctrl[%s]" % idx, address, u8_type + ).GetValueAsUnsigned() + is_present = value & 128 == 0 + if is_present: + self.valid_indices.append(idx) + + def table(self) -> SBValue: + if self.show_values: + hashbrown_hashmap = self.valobj.GetChildMemberWithName("base") + else: + # BACKCOMPAT: rust 1.47 + # HashSet wraps either std HashMap or hashbrown::HashSet, which both + # wrap hashbrown::HashMap, so either way we "unwrap" twice. + hashbrown_hashmap = self.valobj.GetChildAtIndex(0).GetChildAtIndex(0) + return hashbrown_hashmap.GetChildMemberWithName("table") + + def has_children(self) -> bool: + return True + + +def StdRcSummaryProvider(valobj: SBValue, _dict: LLDBOpaque) -> str: + strong = valobj.GetChildMemberWithName("strong").GetValueAsUnsigned() + weak = valobj.GetChildMemberWithName("weak").GetValueAsUnsigned() + return "strong={}, weak={}".format(strong, weak) + + +class StdRcSyntheticProvider: + """Pretty-printer for alloc::rc::Rc and alloc::sync::Arc + + struct Rc { ptr: NonNull>, ... } + rust 1.31.1: struct NonNull { pointer: NonZero<*const T> } + rust 1.33.0: struct NonNull { pointer: *const T } + struct NonZero(T) + struct RcInner { strong: Cell, weak: Cell, value: T } + struct Cell { value: UnsafeCell } + struct UnsafeCell { value: T } + + struct Arc { ptr: NonNull>, ... } + struct ArcInner { strong: atomic::AtomicUsize, weak: atomic::AtomicUsize, data: T } + struct AtomicUsize { v: UnsafeCell } + """ + + def __init__(self, valobj: SBValue, _dict: LLDBOpaque, is_atomic: bool = False): + self.valobj = valobj + + self.ptr = unwrap_unique_or_non_null(self.valobj.GetChildMemberWithName("ptr")) + + self.value = self.ptr.GetChildMemberWithName("data" if is_atomic else "value") + + self.strong = ( + self.ptr.GetChildMemberWithName("strong") + .GetChildAtIndex(0) + .GetChildMemberWithName("value") + ) + self.weak = ( + self.ptr.GetChildMemberWithName("weak") + .GetChildAtIndex(0) + .GetChildMemberWithName("value") + ) + + self.value_builder = ValueBuilder(valobj) + + self.update() + + def num_children(self) -> int: + # Actually there are 3 children, but only the `value` should be shown as a child + return 1 + + def get_child_index(self, name: str) -> int: + if name == "value": + return 0 + if name == "strong": + return 1 + if name == "weak": + return 2 + return -1 + + def get_child_at_index(self, index: int) -> SBValue: + if index == 0: + return self.value + if index == 1: + return self.value_builder.from_uint("strong", self.strong_count) + if index == 2: + return self.value_builder.from_uint("weak", self.weak_count) + + return None + + def update(self): + self.strong_count = self.strong.GetValueAsUnsigned() + self.weak_count = self.weak.GetValueAsUnsigned() - 1 + + def has_children(self) -> bool: + return True + + +class StdCellSyntheticProvider: + """Pretty-printer for std::cell::Cell""" + + def __init__(self, valobj: SBValue, _dict: LLDBOpaque): + self.valobj = valobj + self.value = valobj.GetChildMemberWithName("value").GetChildAtIndex(0) + + def num_children(self) -> int: + return 1 + + def get_child_index(self, name: str) -> int: + if name == "value": + return 0 + return -1 + + def get_child_at_index(self, index: int) -> SBValue: + if index == 0: + return self.value + return None + + def update(self): + pass + + def has_children(self) -> bool: + return True + + +def StdRefSummaryProvider(valobj: SBValue, _dict: LLDBOpaque) -> str: + borrow = valobj.GetChildMemberWithName("borrow").GetValueAsSigned() + return ( + "borrow={}".format(borrow) if borrow >= 0 else "borrow_mut={}".format(-borrow) + ) + + +class StdRefSyntheticProvider: + """Pretty-printer for std::cell::Ref, std::cell::RefMut, and std::cell::RefCell""" + + def __init__(self, valobj: SBValue, _dict: LLDBOpaque, is_cell: bool = False): + self.valobj = valobj + + borrow = valobj.GetChildMemberWithName("borrow") + value = valobj.GetChildMemberWithName("value") + if is_cell: + self.borrow = borrow.GetChildMemberWithName("value").GetChildMemberWithName( + "value" + ) + self.value = value.GetChildMemberWithName("value") + else: + self.borrow = ( + borrow.GetChildMemberWithName("borrow") + .GetChildMemberWithName("value") + .GetChildMemberWithName("value") + ) + self.value = value.Dereference() + + self.value_builder = ValueBuilder(valobj) + + self.update() + + def num_children(self) -> int: + # Actually there are 2 children, but only the `value` should be shown as a child + return 1 + + def get_child_index(self, name: str) -> int: + if name == "value": + return 0 + if name == "borrow": + return 1 + return -1 + + def get_child_at_index(self, index: int) -> SBValue: + if index == 0: + return self.value + if index == 1: + return self.value_builder.from_int("borrow", self.borrow_count) + return None + + def update(self): + self.borrow_count = self.borrow.GetValueAsSigned() + + def has_children(self) -> bool: + return True + + +def StdNonZeroNumberSummaryProvider(valobj: SBValue, _dict: LLDBOpaque) -> str: + inner = valobj.GetChildAtIndex(0) + inner_inner = inner.GetChildAtIndex(0) + + # FIXME: Avoid printing as character literal, + # see https://github.com/llvm/llvm-project/issues/65076. + if inner_inner.GetTypeName() in ["char", "unsigned char"]: + return str(inner_inner.GetValueAsSigned()) + else: + return inner_inner.GetValue() diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/rust_types.py b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/rust_types.py new file mode 100644 index 0000000000000000000000000000000000000000..af03e8ede9c3fe57f78f5f1e143ef33e54c1058f --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/etc/rust_types.py @@ -0,0 +1,128 @@ +from typing import List +import re + + +class RustType(object): + OTHER = "Other" + STRUCT = "Struct" + TUPLE = "Tuple" + CSTYLE_VARIANT = "CStyleVariant" + TUPLE_VARIANT = "TupleVariant" + STRUCT_VARIANT = "StructVariant" + ENUM = "Enum" + EMPTY = "Empty" + SINGLETON_ENUM = "SingletonEnum" + REGULAR_ENUM = "RegularEnum" + COMPRESSED_ENUM = "CompressedEnum" + REGULAR_UNION = "RegularUnion" + + STD_STRING = "StdString" + STD_OS_STRING = "StdOsString" + STD_STR = "StdStr" + STD_SLICE = "StdSlice" + STD_VEC = "StdVec" + STD_VEC_DEQUE = "StdVecDeque" + STD_BTREE_SET = "StdBTreeSet" + STD_BTREE_MAP = "StdBTreeMap" + STD_HASH_MAP = "StdHashMap" + STD_HASH_SET = "StdHashSet" + STD_RC = "StdRc" + STD_ARC = "StdArc" + STD_CELL = "StdCell" + STD_REF = "StdRef" + STD_REF_MUT = "StdRefMut" + STD_REF_CELL = "StdRefCell" + STD_NONZERO_NUMBER = "StdNonZeroNumber" + STD_PATH = "StdPath" + STD_PATHBUF = "StdPathBuf" + + +STD_STRING_REGEX = re.compile(r"^(alloc::([a-z_]+::)+)String$") +STD_STR_REGEX = re.compile(r"^&(mut )?str$") +STD_SLICE_REGEX = re.compile(r"^&(mut )?\[.+\]$") +STD_OS_STRING_REGEX = re.compile(r"^(std::ffi::([a-z_]+::)+)OsString$") +STD_VEC_REGEX = re.compile(r"^(alloc::([a-z_]+::)+)Vec<.+>$") +STD_VEC_DEQUE_REGEX = re.compile(r"^(alloc::([a-z_]+::)+)VecDeque<.+>$") +STD_BTREE_SET_REGEX = re.compile(r"^(alloc::([a-z_]+::)+)BTreeSet<.+>$") +STD_BTREE_MAP_REGEX = re.compile(r"^(alloc::([a-z_]+::)+)BTreeMap<.+>$") +STD_HASH_MAP_REGEX = re.compile(r"^(std::collections::([a-z_]+::)+)HashMap<.+>$") +STD_HASH_SET_REGEX = re.compile(r"^(std::collections::([a-z_]+::)+)HashSet<.+>$") +STD_RC_REGEX = re.compile(r"^(alloc::([a-z_]+::)+)Rc<.+>$") +STD_ARC_REGEX = re.compile(r"^(alloc::([a-z_]+::)+)Arc<.+>$") +STD_CELL_REGEX = re.compile(r"^(core::([a-z_]+::)+)Cell<.+>$") +STD_REF_REGEX = re.compile(r"^(core::([a-z_]+::)+)Ref<.+>$") +STD_REF_MUT_REGEX = re.compile(r"^(core::([a-z_]+::)+)RefMut<.+>$") +STD_REF_CELL_REGEX = re.compile(r"^(core::([a-z_]+::)+)RefCell<.+>$") +STD_NONZERO_NUMBER_REGEX = re.compile(r"^(core::([a-z_]+::)+)NonZero<.+>$") +STD_PATHBUF_REGEX = re.compile(r"^(std::([a-z_]+::)+)PathBuf$") +STD_PATH_REGEX = re.compile(r"^&(mut )?(std::([a-z_]+::)+)Path$") + +TUPLE_ITEM_REGEX = re.compile(r"__\d+$") + +ENCODED_ENUM_PREFIX = "RUST$ENCODED$ENUM$" +ENUM_DISR_FIELD_NAME = "<>" +ENUM_LLDB_ENCODED_VARIANTS = "$variants$" + +STD_TYPE_TO_REGEX = { + RustType.STD_STRING: STD_STRING_REGEX, + RustType.STD_OS_STRING: STD_OS_STRING_REGEX, + RustType.STD_STR: STD_STR_REGEX, + RustType.STD_SLICE: STD_SLICE_REGEX, + RustType.STD_VEC: STD_VEC_REGEX, + RustType.STD_VEC_DEQUE: STD_VEC_DEQUE_REGEX, + RustType.STD_HASH_MAP: STD_HASH_MAP_REGEX, + RustType.STD_HASH_SET: STD_HASH_SET_REGEX, + RustType.STD_BTREE_SET: STD_BTREE_SET_REGEX, + RustType.STD_BTREE_MAP: STD_BTREE_MAP_REGEX, + RustType.STD_RC: STD_RC_REGEX, + RustType.STD_ARC: STD_ARC_REGEX, + RustType.STD_REF: STD_REF_REGEX, + RustType.STD_REF_MUT: STD_REF_MUT_REGEX, + RustType.STD_REF_CELL: STD_REF_CELL_REGEX, + RustType.STD_CELL: STD_CELL_REGEX, + RustType.STD_NONZERO_NUMBER: STD_NONZERO_NUMBER_REGEX, + RustType.STD_PATHBUF: STD_PATHBUF_REGEX, + RustType.STD_PATH: STD_PATH_REGEX, +} + + +def is_tuple_fields(fields: List) -> bool: + return all(TUPLE_ITEM_REGEX.match(str(field.name)) for field in fields) + + +def classify_struct(name: str, fields: List) -> str: + if len(fields) == 0: + return RustType.EMPTY + + for ty, regex in STD_TYPE_TO_REGEX.items(): + if regex.match(name): + return ty + + # <> is emitted by GDB while LLDB(18.1+) emits "$variants$" + if ( + fields[0].name == ENUM_DISR_FIELD_NAME + or fields[0].name == ENUM_LLDB_ENCODED_VARIANTS + ): + return RustType.ENUM + + if is_tuple_fields(fields): + return RustType.TUPLE + + return RustType.STRUCT + + +def classify_union(fields: List) -> str: + if len(fields) == 0: + return RustType.EMPTY + + first_variant_name = fields[0].name + if first_variant_name is None: + if len(fields) == 1: + return RustType.SINGLETON_ENUM + else: + return RustType.REGULAR_ENUM + elif first_variant_name.startswith(ENCODED_ENUM_PREFIX): + assert len(fields) == 1 + return RustType.COMPRESSED_ENUM + else: + return RustType.REGULAR_UNION diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/manifest-cargo-x86_64-pc-windows-msvc b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/manifest-cargo-x86_64-pc-windows-msvc new file mode 100644 index 0000000000000000000000000000000000000000..b8b337741e351c342561deb589d872e2f37d39d1 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/manifest-cargo-x86_64-pc-windows-msvc @@ -0,0 +1,45 @@ +file:bin/cargo.exe +file:bin/cargo.pdb +file:etc/bash_completion.d/cargo +file:share/doc/cargo/LICENSE-APACHE +file:share/doc/cargo/LICENSE-MIT +file:share/doc/cargo/LICENSE-THIRD-PARTY +file:share/doc/cargo/README.md +file:share/man/man1/cargo-add.1 +file:share/man/man1/cargo-bench.1 +file:share/man/man1/cargo-build.1 +file:share/man/man1/cargo-check.1 +file:share/man/man1/cargo-clean.1 +file:share/man/man1/cargo-doc.1 +file:share/man/man1/cargo-fetch.1 +file:share/man/man1/cargo-fix.1 +file:share/man/man1/cargo-generate-lockfile.1 +file:share/man/man1/cargo-help.1 +file:share/man/man1/cargo-info.1 +file:share/man/man1/cargo-init.1 +file:share/man/man1/cargo-install.1 +file:share/man/man1/cargo-locate-project.1 +file:share/man/man1/cargo-login.1 +file:share/man/man1/cargo-logout.1 +file:share/man/man1/cargo-metadata.1 +file:share/man/man1/cargo-new.1 +file:share/man/man1/cargo-owner.1 +file:share/man/man1/cargo-package.1 +file:share/man/man1/cargo-pkgid.1 +file:share/man/man1/cargo-publish.1 +file:share/man/man1/cargo-remove.1 +file:share/man/man1/cargo-report-future-incompatibilities.1 +file:share/man/man1/cargo-report.1 +file:share/man/man1/cargo-run.1 +file:share/man/man1/cargo-rustc.1 +file:share/man/man1/cargo-rustdoc.1 +file:share/man/man1/cargo-search.1 +file:share/man/man1/cargo-test.1 +file:share/man/man1/cargo-tree.1 +file:share/man/man1/cargo-uninstall.1 +file:share/man/man1/cargo-update.1 +file:share/man/man1/cargo-vendor.1 +file:share/man/man1/cargo-version.1 +file:share/man/man1/cargo-yank.1 +file:share/man/man1/cargo.1 +file:share/zsh/site-functions/_cargo diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/manifest-clippy-preview-x86_64-pc-windows-msvc b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/manifest-clippy-preview-x86_64-pc-windows-msvc new file mode 100644 index 0000000000000000000000000000000000000000..37f6e57bac761760f2c243b44ff819e43847312c --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/manifest-clippy-preview-x86_64-pc-windows-msvc @@ -0,0 +1,7 @@ +file:bin/cargo-clippy.exe +file:bin/cargo-clippy.pdb +file:bin/clippy-driver.exe +file:bin/clippy-driver.pdb +file:share/doc/clippy/LICENSE-APACHE +file:share/doc/clippy/LICENSE-MIT +file:share/doc/clippy/README.md diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/manifest-rust-analyzer-preview-x86_64-pc-windows-msvc b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/manifest-rust-analyzer-preview-x86_64-pc-windows-msvc new file mode 100644 index 0000000000000000000000000000000000000000..86bf9b6e5c874f33ecbb7b2b7a9fad082404d00f --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/manifest-rust-analyzer-preview-x86_64-pc-windows-msvc @@ -0,0 +1,5 @@ +file:bin/rust-analyzer.exe +file:bin/rust-analyzer.pdb +file:share/doc/rust-analyzer/LICENSE-APACHE +file:share/doc/rust-analyzer/LICENSE-MIT +file:share/doc/rust-analyzer/README.md diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/manifest-rust-src b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/manifest-rust-src new file mode 100644 index 0000000000000000000000000000000000000000..433bbce7e6a58a86e5ee0ce69f2ee053065784c5 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/manifest-rust-src @@ -0,0 +1,2313 @@ +file:lib/rustlib/src/rust/library/Cargo.lock +file:lib/rustlib/src/rust/library/Cargo.toml +file:lib/rustlib/src/rust/library/alloc/Cargo.toml +file:lib/rustlib/src/rust/library/alloc/src/alloc.rs +file:lib/rustlib/src/rust/library/alloc/src/borrow.rs +file:lib/rustlib/src/rust/library/alloc/src/boxed.rs +file:lib/rustlib/src/rust/library/alloc/src/boxed/convert.rs +file:lib/rustlib/src/rust/library/alloc/src/boxed/iter.rs +file:lib/rustlib/src/rust/library/alloc/src/boxed/thin.rs +file:lib/rustlib/src/rust/library/alloc/src/bstr.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/binary_heap/mod.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/btree/append.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/btree/borrow.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/btree/borrow/tests.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/btree/dedup_sorted_iter.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/btree/fix.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/btree/map.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/btree/map/entry.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/btree/map/tests.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/btree/mem.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/btree/merge_iter.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/btree/mod.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/btree/navigate.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/btree/node.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/btree/node/tests.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/btree/remove.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/btree/search.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/btree/set.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/btree/set/entry.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/btree/set/tests.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/btree/set_val.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/btree/split.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/linked_list.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/linked_list/tests.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/mod.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/vec_deque/drain.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/vec_deque/extract_if.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/vec_deque/into_iter.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/vec_deque/iter.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/vec_deque/iter_mut.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/vec_deque/macros.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/vec_deque/mod.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/vec_deque/spec_extend.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/vec_deque/spec_from_iter.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/vec_deque/splice.rs +file:lib/rustlib/src/rust/library/alloc/src/collections/vec_deque/tests.rs +file:lib/rustlib/src/rust/library/alloc/src/ffi/c_str.rs +file:lib/rustlib/src/rust/library/alloc/src/ffi/mod.rs +file:lib/rustlib/src/rust/library/alloc/src/fmt.rs +file:lib/rustlib/src/rust/library/alloc/src/intrinsics.rs +file:lib/rustlib/src/rust/library/alloc/src/lib.miri.rs +file:lib/rustlib/src/rust/library/alloc/src/lib.rs +file:lib/rustlib/src/rust/library/alloc/src/macros.rs +file:lib/rustlib/src/rust/library/alloc/src/raw_vec/mod.rs +file:lib/rustlib/src/rust/library/alloc/src/raw_vec/tests.rs +file:lib/rustlib/src/rust/library/alloc/src/rc.rs +file:lib/rustlib/src/rust/library/alloc/src/slice.rs +file:lib/rustlib/src/rust/library/alloc/src/str.rs +file:lib/rustlib/src/rust/library/alloc/src/string.rs +file:lib/rustlib/src/rust/library/alloc/src/sync.rs +file:lib/rustlib/src/rust/library/alloc/src/task.rs +file:lib/rustlib/src/rust/library/alloc/src/vec/cow.rs +file:lib/rustlib/src/rust/library/alloc/src/vec/drain.rs +file:lib/rustlib/src/rust/library/alloc/src/vec/extract_if.rs +file:lib/rustlib/src/rust/library/alloc/src/vec/in_place_collect.rs +file:lib/rustlib/src/rust/library/alloc/src/vec/in_place_drop.rs +file:lib/rustlib/src/rust/library/alloc/src/vec/into_iter.rs +file:lib/rustlib/src/rust/library/alloc/src/vec/is_zero.rs +file:lib/rustlib/src/rust/library/alloc/src/vec/mod.rs +file:lib/rustlib/src/rust/library/alloc/src/vec/partial_eq.rs +file:lib/rustlib/src/rust/library/alloc/src/vec/peek_mut.rs +file:lib/rustlib/src/rust/library/alloc/src/vec/set_len_on_drop.rs +file:lib/rustlib/src/rust/library/alloc/src/vec/spec_extend.rs +file:lib/rustlib/src/rust/library/alloc/src/vec/spec_from_elem.rs +file:lib/rustlib/src/rust/library/alloc/src/vec/spec_from_iter.rs +file:lib/rustlib/src/rust/library/alloc/src/vec/spec_from_iter_nested.rs +file:lib/rustlib/src/rust/library/alloc/src/vec/splice.rs +file:lib/rustlib/src/rust/library/alloc/src/wtf8/mod.rs +file:lib/rustlib/src/rust/library/alloc/src/wtf8/tests.rs +file:lib/rustlib/src/rust/library/alloctests/Cargo.toml +file:lib/rustlib/src/rust/library/alloctests/benches/binary_heap.rs +file:lib/rustlib/src/rust/library/alloctests/benches/btree/map.rs +file:lib/rustlib/src/rust/library/alloctests/benches/btree/mod.rs +file:lib/rustlib/src/rust/library/alloctests/benches/btree/set.rs +file:lib/rustlib/src/rust/library/alloctests/benches/lib.rs +file:lib/rustlib/src/rust/library/alloctests/benches/linked_list.rs +file:lib/rustlib/src/rust/library/alloctests/benches/slice.rs +file:lib/rustlib/src/rust/library/alloctests/benches/str.rs +file:lib/rustlib/src/rust/library/alloctests/benches/string.rs +file:lib/rustlib/src/rust/library/alloctests/benches/vec.rs +file:lib/rustlib/src/rust/library/alloctests/benches/vec_deque.rs +file:lib/rustlib/src/rust/library/alloctests/benches/vec_deque_append.rs +file:lib/rustlib/src/rust/library/alloctests/lib.rs +file:lib/rustlib/src/rust/library/alloctests/testing/crash_test.rs +file:lib/rustlib/src/rust/library/alloctests/testing/macros.rs +file:lib/rustlib/src/rust/library/alloctests/testing/mod.rs +file:lib/rustlib/src/rust/library/alloctests/testing/ord_chaos.rs +file:lib/rustlib/src/rust/library/alloctests/testing/rng.rs +file:lib/rustlib/src/rust/library/alloctests/tests/alloc_test.rs +file:lib/rustlib/src/rust/library/alloctests/tests/arc.rs +file:lib/rustlib/src/rust/library/alloctests/tests/autotraits.rs +file:lib/rustlib/src/rust/library/alloctests/tests/borrow.rs +file:lib/rustlib/src/rust/library/alloctests/tests/boxed.rs +file:lib/rustlib/src/rust/library/alloctests/tests/btree_set_hash.rs +file:lib/rustlib/src/rust/library/alloctests/tests/c_str.rs +file:lib/rustlib/src/rust/library/alloctests/tests/c_str2.rs +file:lib/rustlib/src/rust/library/alloctests/tests/collections/binary_heap.rs +file:lib/rustlib/src/rust/library/alloctests/tests/collections/eq_diff_len.rs +file:lib/rustlib/src/rust/library/alloctests/tests/collections/mod.rs +file:lib/rustlib/src/rust/library/alloctests/tests/const_fns.rs +file:lib/rustlib/src/rust/library/alloctests/tests/cow_str.rs +file:lib/rustlib/src/rust/library/alloctests/tests/fmt.rs +file:lib/rustlib/src/rust/library/alloctests/tests/heap.rs +file:lib/rustlib/src/rust/library/alloctests/tests/lib.rs +file:lib/rustlib/src/rust/library/alloctests/tests/linked_list.rs +file:lib/rustlib/src/rust/library/alloctests/tests/misc_tests.rs +file:lib/rustlib/src/rust/library/alloctests/tests/num.rs +file:lib/rustlib/src/rust/library/alloctests/tests/rc.rs +file:lib/rustlib/src/rust/library/alloctests/tests/slice.rs +file:lib/rustlib/src/rust/library/alloctests/tests/sort/ffi_types.rs +file:lib/rustlib/src/rust/library/alloctests/tests/sort/known_good_stable_sort.rs +file:lib/rustlib/src/rust/library/alloctests/tests/sort/mod.rs +file:lib/rustlib/src/rust/library/alloctests/tests/sort/partial.rs +file:lib/rustlib/src/rust/library/alloctests/tests/sort/patterns.rs +file:lib/rustlib/src/rust/library/alloctests/tests/sort/tests.rs +file:lib/rustlib/src/rust/library/alloctests/tests/sort/zipf.rs +file:lib/rustlib/src/rust/library/alloctests/tests/str.rs +file:lib/rustlib/src/rust/library/alloctests/tests/string.rs +file:lib/rustlib/src/rust/library/alloctests/tests/sync.rs +file:lib/rustlib/src/rust/library/alloctests/tests/task.rs +file:lib/rustlib/src/rust/library/alloctests/tests/testing/mod.rs +file:lib/rustlib/src/rust/library/alloctests/tests/thin_box.rs +file:lib/rustlib/src/rust/library/alloctests/tests/vec.rs +file:lib/rustlib/src/rust/library/alloctests/tests/vec_deque.rs +file:lib/rustlib/src/rust/library/alloctests/tests/vec_deque_alloc_error.rs +file:lib/rustlib/src/rust/library/backtrace/.github/workflows/main.yml +file:lib/rustlib/src/rust/library/backtrace/.github/workflows/publish.yml +file:lib/rustlib/src/rust/library/backtrace/CHANGELOG.md +file:lib/rustlib/src/rust/library/backtrace/Cargo.lock +file:lib/rustlib/src/rust/library/backtrace/Cargo.toml +file:lib/rustlib/src/rust/library/backtrace/LICENSE-APACHE +file:lib/rustlib/src/rust/library/backtrace/LICENSE-MIT +file:lib/rustlib/src/rust/library/backtrace/README.md +file:lib/rustlib/src/rust/library/backtrace/benches/benchmarks.rs +file:lib/rustlib/src/rust/library/backtrace/bindings.txt +file:lib/rustlib/src/rust/library/backtrace/ci/android-ndk.sh +file:lib/rustlib/src/rust/library/backtrace/ci/android-sdk.sh +file:lib/rustlib/src/rust/library/backtrace/ci/debuglink-docker.sh +file:lib/rustlib/src/rust/library/backtrace/ci/debuglink.sh +file:lib/rustlib/src/rust/library/backtrace/ci/docker/aarch64-linux-android/Dockerfile +file:lib/rustlib/src/rust/library/backtrace/ci/docker/aarch64-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/backtrace/ci/docker/arm-linux-androideabi/Dockerfile +file:lib/rustlib/src/rust/library/backtrace/ci/docker/arm-unknown-linux-gnueabihf/Dockerfile +file:lib/rustlib/src/rust/library/backtrace/ci/docker/armv7-linux-androideabi/Dockerfile +file:lib/rustlib/src/rust/library/backtrace/ci/docker/armv7-unknown-linux-gnueabihf/Dockerfile +file:lib/rustlib/src/rust/library/backtrace/ci/docker/i586-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/backtrace/ci/docker/i686-linux-android/Dockerfile +file:lib/rustlib/src/rust/library/backtrace/ci/docker/i686-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/backtrace/ci/docker/powerpc64-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/backtrace/ci/docker/s390x-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/backtrace/ci/docker/x86_64-linux-android/Dockerfile +file:lib/rustlib/src/rust/library/backtrace/ci/docker/x86_64-pc-windows-gnu/Dockerfile +file:lib/rustlib/src/rust/library/backtrace/ci/docker/x86_64-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/backtrace/ci/docker/x86_64-unknown-linux-musl/Dockerfile +file:lib/rustlib/src/rust/library/backtrace/ci/run-docker.sh +file:lib/rustlib/src/rust/library/backtrace/ci/run.sh +file:lib/rustlib/src/rust/library/backtrace/ci/runtest-android.rs +file:lib/rustlib/src/rust/library/backtrace/examples/backtrace.rs +file:lib/rustlib/src/rust/library/backtrace/examples/raw.rs +file:lib/rustlib/src/rust/library/backtrace/src/backtrace/libunwind.rs +file:lib/rustlib/src/rust/library/backtrace/src/backtrace/miri.rs +file:lib/rustlib/src/rust/library/backtrace/src/backtrace/mod.rs +file:lib/rustlib/src/rust/library/backtrace/src/backtrace/noop.rs +file:lib/rustlib/src/rust/library/backtrace/src/backtrace/win32.rs +file:lib/rustlib/src/rust/library/backtrace/src/backtrace/win64.rs +file:lib/rustlib/src/rust/library/backtrace/src/capture.rs +file:lib/rustlib/src/rust/library/backtrace/src/dbghelp.rs +file:lib/rustlib/src/rust/library/backtrace/src/lib.rs +file:lib/rustlib/src/rust/library/backtrace/src/print.rs +file:lib/rustlib/src/rust/library/backtrace/src/print/fuchsia.rs +file:lib/rustlib/src/rust/library/backtrace/src/symbolize/dbghelp.rs +file:lib/rustlib/src/rust/library/backtrace/src/symbolize/gimli.rs +file:lib/rustlib/src/rust/library/backtrace/src/symbolize/gimli/coff.rs +file:lib/rustlib/src/rust/library/backtrace/src/symbolize/gimli/elf.rs +file:lib/rustlib/src/rust/library/backtrace/src/symbolize/gimli/libs_aix.rs +file:lib/rustlib/src/rust/library/backtrace/src/symbolize/gimli/libs_dl_iterate_phdr.rs +file:lib/rustlib/src/rust/library/backtrace/src/symbolize/gimli/libs_haiku.rs +file:lib/rustlib/src/rust/library/backtrace/src/symbolize/gimli/libs_illumos.rs +file:lib/rustlib/src/rust/library/backtrace/src/symbolize/gimli/libs_libnx.rs +file:lib/rustlib/src/rust/library/backtrace/src/symbolize/gimli/libs_macos.rs +file:lib/rustlib/src/rust/library/backtrace/src/symbolize/gimli/libs_windows.rs +file:lib/rustlib/src/rust/library/backtrace/src/symbolize/gimli/lru.rs +file:lib/rustlib/src/rust/library/backtrace/src/symbolize/gimli/macho.rs +file:lib/rustlib/src/rust/library/backtrace/src/symbolize/gimli/mmap_fake.rs +file:lib/rustlib/src/rust/library/backtrace/src/symbolize/gimli/mmap_unix.rs +file:lib/rustlib/src/rust/library/backtrace/src/symbolize/gimli/mmap_windows.rs +file:lib/rustlib/src/rust/library/backtrace/src/symbolize/gimli/parse_running_mmaps_unix.rs +file:lib/rustlib/src/rust/library/backtrace/src/symbolize/gimli/stash.rs +file:lib/rustlib/src/rust/library/backtrace/src/symbolize/gimli/xcoff.rs +file:lib/rustlib/src/rust/library/backtrace/src/symbolize/miri.rs +file:lib/rustlib/src/rust/library/backtrace/src/symbolize/mod.rs +file:lib/rustlib/src/rust/library/backtrace/src/symbolize/noop.rs +file:lib/rustlib/src/rust/library/backtrace/src/types.rs +file:lib/rustlib/src/rust/library/backtrace/src/windows_sys.rs +file:lib/rustlib/src/rust/library/backtrace/src/windows_sys_arm32_shim.rs +file:lib/rustlib/src/rust/library/backtrace/tests/accuracy/auxiliary.rs +file:lib/rustlib/src/rust/library/backtrace/tests/accuracy/main.rs +file:lib/rustlib/src/rust/library/backtrace/tests/common/mod.rs +file:lib/rustlib/src/rust/library/backtrace/tests/concurrent-panics.rs +file:lib/rustlib/src/rust/library/backtrace/tests/current-exe-mismatch.rs +file:lib/rustlib/src/rust/library/backtrace/tests/long_fn_name.rs +file:lib/rustlib/src/rust/library/backtrace/tests/sgx-image-base.rs +file:lib/rustlib/src/rust/library/backtrace/tests/skip_inner_frames.rs +file:lib/rustlib/src/rust/library/backtrace/tests/smoke.rs +file:lib/rustlib/src/rust/library/compiler-builtins/.editorconfig +file:lib/rustlib/src/rust/library/compiler-builtins/.git-blame-ignore-revs +file:lib/rustlib/src/rust/library/compiler-builtins/.github/workflows/main.yaml +file:lib/rustlib/src/rust/library/compiler-builtins/.github/workflows/publish.yaml +file:lib/rustlib/src/rust/library/compiler-builtins/.github/workflows/rustc-pull.yml +file:lib/rustlib/src/rust/library/compiler-builtins/.rustfmt.toml +file:lib/rustlib/src/rust/library/compiler-builtins/CONTRIBUTING.md +file:lib/rustlib/src/rust/library/compiler-builtins/Cargo.toml +file:lib/rustlib/src/rust/library/compiler-builtins/LICENSE.txt +file:lib/rustlib/src/rust/library/compiler-builtins/PUBLISHING.md +file:lib/rustlib/src/rust/library/compiler-builtins/README.md +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-shim/Cargo.toml +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test-intrinsics/Cargo.toml +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test-intrinsics/build.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test-intrinsics/src/main.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/Cargo.toml +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/benches/float_add.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/benches/float_cmp.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/benches/float_conv.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/benches/float_div.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/benches/float_extend.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/benches/float_mul.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/benches/float_pow.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/benches/float_sub.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/benches/float_trunc.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/benches/mem.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/benches/mem_icount.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/build.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/src/bench.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/src/lib.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/tests/addsub.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/tests/aeabi_memclr.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/tests/aeabi_memcpy.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/tests/aeabi_memset.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/tests/big.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/tests/cmp.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/tests/conv.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/tests/div_rem.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/tests/float_pow.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/tests/lse.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/tests/mem.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/tests/misc.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/tests/mul.rs +file:lib/rustlib/src/rust/library/compiler-builtins/builtins-test/tests/shift.rs +file:lib/rustlib/src/rust/library/compiler-builtins/ci/bench-icount.sh +file:lib/rustlib/src/rust/library/compiler-builtins/ci/bench-runtime.sh +file:lib/rustlib/src/rust/library/compiler-builtins/ci/ci-util.py +file:lib/rustlib/src/rust/library/compiler-builtins/ci/docker/aarch64-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/compiler-builtins/ci/docker/arm-unknown-linux-gnueabi/Dockerfile +file:lib/rustlib/src/rust/library/compiler-builtins/ci/docker/arm-unknown-linux-gnueabihf/Dockerfile +file:lib/rustlib/src/rust/library/compiler-builtins/ci/docker/armv7-unknown-linux-gnueabihf/Dockerfile +file:lib/rustlib/src/rust/library/compiler-builtins/ci/docker/i586-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/compiler-builtins/ci/docker/i686-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/compiler-builtins/ci/docker/loongarch64-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/compiler-builtins/ci/docker/mips-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/compiler-builtins/ci/docker/mips64-unknown-linux-gnuabi64/Dockerfile +file:lib/rustlib/src/rust/library/compiler-builtins/ci/docker/mips64el-unknown-linux-gnuabi64/Dockerfile +file:lib/rustlib/src/rust/library/compiler-builtins/ci/docker/mipsel-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/compiler-builtins/ci/docker/powerpc-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/compiler-builtins/ci/docker/powerpc64-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/compiler-builtins/ci/docker/powerpc64le-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/compiler-builtins/ci/docker/riscv64gc-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/compiler-builtins/ci/docker/thumbv6m-none-eabi/Dockerfile +file:lib/rustlib/src/rust/library/compiler-builtins/ci/docker/thumbv7em-none-eabi/Dockerfile +file:lib/rustlib/src/rust/library/compiler-builtins/ci/docker/thumbv7em-none-eabihf/Dockerfile +file:lib/rustlib/src/rust/library/compiler-builtins/ci/docker/thumbv7m-none-eabi/Dockerfile +file:lib/rustlib/src/rust/library/compiler-builtins/ci/docker/wasm32-unknown-unknown/Dockerfile +file:lib/rustlib/src/rust/library/compiler-builtins/ci/docker/x86_64-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/compiler-builtins/ci/download-compiler-rt.sh +file:lib/rustlib/src/rust/library/compiler-builtins/ci/install-bench-deps.sh +file:lib/rustlib/src/rust/library/compiler-builtins/ci/miri.sh +file:lib/rustlib/src/rust/library/compiler-builtins/ci/run-docker.sh +file:lib/rustlib/src/rust/library/compiler-builtins/ci/run-extensive.sh +file:lib/rustlib/src/rust/library/compiler-builtins/ci/run.sh +file:lib/rustlib/src/rust/library/compiler-builtins/ci/update-musl.sh +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/CHANGELOG.md +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/Cargo.toml +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/README.md +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/build.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/configure.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/aarch64.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/aarch64_outline_atomics.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/arm.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/avr.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/float/add.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/float/cmp.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/float/conv.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/float/div.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/float/extend.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/float/mod.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/float/mul.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/float/pow.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/float/sub.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/float/traits.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/float/trunc.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/hexagon.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/hexagon/dfaddsub.s +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/hexagon/dfdiv.s +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/hexagon/dffma.s +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/hexagon/dfminmax.s +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/hexagon/dfmul.s +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/hexagon/dfsqrt.s +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/hexagon/divdi3.s +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/hexagon/divsi3.s +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/hexagon/fastmath2_dlib_asm.s +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/hexagon/fastmath2_ldlib_asm.s +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/hexagon/func_macro.s +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/hexagon/memcpy_forward_vp4cp4n2.s +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/hexagon/memcpy_likely_aligned.s +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/hexagon/moddi3.s +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/hexagon/modsi3.s +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/hexagon/sfdiv_opt.s +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/hexagon/sfsqrt_opt.s +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/hexagon/udivdi3.s +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/hexagon/udivmoddi4.s +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/hexagon/udivmodsi4.s +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/hexagon/udivsi3.s +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/hexagon/umoddi3.s +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/hexagon/umodsi3.s +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/addsub.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/big.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/bswap.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/leading_zeros.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/mod.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/mul.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/sdiv.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/shift.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/specialized_div_rem/asymmetric.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/specialized_div_rem/binary_long.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/specialized_div_rem/delegate.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/specialized_div_rem/mod.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/specialized_div_rem/norm_shift.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/specialized_div_rem/trifecta.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/trailing_zeros.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/traits.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/udiv.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/lib.miri.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/lib.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/macros.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/math/mod.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/mem/impls.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/mem/mod.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/mem/x86_64.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/probestack.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/riscv.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/sync/arm_linux.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/sync/arm_thumb_shared.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/sync/mod.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/sync/thumbv6k.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/x86.rs +file:lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/x86_64.rs +file:lib/rustlib/src/rust/library/compiler-builtins/crates/libm-macros/Cargo.toml +file:lib/rustlib/src/rust/library/compiler-builtins/crates/libm-macros/src/enums.rs +file:lib/rustlib/src/rust/library/compiler-builtins/crates/libm-macros/src/lib.rs +file:lib/rustlib/src/rust/library/compiler-builtins/crates/libm-macros/src/parse.rs +file:lib/rustlib/src/rust/library/compiler-builtins/crates/libm-macros/src/shared.rs +file:lib/rustlib/src/rust/library/compiler-builtins/crates/libm-macros/tests/basic.rs +file:lib/rustlib/src/rust/library/compiler-builtins/crates/libm-macros/tests/enum.rs +file:lib/rustlib/src/rust/library/compiler-builtins/crates/musl-math-sys/Cargo.toml +file:lib/rustlib/src/rust/library/compiler-builtins/crates/musl-math-sys/build.rs +file:lib/rustlib/src/rust/library/compiler-builtins/crates/musl-math-sys/c_patches/alias.c +file:lib/rustlib/src/rust/library/compiler-builtins/crates/musl-math-sys/c_patches/features.h +file:lib/rustlib/src/rust/library/compiler-builtins/crates/musl-math-sys/src/lib.rs +file:lib/rustlib/src/rust/library/compiler-builtins/crates/panic-handler/Cargo.toml +file:lib/rustlib/src/rust/library/compiler-builtins/crates/panic-handler/src/lib.rs +file:lib/rustlib/src/rust/library/compiler-builtins/crates/symbol-check/Cargo.toml +file:lib/rustlib/src/rust/library/compiler-builtins/crates/symbol-check/build.rs +file:lib/rustlib/src/rust/library/compiler-builtins/crates/symbol-check/src/main.rs +file:lib/rustlib/src/rust/library/compiler-builtins/crates/symbol-check/tests/all.rs +file:lib/rustlib/src/rust/library/compiler-builtins/crates/symbol-check/tests/input/core_symbols.rs +file:lib/rustlib/src/rust/library/compiler-builtins/crates/symbol-check/tests/input/duplicates.rs +file:lib/rustlib/src/rust/library/compiler-builtins/crates/symbol-check/tests/input/good.rs +file:lib/rustlib/src/rust/library/compiler-builtins/crates/util/Cargo.toml +file:lib/rustlib/src/rust/library/compiler-builtins/crates/util/build.rs +file:lib/rustlib/src/rust/library/compiler-builtins/crates/util/src/main.rs +file:lib/rustlib/src/rust/library/compiler-builtins/etc/function-definitions.json +file:lib/rustlib/src/rust/library/compiler-builtins/etc/function-list.txt +file:lib/rustlib/src/rust/library/compiler-builtins/etc/thumbv6-none-eabi.json +file:lib/rustlib/src/rust/library/compiler-builtins/etc/thumbv7em-none-eabi-renamed.json +file:lib/rustlib/src/rust/library/compiler-builtins/etc/update-api-list.py +file:lib/rustlib/src/rust/library/compiler-builtins/josh-sync.toml +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/Cargo.toml +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/benches/icount.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/benches/random.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/build.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/examples/plot_domains.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/examples/plot_file.jl +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/src/domain.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/src/f8_impl.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/src/generate.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/src/generate/case_list.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/src/generate/edge_cases.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/src/generate/random.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/src/generate/spaced.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/src/lib.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/src/mpfloat.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/src/num.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/src/op.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/src/precision.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/src/run_cfg.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/src/test_traits.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/tests/check_coverage.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/tests/compare_built_musl.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/tests/multiprecision.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/tests/standalone.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/tests/u256.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/tests/z_extensive/main.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm-test/tests/z_extensive/run.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/CHANGELOG.md +file:lib/rustlib/src/rust/library/compiler-builtins/libm/Cargo.toml +file:lib/rustlib/src/rust/library/compiler-builtins/libm/LICENSE.txt +file:lib/rustlib/src/rust/library/compiler-builtins/libm/README.md +file:lib/rustlib/src/rust/library/compiler-builtins/libm/build.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/configure.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/lib.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/libm_helper.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/acos.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/acosf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/acosh.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/acoshf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/arch/aarch64.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/arch/i586.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/arch/mod.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/arch/wasm32.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/arch/x86.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/arch/x86/detect.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/arch/x86/fma.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/asin.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/asinf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/asinh.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/asinhf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/atan.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/atan2.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/atan2f.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/atanf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/atanh.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/atanhf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/cbrt.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/cbrtf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/ceil.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/copysign.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/cos.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/cosf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/cosh.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/coshf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/erf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/erff.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/exp.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/exp10.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/exp10f.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/exp2.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/exp2f.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/expf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/expm1.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/expm1f.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/expo2.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/fabs.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/fdim.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/floor.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/fma.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/fmin_fmax.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/fminimum_fmaximum.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/fminimum_fmaximum_num.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/fmod.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/frexp.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/frexpf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/generic/ceil.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/generic/copysign.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/generic/fabs.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/generic/fdim.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/generic/floor.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/generic/fma.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/generic/fma_wide.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/generic/fmax.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/generic/fmaximum.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/generic/fmaximum_num.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/generic/fmin.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/generic/fminimum.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/generic/fminimum_num.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/generic/fmod.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/generic/mod.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/generic/rint.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/generic/round.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/generic/scalbn.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/generic/sqrt.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/generic/trunc.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/hypot.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/hypotf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/ilogb.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/ilogbf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/j0.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/j0f.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/j1.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/j1f.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/jn.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/jnf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/k_cos.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/k_cosf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/k_expo2.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/k_expo2f.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/k_sin.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/k_sinf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/k_tan.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/k_tanf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/ldexp.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/lgamma.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/lgamma_r.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/lgammaf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/lgammaf_r.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/log.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/log10.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/log10f.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/log1p.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/log1pf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/log2.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/log2f.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/logf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/mod.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/modf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/modff.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/nextafter.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/nextafterf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/pow.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/powf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/rem_pio2.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/rem_pio2_large.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/rem_pio2f.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/remainder.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/remainderf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/remquo.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/remquof.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/rint.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/round.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/roundeven.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/scalbn.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/sin.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/sincos.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/sincosf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/sinf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/sinh.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/sinhf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/sqrt.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/support/big.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/support/big/tests.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/support/env.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/support/feature_detect.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/support/float_traits.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/support/hex_float.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/support/int_traits.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/support/int_traits/narrowing_div.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/support/macros.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/support/mod.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/support/modular.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/tan.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/tanf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/tanh.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/tanhf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/tgamma.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/tgammaf.rs +file:lib/rustlib/src/rust/library/compiler-builtins/libm/src/math/trunc.rs +file:lib/rustlib/src/rust/library/compiler-builtins/rust-version +file:lib/rustlib/src/rust/library/compiler-builtins/triagebot.toml +file:lib/rustlib/src/rust/library/core/Cargo.toml +file:lib/rustlib/src/rust/library/core/src/alloc/global.rs +file:lib/rustlib/src/rust/library/core/src/alloc/layout.rs +file:lib/rustlib/src/rust/library/core/src/alloc/mod.rs +file:lib/rustlib/src/rust/library/core/src/any.rs +file:lib/rustlib/src/rust/library/core/src/arch.rs +file:lib/rustlib/src/rust/library/core/src/array/ascii.rs +file:lib/rustlib/src/rust/library/core/src/array/drain.rs +file:lib/rustlib/src/rust/library/core/src/array/equality.rs +file:lib/rustlib/src/rust/library/core/src/array/iter.rs +file:lib/rustlib/src/rust/library/core/src/array/iter/iter_inner.rs +file:lib/rustlib/src/rust/library/core/src/array/mod.rs +file:lib/rustlib/src/rust/library/core/src/ascii.rs +file:lib/rustlib/src/rust/library/core/src/ascii/ascii_char.rs +file:lib/rustlib/src/rust/library/core/src/asserting.rs +file:lib/rustlib/src/rust/library/core/src/async_iter/async_iter.rs +file:lib/rustlib/src/rust/library/core/src/async_iter/from_iter.rs +file:lib/rustlib/src/rust/library/core/src/async_iter/mod.rs +file:lib/rustlib/src/rust/library/core/src/bool.rs +file:lib/rustlib/src/rust/library/core/src/borrow.rs +file:lib/rustlib/src/rust/library/core/src/bstr/mod.rs +file:lib/rustlib/src/rust/library/core/src/bstr/traits.rs +file:lib/rustlib/src/rust/library/core/src/cell.rs +file:lib/rustlib/src/rust/library/core/src/cell/lazy.rs +file:lib/rustlib/src/rust/library/core/src/cell/once.rs +file:lib/rustlib/src/rust/library/core/src/char/convert.rs +file:lib/rustlib/src/rust/library/core/src/char/decode.rs +file:lib/rustlib/src/rust/library/core/src/char/methods.rs +file:lib/rustlib/src/rust/library/core/src/char/mod.rs +file:lib/rustlib/src/rust/library/core/src/clone.rs +file:lib/rustlib/src/rust/library/core/src/clone/uninit.rs +file:lib/rustlib/src/rust/library/core/src/cmp.rs +file:lib/rustlib/src/rust/library/core/src/cmp/bytewise.rs +file:lib/rustlib/src/rust/library/core/src/contracts.rs +file:lib/rustlib/src/rust/library/core/src/convert/mod.rs +file:lib/rustlib/src/rust/library/core/src/convert/num.rs +file:lib/rustlib/src/rust/library/core/src/default.rs +file:lib/rustlib/src/rust/library/core/src/error.md +file:lib/rustlib/src/rust/library/core/src/error.rs +file:lib/rustlib/src/rust/library/core/src/escape.rs +file:lib/rustlib/src/rust/library/core/src/ffi/c_char.md +file:lib/rustlib/src/rust/library/core/src/ffi/c_double.md +file:lib/rustlib/src/rust/library/core/src/ffi/c_float.md +file:lib/rustlib/src/rust/library/core/src/ffi/c_int.md +file:lib/rustlib/src/rust/library/core/src/ffi/c_long.md +file:lib/rustlib/src/rust/library/core/src/ffi/c_longlong.md +file:lib/rustlib/src/rust/library/core/src/ffi/c_schar.md +file:lib/rustlib/src/rust/library/core/src/ffi/c_short.md +file:lib/rustlib/src/rust/library/core/src/ffi/c_str.rs +file:lib/rustlib/src/rust/library/core/src/ffi/c_uchar.md +file:lib/rustlib/src/rust/library/core/src/ffi/c_uint.md +file:lib/rustlib/src/rust/library/core/src/ffi/c_ulong.md +file:lib/rustlib/src/rust/library/core/src/ffi/c_ulonglong.md +file:lib/rustlib/src/rust/library/core/src/ffi/c_ushort.md +file:lib/rustlib/src/rust/library/core/src/ffi/c_void.md +file:lib/rustlib/src/rust/library/core/src/ffi/mod.rs +file:lib/rustlib/src/rust/library/core/src/ffi/primitives.rs +file:lib/rustlib/src/rust/library/core/src/ffi/va_list.rs +file:lib/rustlib/src/rust/library/core/src/fmt/builders.rs +file:lib/rustlib/src/rust/library/core/src/fmt/float.rs +file:lib/rustlib/src/rust/library/core/src/fmt/fmt_trait_method_doc.md +file:lib/rustlib/src/rust/library/core/src/fmt/mod.rs +file:lib/rustlib/src/rust/library/core/src/fmt/nofloat.rs +file:lib/rustlib/src/rust/library/core/src/fmt/num.rs +file:lib/rustlib/src/rust/library/core/src/fmt/num_buffer.rs +file:lib/rustlib/src/rust/library/core/src/fmt/rt.rs +file:lib/rustlib/src/rust/library/core/src/future/async_drop.rs +file:lib/rustlib/src/rust/library/core/src/future/future.rs +file:lib/rustlib/src/rust/library/core/src/future/into_future.rs +file:lib/rustlib/src/rust/library/core/src/future/join.rs +file:lib/rustlib/src/rust/library/core/src/future/mod.rs +file:lib/rustlib/src/rust/library/core/src/future/pending.rs +file:lib/rustlib/src/rust/library/core/src/future/poll_fn.rs +file:lib/rustlib/src/rust/library/core/src/future/ready.rs +file:lib/rustlib/src/rust/library/core/src/hash/mod.rs +file:lib/rustlib/src/rust/library/core/src/hash/sip.rs +file:lib/rustlib/src/rust/library/core/src/hint.rs +file:lib/rustlib/src/rust/library/core/src/index.rs +file:lib/rustlib/src/rust/library/core/src/internal_macros.rs +file:lib/rustlib/src/rust/library/core/src/intrinsics/bounds.rs +file:lib/rustlib/src/rust/library/core/src/intrinsics/fallback.rs +file:lib/rustlib/src/rust/library/core/src/intrinsics/gpu.rs +file:lib/rustlib/src/rust/library/core/src/intrinsics/mir.rs +file:lib/rustlib/src/rust/library/core/src/intrinsics/mod.rs +file:lib/rustlib/src/rust/library/core/src/intrinsics/simd.rs +file:lib/rustlib/src/rust/library/core/src/io/borrowed_buf.rs +file:lib/rustlib/src/rust/library/core/src/io/mod.rs +file:lib/rustlib/src/rust/library/core/src/iter/adapters/array_chunks.rs +file:lib/rustlib/src/rust/library/core/src/iter/adapters/by_ref_sized.rs +file:lib/rustlib/src/rust/library/core/src/iter/adapters/chain.rs +file:lib/rustlib/src/rust/library/core/src/iter/adapters/cloned.rs +file:lib/rustlib/src/rust/library/core/src/iter/adapters/copied.rs +file:lib/rustlib/src/rust/library/core/src/iter/adapters/cycle.rs +file:lib/rustlib/src/rust/library/core/src/iter/adapters/enumerate.rs +file:lib/rustlib/src/rust/library/core/src/iter/adapters/filter.rs +file:lib/rustlib/src/rust/library/core/src/iter/adapters/filter_map.rs +file:lib/rustlib/src/rust/library/core/src/iter/adapters/flatten.rs +file:lib/rustlib/src/rust/library/core/src/iter/adapters/fuse.rs +file:lib/rustlib/src/rust/library/core/src/iter/adapters/inspect.rs +file:lib/rustlib/src/rust/library/core/src/iter/adapters/intersperse.rs +file:lib/rustlib/src/rust/library/core/src/iter/adapters/map.rs +file:lib/rustlib/src/rust/library/core/src/iter/adapters/map_while.rs +file:lib/rustlib/src/rust/library/core/src/iter/adapters/map_windows.rs +file:lib/rustlib/src/rust/library/core/src/iter/adapters/mod.rs +file:lib/rustlib/src/rust/library/core/src/iter/adapters/peekable.rs +file:lib/rustlib/src/rust/library/core/src/iter/adapters/rev.rs +file:lib/rustlib/src/rust/library/core/src/iter/adapters/scan.rs +file:lib/rustlib/src/rust/library/core/src/iter/adapters/skip.rs +file:lib/rustlib/src/rust/library/core/src/iter/adapters/skip_while.rs +file:lib/rustlib/src/rust/library/core/src/iter/adapters/step_by.rs +file:lib/rustlib/src/rust/library/core/src/iter/adapters/take.rs +file:lib/rustlib/src/rust/library/core/src/iter/adapters/take_while.rs +file:lib/rustlib/src/rust/library/core/src/iter/adapters/zip.rs +file:lib/rustlib/src/rust/library/core/src/iter/mod.rs +file:lib/rustlib/src/rust/library/core/src/iter/range.rs +file:lib/rustlib/src/rust/library/core/src/iter/sources.rs +file:lib/rustlib/src/rust/library/core/src/iter/sources/empty.rs +file:lib/rustlib/src/rust/library/core/src/iter/sources/from_coroutine.rs +file:lib/rustlib/src/rust/library/core/src/iter/sources/from_fn.rs +file:lib/rustlib/src/rust/library/core/src/iter/sources/generator.rs +file:lib/rustlib/src/rust/library/core/src/iter/sources/once.rs +file:lib/rustlib/src/rust/library/core/src/iter/sources/once_with.rs +file:lib/rustlib/src/rust/library/core/src/iter/sources/repeat.rs +file:lib/rustlib/src/rust/library/core/src/iter/sources/repeat_n.rs +file:lib/rustlib/src/rust/library/core/src/iter/sources/repeat_with.rs +file:lib/rustlib/src/rust/library/core/src/iter/sources/successors.rs +file:lib/rustlib/src/rust/library/core/src/iter/traits/accum.rs +file:lib/rustlib/src/rust/library/core/src/iter/traits/collect.rs +file:lib/rustlib/src/rust/library/core/src/iter/traits/double_ended.rs +file:lib/rustlib/src/rust/library/core/src/iter/traits/exact_size.rs +file:lib/rustlib/src/rust/library/core/src/iter/traits/iterator.rs +file:lib/rustlib/src/rust/library/core/src/iter/traits/marker.rs +file:lib/rustlib/src/rust/library/core/src/iter/traits/mod.rs +file:lib/rustlib/src/rust/library/core/src/iter/traits/unchecked_iterator.rs +file:lib/rustlib/src/rust/library/core/src/lib.miri.rs +file:lib/rustlib/src/rust/library/core/src/lib.rs +file:lib/rustlib/src/rust/library/core/src/macros/mod.rs +file:lib/rustlib/src/rust/library/core/src/macros/panic.md +file:lib/rustlib/src/rust/library/core/src/marker.rs +file:lib/rustlib/src/rust/library/core/src/marker/variance.rs +file:lib/rustlib/src/rust/library/core/src/mem/drop_guard.rs +file:lib/rustlib/src/rust/library/core/src/mem/manually_drop.rs +file:lib/rustlib/src/rust/library/core/src/mem/maybe_dangling.rs +file:lib/rustlib/src/rust/library/core/src/mem/maybe_uninit.rs +file:lib/rustlib/src/rust/library/core/src/mem/mod.rs +file:lib/rustlib/src/rust/library/core/src/mem/transmutability.rs +file:lib/rustlib/src/rust/library/core/src/mem/type_info.rs +file:lib/rustlib/src/rust/library/core/src/net/display_buffer.rs +file:lib/rustlib/src/rust/library/core/src/net/ip_addr.rs +file:lib/rustlib/src/rust/library/core/src/net/mod.rs +file:lib/rustlib/src/rust/library/core/src/net/parser.rs +file:lib/rustlib/src/rust/library/core/src/net/socket_addr.rs +file:lib/rustlib/src/rust/library/core/src/num/bignum.rs +file:lib/rustlib/src/rust/library/core/src/num/dec2flt/common.rs +file:lib/rustlib/src/rust/library/core/src/num/dec2flt/decimal.rs +file:lib/rustlib/src/rust/library/core/src/num/dec2flt/decimal_seq.rs +file:lib/rustlib/src/rust/library/core/src/num/dec2flt/float.rs +file:lib/rustlib/src/rust/library/core/src/num/dec2flt/fpu.rs +file:lib/rustlib/src/rust/library/core/src/num/dec2flt/lemire.rs +file:lib/rustlib/src/rust/library/core/src/num/dec2flt/mod.rs +file:lib/rustlib/src/rust/library/core/src/num/dec2flt/parse.rs +file:lib/rustlib/src/rust/library/core/src/num/dec2flt/slow.rs +file:lib/rustlib/src/rust/library/core/src/num/dec2flt/table.rs +file:lib/rustlib/src/rust/library/core/src/num/diy_float.rs +file:lib/rustlib/src/rust/library/core/src/num/error.rs +file:lib/rustlib/src/rust/library/core/src/num/f128.rs +file:lib/rustlib/src/rust/library/core/src/num/f16.rs +file:lib/rustlib/src/rust/library/core/src/num/f32.rs +file:lib/rustlib/src/rust/library/core/src/num/f64.rs +file:lib/rustlib/src/rust/library/core/src/num/flt2dec/decoder.rs +file:lib/rustlib/src/rust/library/core/src/num/flt2dec/estimator.rs +file:lib/rustlib/src/rust/library/core/src/num/flt2dec/mod.rs +file:lib/rustlib/src/rust/library/core/src/num/flt2dec/strategy/dragon.rs +file:lib/rustlib/src/rust/library/core/src/num/flt2dec/strategy/grisu.rs +file:lib/rustlib/src/rust/library/core/src/num/fmt.rs +file:lib/rustlib/src/rust/library/core/src/num/int_bits.rs +file:lib/rustlib/src/rust/library/core/src/num/int_log10.rs +file:lib/rustlib/src/rust/library/core/src/num/int_macros.rs +file:lib/rustlib/src/rust/library/core/src/num/int_sqrt.rs +file:lib/rustlib/src/rust/library/core/src/num/libm.rs +file:lib/rustlib/src/rust/library/core/src/num/mod.rs +file:lib/rustlib/src/rust/library/core/src/num/niche_types.rs +file:lib/rustlib/src/rust/library/core/src/num/nonzero.rs +file:lib/rustlib/src/rust/library/core/src/num/overflow_panic.rs +file:lib/rustlib/src/rust/library/core/src/num/saturating.rs +file:lib/rustlib/src/rust/library/core/src/num/shells/legacy_int_modules.rs +file:lib/rustlib/src/rust/library/core/src/num/uint_macros.rs +file:lib/rustlib/src/rust/library/core/src/num/wrapping.rs +file:lib/rustlib/src/rust/library/core/src/ops/arith.rs +file:lib/rustlib/src/rust/library/core/src/ops/async_function.rs +file:lib/rustlib/src/rust/library/core/src/ops/bit.rs +file:lib/rustlib/src/rust/library/core/src/ops/control_flow.rs +file:lib/rustlib/src/rust/library/core/src/ops/coroutine.rs +file:lib/rustlib/src/rust/library/core/src/ops/deref.rs +file:lib/rustlib/src/rust/library/core/src/ops/drop.rs +file:lib/rustlib/src/rust/library/core/src/ops/function.rs +file:lib/rustlib/src/rust/library/core/src/ops/index.rs +file:lib/rustlib/src/rust/library/core/src/ops/index_range.rs +file:lib/rustlib/src/rust/library/core/src/ops/mod.rs +file:lib/rustlib/src/rust/library/core/src/ops/range.rs +file:lib/rustlib/src/rust/library/core/src/ops/reborrow.rs +file:lib/rustlib/src/rust/library/core/src/ops/try_trait.rs +file:lib/rustlib/src/rust/library/core/src/ops/unsize.rs +file:lib/rustlib/src/rust/library/core/src/option.rs +file:lib/rustlib/src/rust/library/core/src/os/darwin/mod.rs +file:lib/rustlib/src/rust/library/core/src/os/darwin/objc.rs +file:lib/rustlib/src/rust/library/core/src/os/mod.rs +file:lib/rustlib/src/rust/library/core/src/panic.rs +file:lib/rustlib/src/rust/library/core/src/panic/location.rs +file:lib/rustlib/src/rust/library/core/src/panic/panic_info.rs +file:lib/rustlib/src/rust/library/core/src/panic/unwind_safe.rs +file:lib/rustlib/src/rust/library/core/src/panicking.rs +file:lib/rustlib/src/rust/library/core/src/pat.rs +file:lib/rustlib/src/rust/library/core/src/pin.rs +file:lib/rustlib/src/rust/library/core/src/pin/unsafe_pinned.rs +file:lib/rustlib/src/rust/library/core/src/prelude/mod.rs +file:lib/rustlib/src/rust/library/core/src/prelude/v1.rs +file:lib/rustlib/src/rust/library/core/src/primitive.rs +file:lib/rustlib/src/rust/library/core/src/primitive_docs.rs +file:lib/rustlib/src/rust/library/core/src/profiling.rs +file:lib/rustlib/src/rust/library/core/src/ptr/alignment.rs +file:lib/rustlib/src/rust/library/core/src/ptr/const_ptr.rs +file:lib/rustlib/src/rust/library/core/src/ptr/docs/INFO.md +file:lib/rustlib/src/rust/library/core/src/ptr/docs/add.md +file:lib/rustlib/src/rust/library/core/src/ptr/docs/addr.md +file:lib/rustlib/src/rust/library/core/src/ptr/docs/as_ref.md +file:lib/rustlib/src/rust/library/core/src/ptr/docs/as_uninit_ref.md +file:lib/rustlib/src/rust/library/core/src/ptr/docs/as_uninit_slice.md +file:lib/rustlib/src/rust/library/core/src/ptr/docs/is_null.md +file:lib/rustlib/src/rust/library/core/src/ptr/docs/offset.md +file:lib/rustlib/src/rust/library/core/src/ptr/metadata.rs +file:lib/rustlib/src/rust/library/core/src/ptr/mod.rs +file:lib/rustlib/src/rust/library/core/src/ptr/mut_ptr.rs +file:lib/rustlib/src/rust/library/core/src/ptr/non_null.rs +file:lib/rustlib/src/rust/library/core/src/ptr/unique.rs +file:lib/rustlib/src/rust/library/core/src/random.rs +file:lib/rustlib/src/rust/library/core/src/range.rs +file:lib/rustlib/src/rust/library/core/src/range/iter.rs +file:lib/rustlib/src/rust/library/core/src/range/legacy.rs +file:lib/rustlib/src/rust/library/core/src/result.rs +file:lib/rustlib/src/rust/library/core/src/slice/ascii.rs +file:lib/rustlib/src/rust/library/core/src/slice/cmp.rs +file:lib/rustlib/src/rust/library/core/src/slice/index.rs +file:lib/rustlib/src/rust/library/core/src/slice/iter.rs +file:lib/rustlib/src/rust/library/core/src/slice/iter/macros.rs +file:lib/rustlib/src/rust/library/core/src/slice/memchr.rs +file:lib/rustlib/src/rust/library/core/src/slice/mod.rs +file:lib/rustlib/src/rust/library/core/src/slice/raw.rs +file:lib/rustlib/src/rust/library/core/src/slice/rotate.rs +file:lib/rustlib/src/rust/library/core/src/slice/sort/mod.rs +file:lib/rustlib/src/rust/library/core/src/slice/sort/select.rs +file:lib/rustlib/src/rust/library/core/src/slice/sort/shared/mod.rs +file:lib/rustlib/src/rust/library/core/src/slice/sort/shared/pivot.rs +file:lib/rustlib/src/rust/library/core/src/slice/sort/shared/smallsort.rs +file:lib/rustlib/src/rust/library/core/src/slice/sort/stable/drift.rs +file:lib/rustlib/src/rust/library/core/src/slice/sort/stable/merge.rs +file:lib/rustlib/src/rust/library/core/src/slice/sort/stable/mod.rs +file:lib/rustlib/src/rust/library/core/src/slice/sort/stable/quicksort.rs +file:lib/rustlib/src/rust/library/core/src/slice/sort/stable/tiny.rs +file:lib/rustlib/src/rust/library/core/src/slice/sort/unstable/heapsort.rs +file:lib/rustlib/src/rust/library/core/src/slice/sort/unstable/mod.rs +file:lib/rustlib/src/rust/library/core/src/slice/sort/unstable/quicksort.rs +file:lib/rustlib/src/rust/library/core/src/slice/specialize.rs +file:lib/rustlib/src/rust/library/core/src/str/converts.rs +file:lib/rustlib/src/rust/library/core/src/str/count.rs +file:lib/rustlib/src/rust/library/core/src/str/error.rs +file:lib/rustlib/src/rust/library/core/src/str/iter.rs +file:lib/rustlib/src/rust/library/core/src/str/lossy.rs +file:lib/rustlib/src/rust/library/core/src/str/mod.rs +file:lib/rustlib/src/rust/library/core/src/str/pattern.rs +file:lib/rustlib/src/rust/library/core/src/str/traits.rs +file:lib/rustlib/src/rust/library/core/src/str/validations.rs +file:lib/rustlib/src/rust/library/core/src/sync/atomic.rs +file:lib/rustlib/src/rust/library/core/src/sync/exclusive.rs +file:lib/rustlib/src/rust/library/core/src/sync/mod.rs +file:lib/rustlib/src/rust/library/core/src/task/mod.rs +file:lib/rustlib/src/rust/library/core/src/task/poll.rs +file:lib/rustlib/src/rust/library/core/src/task/ready.rs +file:lib/rustlib/src/rust/library/core/src/task/wake.rs +file:lib/rustlib/src/rust/library/core/src/time.rs +file:lib/rustlib/src/rust/library/core/src/tuple.rs +file:lib/rustlib/src/rust/library/core/src/ub_checks.rs +file:lib/rustlib/src/rust/library/core/src/unicode/mod.rs +file:lib/rustlib/src/rust/library/core/src/unicode/printable.py +file:lib/rustlib/src/rust/library/core/src/unicode/printable.rs +file:lib/rustlib/src/rust/library/core/src/unicode/unicode_data.rs +file:lib/rustlib/src/rust/library/core/src/unit.rs +file:lib/rustlib/src/rust/library/core/src/unsafe_binder.rs +file:lib/rustlib/src/rust/library/core/src/wtf8.rs +file:lib/rustlib/src/rust/library/coretests/Cargo.toml +file:lib/rustlib/src/rust/library/coretests/benches/any.rs +file:lib/rustlib/src/rust/library/coretests/benches/array.rs +file:lib/rustlib/src/rust/library/coretests/benches/ascii.rs +file:lib/rustlib/src/rust/library/coretests/benches/ascii/is_ascii.rs +file:lib/rustlib/src/rust/library/coretests/benches/char/methods.rs +file:lib/rustlib/src/rust/library/coretests/benches/char/mod.rs +file:lib/rustlib/src/rust/library/coretests/benches/fmt.rs +file:lib/rustlib/src/rust/library/coretests/benches/hash/mod.rs +file:lib/rustlib/src/rust/library/coretests/benches/hash/sip.rs +file:lib/rustlib/src/rust/library/coretests/benches/iter.rs +file:lib/rustlib/src/rust/library/coretests/benches/lib.rs +file:lib/rustlib/src/rust/library/coretests/benches/net/addr_parser.rs +file:lib/rustlib/src/rust/library/coretests/benches/net/mod.rs +file:lib/rustlib/src/rust/library/coretests/benches/num/dec2flt/mod.rs +file:lib/rustlib/src/rust/library/coretests/benches/num/flt2dec/mod.rs +file:lib/rustlib/src/rust/library/coretests/benches/num/flt2dec/strategy/dragon.rs +file:lib/rustlib/src/rust/library/coretests/benches/num/flt2dec/strategy/grisu.rs +file:lib/rustlib/src/rust/library/coretests/benches/num/int_bits/mod.rs +file:lib/rustlib/src/rust/library/coretests/benches/num/int_log/mod.rs +file:lib/rustlib/src/rust/library/coretests/benches/num/int_pow/mod.rs +file:lib/rustlib/src/rust/library/coretests/benches/num/int_sqrt/mod.rs +file:lib/rustlib/src/rust/library/coretests/benches/num/mod.rs +file:lib/rustlib/src/rust/library/coretests/benches/ops.rs +file:lib/rustlib/src/rust/library/coretests/benches/pattern.rs +file:lib/rustlib/src/rust/library/coretests/benches/slice.rs +file:lib/rustlib/src/rust/library/coretests/benches/str.rs +file:lib/rustlib/src/rust/library/coretests/benches/str/char_count.rs +file:lib/rustlib/src/rust/library/coretests/benches/str/corpora.rs +file:lib/rustlib/src/rust/library/coretests/benches/str/debug.rs +file:lib/rustlib/src/rust/library/coretests/benches/str/eq_ignore_ascii_case.rs +file:lib/rustlib/src/rust/library/coretests/benches/str/iter.rs +file:lib/rustlib/src/rust/library/coretests/benches/tuple.rs +file:lib/rustlib/src/rust/library/coretests/lib.rs +file:lib/rustlib/src/rust/library/coretests/tests/alloc.rs +file:lib/rustlib/src/rust/library/coretests/tests/any.rs +file:lib/rustlib/src/rust/library/coretests/tests/array.rs +file:lib/rustlib/src/rust/library/coretests/tests/ascii.rs +file:lib/rustlib/src/rust/library/coretests/tests/ascii_char.rs +file:lib/rustlib/src/rust/library/coretests/tests/asserting.rs +file:lib/rustlib/src/rust/library/coretests/tests/async_iter/mod.rs +file:lib/rustlib/src/rust/library/coretests/tests/atomic.rs +file:lib/rustlib/src/rust/library/coretests/tests/bool.rs +file:lib/rustlib/src/rust/library/coretests/tests/bstr.rs +file:lib/rustlib/src/rust/library/coretests/tests/cell.rs +file:lib/rustlib/src/rust/library/coretests/tests/char.rs +file:lib/rustlib/src/rust/library/coretests/tests/clone.rs +file:lib/rustlib/src/rust/library/coretests/tests/cmp.rs +file:lib/rustlib/src/rust/library/coretests/tests/const_ptr.rs +file:lib/rustlib/src/rust/library/coretests/tests/convert.rs +file:lib/rustlib/src/rust/library/coretests/tests/error.rs +file:lib/rustlib/src/rust/library/coretests/tests/ffi.rs +file:lib/rustlib/src/rust/library/coretests/tests/ffi/cstr.rs +file:lib/rustlib/src/rust/library/coretests/tests/floats/mod.rs +file:lib/rustlib/src/rust/library/coretests/tests/fmt/builders.rs +file:lib/rustlib/src/rust/library/coretests/tests/fmt/float.rs +file:lib/rustlib/src/rust/library/coretests/tests/fmt/mod.rs +file:lib/rustlib/src/rust/library/coretests/tests/fmt/num.rs +file:lib/rustlib/src/rust/library/coretests/tests/future.rs +file:lib/rustlib/src/rust/library/coretests/tests/hash/mod.rs +file:lib/rustlib/src/rust/library/coretests/tests/hash/sip.rs +file:lib/rustlib/src/rust/library/coretests/tests/hint.rs +file:lib/rustlib/src/rust/library/coretests/tests/index.rs +file:lib/rustlib/src/rust/library/coretests/tests/intrinsics.rs +file:lib/rustlib/src/rust/library/coretests/tests/io/borrowed_buf.rs +file:lib/rustlib/src/rust/library/coretests/tests/io/mod.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/adapters/array_chunks.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/adapters/by_ref_sized.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/adapters/chain.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/adapters/cloned.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/adapters/copied.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/adapters/cycle.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/adapters/enumerate.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/adapters/filter.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/adapters/filter_map.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/adapters/flat_map.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/adapters/flatten.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/adapters/fuse.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/adapters/inspect.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/adapters/intersperse.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/adapters/map.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/adapters/map_windows.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/adapters/mod.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/adapters/peekable.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/adapters/scan.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/adapters/skip.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/adapters/skip_while.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/adapters/step_by.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/adapters/take.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/adapters/take_while.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/adapters/zip.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/mod.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/range.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/sources.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/traits/accum.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/traits/double_ended.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/traits/iterator.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/traits/mod.rs +file:lib/rustlib/src/rust/library/coretests/tests/iter/traits/step.rs +file:lib/rustlib/src/rust/library/coretests/tests/lazy.rs +file:lib/rustlib/src/rust/library/coretests/tests/lib.rs +file:lib/rustlib/src/rust/library/coretests/tests/macros.rs +file:lib/rustlib/src/rust/library/coretests/tests/manually_drop.rs +file:lib/rustlib/src/rust/library/coretests/tests/mem.rs +file:lib/rustlib/src/rust/library/coretests/tests/mem/fn_ptr.rs +file:lib/rustlib/src/rust/library/coretests/tests/mem/trait_info_of.rs +file:lib/rustlib/src/rust/library/coretests/tests/mem/type_info.rs +file:lib/rustlib/src/rust/library/coretests/tests/net/ip_addr.rs +file:lib/rustlib/src/rust/library/coretests/tests/net/mod.rs +file:lib/rustlib/src/rust/library/coretests/tests/net/parser.rs +file:lib/rustlib/src/rust/library/coretests/tests/net/socket_addr.rs +file:lib/rustlib/src/rust/library/coretests/tests/nonzero.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/bignum.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/carryless_mul.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/clamp_magnitude.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/const_from.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/dec2flt/decimal.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/dec2flt/decimal_seq.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/dec2flt/float.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/dec2flt/lemire.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/dec2flt/mod.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/dec2flt/parse.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/float_iter_sum_identity.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/flt2dec/estimator.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/flt2dec/mod.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/flt2dec/random.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/flt2dec/strategy/dragon.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/flt2dec/strategy/grisu.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/i128.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/i16.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/i32.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/i64.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/i8.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/ieee754.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/int_log.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/int_macros.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/int_sqrt.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/midpoint.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/mod.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/nan.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/niche_types.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/ops.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/u128.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/u16.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/u32.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/u64.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/u8.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/uint_macros.rs +file:lib/rustlib/src/rust/library/coretests/tests/num/wrapping.rs +file:lib/rustlib/src/rust/library/coretests/tests/ops.rs +file:lib/rustlib/src/rust/library/coretests/tests/ops/control_flow.rs +file:lib/rustlib/src/rust/library/coretests/tests/ops/from_residual.rs +file:lib/rustlib/src/rust/library/coretests/tests/option.rs +file:lib/rustlib/src/rust/library/coretests/tests/panic.rs +file:lib/rustlib/src/rust/library/coretests/tests/panic/location.rs +file:lib/rustlib/src/rust/library/coretests/tests/panic/location/file_a.rs +file:lib/rustlib/src/rust/library/coretests/tests/panic/location/file_b.rs +file:lib/rustlib/src/rust/library/coretests/tests/panic/location/file_c.rs +file:lib/rustlib/src/rust/library/coretests/tests/pattern.rs +file:lib/rustlib/src/rust/library/coretests/tests/pin.rs +file:lib/rustlib/src/rust/library/coretests/tests/pin_macro.rs +file:lib/rustlib/src/rust/library/coretests/tests/ptr.rs +file:lib/rustlib/src/rust/library/coretests/tests/result.rs +file:lib/rustlib/src/rust/library/coretests/tests/simd.rs +file:lib/rustlib/src/rust/library/coretests/tests/slice.rs +file:lib/rustlib/src/rust/library/coretests/tests/str.rs +file:lib/rustlib/src/rust/library/coretests/tests/str_lossy.rs +file:lib/rustlib/src/rust/library/coretests/tests/task.rs +file:lib/rustlib/src/rust/library/coretests/tests/time.rs +file:lib/rustlib/src/rust/library/coretests/tests/tuple.rs +file:lib/rustlib/src/rust/library/coretests/tests/unicode.rs +file:lib/rustlib/src/rust/library/coretests/tests/waker.rs +file:lib/rustlib/src/rust/library/coretests/tests/wtf8.rs +file:lib/rustlib/src/rust/library/panic_abort/Cargo.toml +file:lib/rustlib/src/rust/library/panic_abort/src/android.rs +file:lib/rustlib/src/rust/library/panic_abort/src/lib.rs +file:lib/rustlib/src/rust/library/panic_abort/src/zkvm.rs +file:lib/rustlib/src/rust/library/panic_unwind/Cargo.toml +file:lib/rustlib/src/rust/library/panic_unwind/src/dummy.rs +file:lib/rustlib/src/rust/library/panic_unwind/src/emcc.rs +file:lib/rustlib/src/rust/library/panic_unwind/src/gcc.rs +file:lib/rustlib/src/rust/library/panic_unwind/src/hermit.rs +file:lib/rustlib/src/rust/library/panic_unwind/src/lib.rs +file:lib/rustlib/src/rust/library/panic_unwind/src/miri.rs +file:lib/rustlib/src/rust/library/panic_unwind/src/seh.rs +file:lib/rustlib/src/rust/library/portable-simd/.github/ISSUE_TEMPLATE/blank_issue.md +file:lib/rustlib/src/rust/library/portable-simd/.github/ISSUE_TEMPLATE/bug_report.md +file:lib/rustlib/src/rust/library/portable-simd/.github/ISSUE_TEMPLATE/config.yml +file:lib/rustlib/src/rust/library/portable-simd/.github/ISSUE_TEMPLATE/feature_request.md +file:lib/rustlib/src/rust/library/portable-simd/.github/PULL_REQUEST_TEMPLATE.md +file:lib/rustlib/src/rust/library/portable-simd/.github/workflows/ci.yml +file:lib/rustlib/src/rust/library/portable-simd/.github/workflows/doc.yml +file:lib/rustlib/src/rust/library/portable-simd/CONTRIBUTING.md +file:lib/rustlib/src/rust/library/portable-simd/Cargo.lock +file:lib/rustlib/src/rust/library/portable-simd/Cargo.toml +file:lib/rustlib/src/rust/library/portable-simd/Cross.toml +file:lib/rustlib/src/rust/library/portable-simd/LICENSE-APACHE +file:lib/rustlib/src/rust/library/portable-simd/LICENSE-MIT +file:lib/rustlib/src/rust/library/portable-simd/README.md +file:lib/rustlib/src/rust/library/portable-simd/beginners-guide.md +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/Cargo.toml +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/LICENSE-APACHE +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/LICENSE-MIT +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/examples/README.md +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/examples/dot_product.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/examples/matrix_inversion.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/examples/nbody.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/examples/spectral_norm.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/alias.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/cast.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/core_simd_docs.md +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/fmt.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/iter.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/lib.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/masks.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/mod.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/ops.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/ops/assign.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/ops/deref.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/ops/shift_scalar.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/ops/unary.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/select.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/simd/cmp.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/simd/cmp/eq.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/simd/cmp/ord.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/simd/num.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/simd/num/float.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/simd/num/int.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/simd/num/uint.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/simd/prelude.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/simd/ptr.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/simd/ptr/const_ptr.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/simd/ptr/mut_ptr.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/swizzle.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/swizzle_dyn.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/to_bytes.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/vector.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/vendor.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/vendor/arm.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/vendor/loongarch64.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/vendor/powerpc.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/vendor/wasm32.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/vendor/x86.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/autoderef.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/cast.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/f32_ops.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/f64_ops.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/i16_ops.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/i32_ops.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/i64_ops.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/i8_ops.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/isize_ops.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/layout.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/mask_ops.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/mask_ops_impl/mask16.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/mask_ops_impl/mask32.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/mask_ops_impl/mask64.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/mask_ops_impl/mask8.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/mask_ops_impl/mask_macros.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/mask_ops_impl/masksize.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/mask_ops_impl/mod.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/masked_load_store.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/masks.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/ops_macros.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/pointers.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/round.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/swizzle.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/swizzle_dyn.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/to_bytes.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/try_from_slice.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/u16_ops.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/u32_ops.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/u64_ops.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/u8_ops.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/tests/usize_ops.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/core_simd/webdriver.json +file:lib/rustlib/src/rust/library/portable-simd/crates/std_float/Cargo.toml +file:lib/rustlib/src/rust/library/portable-simd/crates/std_float/src/lib.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/std_float/tests/float.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/test_helpers/Cargo.toml +file:lib/rustlib/src/rust/library/portable-simd/crates/test_helpers/src/approxeq.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/test_helpers/src/array.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/test_helpers/src/biteq.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/test_helpers/src/lib.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/test_helpers/src/subnormals.rs +file:lib/rustlib/src/rust/library/portable-simd/crates/test_helpers/src/wasm.rs +file:lib/rustlib/src/rust/library/portable-simd/rust-toolchain.toml +file:lib/rustlib/src/rust/library/portable-simd/subtree-sync.sh +file:lib/rustlib/src/rust/library/proc_macro/Cargo.toml +file:lib/rustlib/src/rust/library/proc_macro/src/bridge/arena.rs +file:lib/rustlib/src/rust/library/proc_macro/src/bridge/buffer.rs +file:lib/rustlib/src/rust/library/proc_macro/src/bridge/client.rs +file:lib/rustlib/src/rust/library/proc_macro/src/bridge/closure.rs +file:lib/rustlib/src/rust/library/proc_macro/src/bridge/fxhash.rs +file:lib/rustlib/src/rust/library/proc_macro/src/bridge/handle.rs +file:lib/rustlib/src/rust/library/proc_macro/src/bridge/mod.rs +file:lib/rustlib/src/rust/library/proc_macro/src/bridge/rpc.rs +file:lib/rustlib/src/rust/library/proc_macro/src/bridge/selfless_reify.rs +file:lib/rustlib/src/rust/library/proc_macro/src/bridge/server.rs +file:lib/rustlib/src/rust/library/proc_macro/src/bridge/symbol.rs +file:lib/rustlib/src/rust/library/proc_macro/src/diagnostic.rs +file:lib/rustlib/src/rust/library/proc_macro/src/escape.rs +file:lib/rustlib/src/rust/library/proc_macro/src/lib.rs +file:lib/rustlib/src/rust/library/proc_macro/src/quote.rs +file:lib/rustlib/src/rust/library/proc_macro/src/to_tokens.rs +file:lib/rustlib/src/rust/library/profiler_builtins/Cargo.toml +file:lib/rustlib/src/rust/library/profiler_builtins/build.rs +file:lib/rustlib/src/rust/library/profiler_builtins/src/lib.rs +file:lib/rustlib/src/rust/library/rtstartup/rsbegin.rs +file:lib/rustlib/src/rust/library/rtstartup/rsend.rs +file:lib/rustlib/src/rust/library/rustc-std-workspace-alloc/Cargo.toml +file:lib/rustlib/src/rust/library/rustc-std-workspace-alloc/lib.rs +file:lib/rustlib/src/rust/library/rustc-std-workspace-core/Cargo.toml +file:lib/rustlib/src/rust/library/rustc-std-workspace-core/README.md +file:lib/rustlib/src/rust/library/rustc-std-workspace-core/lib.rs +file:lib/rustlib/src/rust/library/rustc-std-workspace-std/Cargo.toml +file:lib/rustlib/src/rust/library/rustc-std-workspace-std/README.md +file:lib/rustlib/src/rust/library/rustc-std-workspace-std/lib.rs +file:lib/rustlib/src/rust/library/std/Cargo.toml +file:lib/rustlib/src/rust/library/std/benches/hash/map.rs +file:lib/rustlib/src/rust/library/std/benches/hash/mod.rs +file:lib/rustlib/src/rust/library/std/benches/hash/set_ops.rs +file:lib/rustlib/src/rust/library/std/benches/lib.rs +file:lib/rustlib/src/rust/library/std/benches/path.rs +file:lib/rustlib/src/rust/library/std/benches/time.rs +file:lib/rustlib/src/rust/library/std/build.rs +file:lib/rustlib/src/rust/library/std/src/alloc.rs +file:lib/rustlib/src/rust/library/std/src/ascii.rs +file:lib/rustlib/src/rust/library/std/src/backtrace.rs +file:lib/rustlib/src/rust/library/std/src/backtrace/tests.rs +file:lib/rustlib/src/rust/library/std/src/bstr.rs +file:lib/rustlib/src/rust/library/std/src/collections/hash/map.rs +file:lib/rustlib/src/rust/library/std/src/collections/hash/map/tests.rs +file:lib/rustlib/src/rust/library/std/src/collections/hash/mod.rs +file:lib/rustlib/src/rust/library/std/src/collections/hash/set.rs +file:lib/rustlib/src/rust/library/std/src/collections/hash/set/tests.rs +file:lib/rustlib/src/rust/library/std/src/collections/mod.rs +file:lib/rustlib/src/rust/library/std/src/env.rs +file:lib/rustlib/src/rust/library/std/src/error.rs +file:lib/rustlib/src/rust/library/std/src/ffi/c_str.rs +file:lib/rustlib/src/rust/library/std/src/ffi/mod.rs +file:lib/rustlib/src/rust/library/std/src/ffi/os_str.rs +file:lib/rustlib/src/rust/library/std/src/ffi/os_str/tests.rs +file:lib/rustlib/src/rust/library/std/src/fs.rs +file:lib/rustlib/src/rust/library/std/src/fs/tests.rs +file:lib/rustlib/src/rust/library/std/src/hash/mod.rs +file:lib/rustlib/src/rust/library/std/src/hash/random.rs +file:lib/rustlib/src/rust/library/std/src/io/buffered/bufreader.rs +file:lib/rustlib/src/rust/library/std/src/io/buffered/bufreader/buffer.rs +file:lib/rustlib/src/rust/library/std/src/io/buffered/bufwriter.rs +file:lib/rustlib/src/rust/library/std/src/io/buffered/linewriter.rs +file:lib/rustlib/src/rust/library/std/src/io/buffered/linewritershim.rs +file:lib/rustlib/src/rust/library/std/src/io/buffered/mod.rs +file:lib/rustlib/src/rust/library/std/src/io/buffered/tests.rs +file:lib/rustlib/src/rust/library/std/src/io/copy.rs +file:lib/rustlib/src/rust/library/std/src/io/copy/tests.rs +file:lib/rustlib/src/rust/library/std/src/io/cursor.rs +file:lib/rustlib/src/rust/library/std/src/io/cursor/tests.rs +file:lib/rustlib/src/rust/library/std/src/io/error.rs +file:lib/rustlib/src/rust/library/std/src/io/error/repr_bitpacked.rs +file:lib/rustlib/src/rust/library/std/src/io/error/repr_unpacked.rs +file:lib/rustlib/src/rust/library/std/src/io/error/tests.rs +file:lib/rustlib/src/rust/library/std/src/io/impls.rs +file:lib/rustlib/src/rust/library/std/src/io/impls/tests.rs +file:lib/rustlib/src/rust/library/std/src/io/mod.rs +file:lib/rustlib/src/rust/library/std/src/io/pipe.rs +file:lib/rustlib/src/rust/library/std/src/io/pipe/tests.rs +file:lib/rustlib/src/rust/library/std/src/io/prelude.rs +file:lib/rustlib/src/rust/library/std/src/io/stdio.rs +file:lib/rustlib/src/rust/library/std/src/io/stdio/tests.rs +file:lib/rustlib/src/rust/library/std/src/io/tests.rs +file:lib/rustlib/src/rust/library/std/src/io/util.rs +file:lib/rustlib/src/rust/library/std/src/io/util/tests.rs +file:lib/rustlib/src/rust/library/std/src/keyword_docs.rs +file:lib/rustlib/src/rust/library/std/src/lib.miri.rs +file:lib/rustlib/src/rust/library/std/src/lib.rs +file:lib/rustlib/src/rust/library/std/src/macros.rs +file:lib/rustlib/src/rust/library/std/src/net/hostname.rs +file:lib/rustlib/src/rust/library/std/src/net/ip_addr.rs +file:lib/rustlib/src/rust/library/std/src/net/ip_addr/tests.rs +file:lib/rustlib/src/rust/library/std/src/net/mod.rs +file:lib/rustlib/src/rust/library/std/src/net/socket_addr.rs +file:lib/rustlib/src/rust/library/std/src/net/socket_addr/tests.rs +file:lib/rustlib/src/rust/library/std/src/net/tcp.rs +file:lib/rustlib/src/rust/library/std/src/net/tcp/tests.rs +file:lib/rustlib/src/rust/library/std/src/net/test.rs +file:lib/rustlib/src/rust/library/std/src/net/udp.rs +file:lib/rustlib/src/rust/library/std/src/net/udp/tests.rs +file:lib/rustlib/src/rust/library/std/src/num/f128.rs +file:lib/rustlib/src/rust/library/std/src/num/f16.rs +file:lib/rustlib/src/rust/library/std/src/num/f32.rs +file:lib/rustlib/src/rust/library/std/src/num/f64.rs +file:lib/rustlib/src/rust/library/std/src/num/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/aix/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/aix/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/aix/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/android/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/android/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/android/net.rs +file:lib/rustlib/src/rust/library/std/src/os/android/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/cygwin/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/cygwin/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/cygwin/net.rs +file:lib/rustlib/src/rust/library/std/src/os/cygwin/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/darwin/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/darwin/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/darwin/objc.rs +file:lib/rustlib/src/rust/library/std/src/os/darwin/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/dragonfly/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/dragonfly/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/dragonfly/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/emscripten/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/emscripten/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/emscripten/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/espidf/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/espidf/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/espidf/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/fd/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/fd/net.rs +file:lib/rustlib/src/rust/library/std/src/os/fd/owned.rs +file:lib/rustlib/src/rust/library/std/src/os/fd/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/fd/stdio.rs +file:lib/rustlib/src/rust/library/std/src/os/fd/tests.rs +file:lib/rustlib/src/rust/library/std/src/os/fortanix_sgx/arch.rs +file:lib/rustlib/src/rust/library/std/src/os/fortanix_sgx/ffi.rs +file:lib/rustlib/src/rust/library/std/src/os/fortanix_sgx/io.rs +file:lib/rustlib/src/rust/library/std/src/os/fortanix_sgx/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/freebsd/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/freebsd/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/freebsd/net.rs +file:lib/rustlib/src/rust/library/std/src/os/freebsd/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/fuchsia/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/fuchsia/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/fuchsia/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/haiku/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/haiku/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/haiku/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/hermit/ffi.rs +file:lib/rustlib/src/rust/library/std/src/os/hermit/io/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/hermit/io/net.rs +file:lib/rustlib/src/rust/library/std/src/os/hermit/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/horizon/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/horizon/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/horizon/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/hurd/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/hurd/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/hurd/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/illumos/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/illumos/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/illumos/net.rs +file:lib/rustlib/src/rust/library/std/src/os/illumos/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/ios/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/l4re/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/l4re/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/l4re/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/linux/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/linux/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/linux/net.rs +file:lib/rustlib/src/rust/library/std/src/os/linux/process.rs +file:lib/rustlib/src/rust/library/std/src/os/linux/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/macos/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/motor/ffi.rs +file:lib/rustlib/src/rust/library/std/src/os/motor/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/motor/process.rs +file:lib/rustlib/src/rust/library/std/src/os/net/linux_ext/addr.rs +file:lib/rustlib/src/rust/library/std/src/os/net/linux_ext/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/net/linux_ext/socket.rs +file:lib/rustlib/src/rust/library/std/src/os/net/linux_ext/tcp.rs +file:lib/rustlib/src/rust/library/std/src/os/net/linux_ext/tests.rs +file:lib/rustlib/src/rust/library/std/src/os/net/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/netbsd/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/netbsd/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/netbsd/net.rs +file:lib/rustlib/src/rust/library/std/src/os/netbsd/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/nto/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/nto/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/nto/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/nuttx/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/nuttx/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/nuttx/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/openbsd/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/openbsd/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/openbsd/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/raw/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/raw/tests.rs +file:lib/rustlib/src/rust/library/std/src/os/redox/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/redox/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/redox/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/rtems/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/rtems/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/rtems/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/solaris/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/solaris/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/solaris/net.rs +file:lib/rustlib/src/rust/library/std/src/os/solaris/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/solid/ffi.rs +file:lib/rustlib/src/rust/library/std/src/os/solid/io.rs +file:lib/rustlib/src/rust/library/std/src/os/solid/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/trusty/io/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/trusty/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/uefi/env.rs +file:lib/rustlib/src/rust/library/std/src/os/uefi/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/unix/ffi/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/unix/ffi/os_str.rs +file:lib/rustlib/src/rust/library/std/src/os/unix/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/unix/fs/tests.rs +file:lib/rustlib/src/rust/library/std/src/os/unix/io/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/unix/io/tests.rs +file:lib/rustlib/src/rust/library/std/src/os/unix/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/unix/net/addr.rs +file:lib/rustlib/src/rust/library/std/src/os/unix/net/ancillary.rs +file:lib/rustlib/src/rust/library/std/src/os/unix/net/datagram.rs +file:lib/rustlib/src/rust/library/std/src/os/unix/net/listener.rs +file:lib/rustlib/src/rust/library/std/src/os/unix/net/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/unix/net/stream.rs +file:lib/rustlib/src/rust/library/std/src/os/unix/net/tests.rs +file:lib/rustlib/src/rust/library/std/src/os/unix/net/ucred.rs +file:lib/rustlib/src/rust/library/std/src/os/unix/net/ucred/tests.rs +file:lib/rustlib/src/rust/library/std/src/os/unix/process.rs +file:lib/rustlib/src/rust/library/std/src/os/unix/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/unix/thread.rs +file:lib/rustlib/src/rust/library/std/src/os/vita/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/vita/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/vita/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/vxworks/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/vxworks/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/vxworks/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/wasi/ffi.rs +file:lib/rustlib/src/rust/library/std/src/os/wasi/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/wasi/io/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/wasi/io/tests.rs +file:lib/rustlib/src/rust/library/std/src/os/wasi/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/wasi/net/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/wasip2/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/windows/ffi.rs +file:lib/rustlib/src/rust/library/std/src/os/windows/fs.rs +file:lib/rustlib/src/rust/library/std/src/os/windows/io/handle.rs +file:lib/rustlib/src/rust/library/std/src/os/windows/io/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/windows/io/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/windows/io/socket.rs +file:lib/rustlib/src/rust/library/std/src/os/windows/io/tests.rs +file:lib/rustlib/src/rust/library/std/src/os/windows/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/windows/net/addr.rs +file:lib/rustlib/src/rust/library/std/src/os/windows/net/listener.rs +file:lib/rustlib/src/rust/library/std/src/os/windows/net/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/windows/net/stream.rs +file:lib/rustlib/src/rust/library/std/src/os/windows/process.rs +file:lib/rustlib/src/rust/library/std/src/os/windows/raw.rs +file:lib/rustlib/src/rust/library/std/src/os/windows/thread.rs +file:lib/rustlib/src/rust/library/std/src/os/xous/ffi.rs +file:lib/rustlib/src/rust/library/std/src/os/xous/ffi/definitions.rs +file:lib/rustlib/src/rust/library/std/src/os/xous/ffi/definitions/memoryflags.rs +file:lib/rustlib/src/rust/library/std/src/os/xous/mod.rs +file:lib/rustlib/src/rust/library/std/src/os/xous/services.rs +file:lib/rustlib/src/rust/library/std/src/os/xous/services/dns.rs +file:lib/rustlib/src/rust/library/std/src/os/xous/services/log.rs +file:lib/rustlib/src/rust/library/std/src/os/xous/services/net.rs +file:lib/rustlib/src/rust/library/std/src/os/xous/services/systime.rs +file:lib/rustlib/src/rust/library/std/src/os/xous/services/ticktimer.rs +file:lib/rustlib/src/rust/library/std/src/panic.rs +file:lib/rustlib/src/rust/library/std/src/panicking.rs +file:lib/rustlib/src/rust/library/std/src/pat.rs +file:lib/rustlib/src/rust/library/std/src/path.rs +file:lib/rustlib/src/rust/library/std/src/prelude/mod.rs +file:lib/rustlib/src/rust/library/std/src/prelude/v1.rs +file:lib/rustlib/src/rust/library/std/src/process.rs +file:lib/rustlib/src/rust/library/std/src/process/tests.rs +file:lib/rustlib/src/rust/library/std/src/random.rs +file:lib/rustlib/src/rust/library/std/src/rt.rs +file:lib/rustlib/src/rust/library/std/src/sync/barrier.rs +file:lib/rustlib/src/rust/library/std/src/sync/lazy_lock.rs +file:lib/rustlib/src/rust/library/std/src/sync/mod.rs +file:lib/rustlib/src/rust/library/std/src/sync/mpmc/array.rs +file:lib/rustlib/src/rust/library/std/src/sync/mpmc/context.rs +file:lib/rustlib/src/rust/library/std/src/sync/mpmc/counter.rs +file:lib/rustlib/src/rust/library/std/src/sync/mpmc/error.rs +file:lib/rustlib/src/rust/library/std/src/sync/mpmc/list.rs +file:lib/rustlib/src/rust/library/std/src/sync/mpmc/mod.rs +file:lib/rustlib/src/rust/library/std/src/sync/mpmc/select.rs +file:lib/rustlib/src/rust/library/std/src/sync/mpmc/tests.rs +file:lib/rustlib/src/rust/library/std/src/sync/mpmc/utils.rs +file:lib/rustlib/src/rust/library/std/src/sync/mpmc/waker.rs +file:lib/rustlib/src/rust/library/std/src/sync/mpmc/zero.rs +file:lib/rustlib/src/rust/library/std/src/sync/mpsc.rs +file:lib/rustlib/src/rust/library/std/src/sync/nonpoison.rs +file:lib/rustlib/src/rust/library/std/src/sync/nonpoison/condvar.rs +file:lib/rustlib/src/rust/library/std/src/sync/nonpoison/mutex.rs +file:lib/rustlib/src/rust/library/std/src/sync/nonpoison/rwlock.rs +file:lib/rustlib/src/rust/library/std/src/sync/once.rs +file:lib/rustlib/src/rust/library/std/src/sync/once_lock.rs +file:lib/rustlib/src/rust/library/std/src/sync/oneshot.rs +file:lib/rustlib/src/rust/library/std/src/sync/poison.rs +file:lib/rustlib/src/rust/library/std/src/sync/poison/condvar.rs +file:lib/rustlib/src/rust/library/std/src/sync/poison/mutex.rs +file:lib/rustlib/src/rust/library/std/src/sync/poison/rwlock.rs +file:lib/rustlib/src/rust/library/std/src/sync/reentrant_lock.rs +file:lib/rustlib/src/rust/library/std/src/sys/alloc/hermit.rs +file:lib/rustlib/src/rust/library/std/src/sys/alloc/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/alloc/motor.rs +file:lib/rustlib/src/rust/library/std/src/sys/alloc/sgx.rs +file:lib/rustlib/src/rust/library/std/src/sys/alloc/solid.rs +file:lib/rustlib/src/rust/library/std/src/sys/alloc/uefi.rs +file:lib/rustlib/src/rust/library/std/src/sys/alloc/unix.rs +file:lib/rustlib/src/rust/library/std/src/sys/alloc/vexos.rs +file:lib/rustlib/src/rust/library/std/src/sys/alloc/wasm.rs +file:lib/rustlib/src/rust/library/std/src/sys/alloc/windows.rs +file:lib/rustlib/src/rust/library/std/src/sys/alloc/windows/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/alloc/xous.rs +file:lib/rustlib/src/rust/library/std/src/sys/alloc/zkvm.rs +file:lib/rustlib/src/rust/library/std/src/sys/args/common.rs +file:lib/rustlib/src/rust/library/std/src/sys/args/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/args/motor.rs +file:lib/rustlib/src/rust/library/std/src/sys/args/sgx.rs +file:lib/rustlib/src/rust/library/std/src/sys/args/uefi.rs +file:lib/rustlib/src/rust/library/std/src/sys/args/unix.rs +file:lib/rustlib/src/rust/library/std/src/sys/args/unsupported.rs +file:lib/rustlib/src/rust/library/std/src/sys/args/wasip1.rs +file:lib/rustlib/src/rust/library/std/src/sys/args/wasip2.rs +file:lib/rustlib/src/rust/library/std/src/sys/args/windows.rs +file:lib/rustlib/src/rust/library/std/src/sys/args/windows/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/args/xous.rs +file:lib/rustlib/src/rust/library/std/src/sys/args/zkvm.rs +file:lib/rustlib/src/rust/library/std/src/sys/backtrace.rs +file:lib/rustlib/src/rust/library/std/src/sys/cmath.rs +file:lib/rustlib/src/rust/library/std/src/sys/configure_builtins.rs +file:lib/rustlib/src/rust/library/std/src/sys/env/common.rs +file:lib/rustlib/src/rust/library/std/src/sys/env/hermit.rs +file:lib/rustlib/src/rust/library/std/src/sys/env/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/env/motor.rs +file:lib/rustlib/src/rust/library/std/src/sys/env/sgx.rs +file:lib/rustlib/src/rust/library/std/src/sys/env/solid.rs +file:lib/rustlib/src/rust/library/std/src/sys/env/uefi.rs +file:lib/rustlib/src/rust/library/std/src/sys/env/unix.rs +file:lib/rustlib/src/rust/library/std/src/sys/env/unsupported.rs +file:lib/rustlib/src/rust/library/std/src/sys/env/wasi.rs +file:lib/rustlib/src/rust/library/std/src/sys/env/windows.rs +file:lib/rustlib/src/rust/library/std/src/sys/env/xous.rs +file:lib/rustlib/src/rust/library/std/src/sys/env/zkvm.rs +file:lib/rustlib/src/rust/library/std/src/sys/env_consts.rs +file:lib/rustlib/src/rust/library/std/src/sys/exit.rs +file:lib/rustlib/src/rust/library/std/src/sys/fd/hermit.rs +file:lib/rustlib/src/rust/library/std/src/sys/fd/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/fd/motor.rs +file:lib/rustlib/src/rust/library/std/src/sys/fd/sgx.rs +file:lib/rustlib/src/rust/library/std/src/sys/fd/unix.rs +file:lib/rustlib/src/rust/library/std/src/sys/fd/unix/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/fs/common.rs +file:lib/rustlib/src/rust/library/std/src/sys/fs/hermit.rs +file:lib/rustlib/src/rust/library/std/src/sys/fs/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/fs/motor.rs +file:lib/rustlib/src/rust/library/std/src/sys/fs/solid.rs +file:lib/rustlib/src/rust/library/std/src/sys/fs/uefi.rs +file:lib/rustlib/src/rust/library/std/src/sys/fs/unix.rs +file:lib/rustlib/src/rust/library/std/src/sys/fs/unix/dir.rs +file:lib/rustlib/src/rust/library/std/src/sys/fs/unix/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/fs/unsupported.rs +file:lib/rustlib/src/rust/library/std/src/sys/fs/vexos.rs +file:lib/rustlib/src/rust/library/std/src/sys/fs/windows.rs +file:lib/rustlib/src/rust/library/std/src/sys/fs/windows/dir.rs +file:lib/rustlib/src/rust/library/std/src/sys/fs/windows/remove_dir_all.rs +file:lib/rustlib/src/rust/library/std/src/sys/helpers/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/helpers/small_c_string.rs +file:lib/rustlib/src/rust/library/std/src/sys/helpers/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/helpers/wstr.rs +file:lib/rustlib/src/rust/library/std/src/sys/io/error/generic.rs +file:lib/rustlib/src/rust/library/std/src/sys/io/error/hermit.rs +file:lib/rustlib/src/rust/library/std/src/sys/io/error/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/io/error/motor.rs +file:lib/rustlib/src/rust/library/std/src/sys/io/error/sgx.rs +file:lib/rustlib/src/rust/library/std/src/sys/io/error/solid.rs +file:lib/rustlib/src/rust/library/std/src/sys/io/error/teeos.rs +file:lib/rustlib/src/rust/library/std/src/sys/io/error/uefi.rs +file:lib/rustlib/src/rust/library/std/src/sys/io/error/unix.rs +file:lib/rustlib/src/rust/library/std/src/sys/io/error/wasi.rs +file:lib/rustlib/src/rust/library/std/src/sys/io/error/windows.rs +file:lib/rustlib/src/rust/library/std/src/sys/io/error/xous.rs +file:lib/rustlib/src/rust/library/std/src/sys/io/io_slice/iovec.rs +file:lib/rustlib/src/rust/library/std/src/sys/io/io_slice/uefi.rs +file:lib/rustlib/src/rust/library/std/src/sys/io/io_slice/unsupported.rs +file:lib/rustlib/src/rust/library/std/src/sys/io/io_slice/windows.rs +file:lib/rustlib/src/rust/library/std/src/sys/io/is_terminal/hermit.rs +file:lib/rustlib/src/rust/library/std/src/sys/io/is_terminal/isatty.rs +file:lib/rustlib/src/rust/library/std/src/sys/io/is_terminal/motor.rs +file:lib/rustlib/src/rust/library/std/src/sys/io/is_terminal/unsupported.rs +file:lib/rustlib/src/rust/library/std/src/sys/io/is_terminal/windows.rs +file:lib/rustlib/src/rust/library/std/src/sys/io/kernel_copy/linux.rs +file:lib/rustlib/src/rust/library/std/src/sys/io/kernel_copy/linux/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/io/kernel_copy/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/io/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/net/connection/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/net/connection/motor.rs +file:lib/rustlib/src/rust/library/std/src/sys/net/connection/sgx.rs +file:lib/rustlib/src/rust/library/std/src/sys/net/connection/socket/hermit.rs +file:lib/rustlib/src/rust/library/std/src/sys/net/connection/socket/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/net/connection/socket/solid.rs +file:lib/rustlib/src/rust/library/std/src/sys/net/connection/socket/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/net/connection/socket/unix.rs +file:lib/rustlib/src/rust/library/std/src/sys/net/connection/socket/windows.rs +file:lib/rustlib/src/rust/library/std/src/sys/net/connection/uefi/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/net/connection/uefi/tcp.rs +file:lib/rustlib/src/rust/library/std/src/sys/net/connection/uefi/tcp4.rs +file:lib/rustlib/src/rust/library/std/src/sys/net/connection/unsupported.rs +file:lib/rustlib/src/rust/library/std/src/sys/net/connection/wasip1.rs +file:lib/rustlib/src/rust/library/std/src/sys/net/connection/xous/dns.rs +file:lib/rustlib/src/rust/library/std/src/sys/net/connection/xous/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/net/connection/xous/tcplistener.rs +file:lib/rustlib/src/rust/library/std/src/sys/net/connection/xous/tcpstream.rs +file:lib/rustlib/src/rust/library/std/src/sys/net/connection/xous/udp.rs +file:lib/rustlib/src/rust/library/std/src/sys/net/hostname/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/net/hostname/unix.rs +file:lib/rustlib/src/rust/library/std/src/sys/net/hostname/unsupported.rs +file:lib/rustlib/src/rust/library/std/src/sys/net/hostname/windows.rs +file:lib/rustlib/src/rust/library/std/src/sys/net/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/os_str/bytes.rs +file:lib/rustlib/src/rust/library/std/src/sys/os_str/bytes/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/os_str/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/os_str/utf8.rs +file:lib/rustlib/src/rust/library/std/src/sys/os_str/wtf8.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/hermit/futex.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/hermit/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/hermit/os.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/hermit/time.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/itron/abi.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/itron/error.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/itron/spin.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/itron/task.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/itron/thread_parking.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/itron/time.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/itron/time/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/motor/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/motor/os.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/sgx/abi/entry.S +file:lib/rustlib/src/rust/library/std/src/sys/pal/sgx/abi/mem.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/sgx/abi/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/sgx/abi/panic.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/sgx/abi/reloc.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/sgx/abi/thread.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/sgx/abi/tls/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/sgx/abi/tls/sync_bitset.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/sgx/abi/tls/sync_bitset/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/sgx/abi/usercalls/alloc.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/sgx/abi/usercalls/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/sgx/abi/usercalls/raw.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/sgx/abi/usercalls/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/sgx/libunwind_integration.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/sgx/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/sgx/os.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/sgx/thread_parking.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/sgx/waitqueue/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/sgx/waitqueue/spin_mutex.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/sgx/waitqueue/spin_mutex/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/sgx/waitqueue/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/sgx/waitqueue/unsafe_list.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/sgx/waitqueue/unsafe_list/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/solid/abi/fs.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/solid/abi/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/solid/abi/sockets.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/solid/error.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/solid/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/solid/os.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/teeos/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/teeos/os.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/trusty/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/uefi/helpers.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/uefi/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/uefi/os.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/uefi/system_time.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/uefi/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/unix/fuchsia.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/unix/futex.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/unix/linux/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/unix/linux/pidfd.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/unix/linux/pidfd/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/unix/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/unix/os.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/unix/os/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/unix/stack_overflow.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/unix/stack_overflow/thread_info.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/unix/sync/condvar.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/unix/sync/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/unix/sync/mutex.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/unix/thread_parking.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/unix/time.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/unix/weak/dlsym.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/unix/weak/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/unix/weak/syscall.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/unix/weak/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/unix/weak/weak_linkage.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/unsupported/common.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/unsupported/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/unsupported/os.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/vexos/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/wasi/cabi_realloc.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/wasi/helpers.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/wasi/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/wasi/os.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/wasi/stack_overflow.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/wasm/atomics/futex.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/wasm/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/windows/api.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/windows/api/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/windows/c.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/windows/c/README.md +file:lib/rustlib/src/rust/library/std/src/sys/pal/windows/c/bindings.txt +file:lib/rustlib/src/rust/library/std/src/sys/pal/windows/c/windows_sys.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/windows/compat.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/windows/futex.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/windows/handle.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/windows/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/windows/os.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/windows/os/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/windows/stack_overflow.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/windows/stack_overflow_uwp.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/windows/time.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/windows/winsock.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/xous/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/xous/os.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/xous/os/params.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/xous/os/params/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/zkvm/abi.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/zkvm/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/pal/zkvm/os.rs +file:lib/rustlib/src/rust/library/std/src/sys/path/cygwin.rs +file:lib/rustlib/src/rust/library/std/src/sys/path/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/path/sgx.rs +file:lib/rustlib/src/rust/library/std/src/sys/path/uefi.rs +file:lib/rustlib/src/rust/library/std/src/sys/path/unix.rs +file:lib/rustlib/src/rust/library/std/src/sys/path/unsupported_backslash.rs +file:lib/rustlib/src/rust/library/std/src/sys/path/windows.rs +file:lib/rustlib/src/rust/library/std/src/sys/path/windows/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/path/windows_prefix.rs +file:lib/rustlib/src/rust/library/std/src/sys/personality/dwarf/eh.rs +file:lib/rustlib/src/rust/library/std/src/sys/personality/dwarf/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/personality/dwarf/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/personality/emcc.rs +file:lib/rustlib/src/rust/library/std/src/sys/personality/gcc.rs +file:lib/rustlib/src/rust/library/std/src/sys/personality/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/pipe/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/pipe/motor.rs +file:lib/rustlib/src/rust/library/std/src/sys/pipe/unix.rs +file:lib/rustlib/src/rust/library/std/src/sys/pipe/unsupported.rs +file:lib/rustlib/src/rust/library/std/src/sys/pipe/windows.rs +file:lib/rustlib/src/rust/library/std/src/sys/platform_version/darwin/core_foundation.rs +file:lib/rustlib/src/rust/library/std/src/sys/platform_version/darwin/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/platform_version/darwin/public_extern.rs +file:lib/rustlib/src/rust/library/std/src/sys/platform_version/darwin/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/platform_version/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/process/env.rs +file:lib/rustlib/src/rust/library/std/src/sys/process/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/process/motor.rs +file:lib/rustlib/src/rust/library/std/src/sys/process/uefi.rs +file:lib/rustlib/src/rust/library/std/src/sys/process/unix/common.rs +file:lib/rustlib/src/rust/library/std/src/sys/process/unix/common/cstring_array.rs +file:lib/rustlib/src/rust/library/std/src/sys/process/unix/common/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/process/unix/fuchsia.rs +file:lib/rustlib/src/rust/library/std/src/sys/process/unix/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/process/unix/unix.rs +file:lib/rustlib/src/rust/library/std/src/sys/process/unix/unix/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/process/unix/unsupported.rs +file:lib/rustlib/src/rust/library/std/src/sys/process/unix/unsupported/wait_status.rs +file:lib/rustlib/src/rust/library/std/src/sys/process/unix/unsupported/wait_status/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/process/unix/vxworks.rs +file:lib/rustlib/src/rust/library/std/src/sys/process/unsupported.rs +file:lib/rustlib/src/rust/library/std/src/sys/process/windows.rs +file:lib/rustlib/src/rust/library/std/src/sys/process/windows/child_pipe.rs +file:lib/rustlib/src/rust/library/std/src/sys/process/windows/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/random/apple.rs +file:lib/rustlib/src/rust/library/std/src/sys/random/arc4random.rs +file:lib/rustlib/src/rust/library/std/src/sys/random/espidf.rs +file:lib/rustlib/src/rust/library/std/src/sys/random/fuchsia.rs +file:lib/rustlib/src/rust/library/std/src/sys/random/getentropy.rs +file:lib/rustlib/src/rust/library/std/src/sys/random/getrandom.rs +file:lib/rustlib/src/rust/library/std/src/sys/random/hermit.rs +file:lib/rustlib/src/rust/library/std/src/sys/random/linux.rs +file:lib/rustlib/src/rust/library/std/src/sys/random/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/random/motor.rs +file:lib/rustlib/src/rust/library/std/src/sys/random/redox.rs +file:lib/rustlib/src/rust/library/std/src/sys/random/sgx.rs +file:lib/rustlib/src/rust/library/std/src/sys/random/solid.rs +file:lib/rustlib/src/rust/library/std/src/sys/random/teeos.rs +file:lib/rustlib/src/rust/library/std/src/sys/random/trusty.rs +file:lib/rustlib/src/rust/library/std/src/sys/random/uefi.rs +file:lib/rustlib/src/rust/library/std/src/sys/random/unix_legacy.rs +file:lib/rustlib/src/rust/library/std/src/sys/random/unsupported.rs +file:lib/rustlib/src/rust/library/std/src/sys/random/vxworks.rs +file:lib/rustlib/src/rust/library/std/src/sys/random/wasip1.rs +file:lib/rustlib/src/rust/library/std/src/sys/random/wasip2.rs +file:lib/rustlib/src/rust/library/std/src/sys/random/windows.rs +file:lib/rustlib/src/rust/library/std/src/sys/random/zkvm.rs +file:lib/rustlib/src/rust/library/std/src/sys/stdio/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/stdio/motor.rs +file:lib/rustlib/src/rust/library/std/src/sys/stdio/sgx.rs +file:lib/rustlib/src/rust/library/std/src/sys/stdio/solid.rs +file:lib/rustlib/src/rust/library/std/src/sys/stdio/teeos.rs +file:lib/rustlib/src/rust/library/std/src/sys/stdio/trusty.rs +file:lib/rustlib/src/rust/library/std/src/sys/stdio/uefi.rs +file:lib/rustlib/src/rust/library/std/src/sys/stdio/unix.rs +file:lib/rustlib/src/rust/library/std/src/sys/stdio/unsupported.rs +file:lib/rustlib/src/rust/library/std/src/sys/stdio/vexos.rs +file:lib/rustlib/src/rust/library/std/src/sys/stdio/windows.rs +file:lib/rustlib/src/rust/library/std/src/sys/stdio/windows/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/stdio/xous.rs +file:lib/rustlib/src/rust/library/std/src/sys/stdio/zkvm.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/condvar/futex.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/condvar/itron.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/condvar/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/condvar/no_threads.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/condvar/pthread.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/condvar/sgx.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/condvar/windows7.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/condvar/xous.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/mutex/fuchsia.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/mutex/futex.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/mutex/itron.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/mutex/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/mutex/no_threads.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/mutex/pthread.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/mutex/sgx.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/mutex/windows7.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/mutex/xous.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/once/futex.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/once/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/once/no_threads.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/once/queue.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/once_box.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/rwlock/futex.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/rwlock/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/rwlock/no_threads.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/rwlock/queue.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/rwlock/solid.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/thread_parking/darwin.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/thread_parking/futex.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/thread_parking/id.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/thread_parking/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/thread_parking/pthread.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/thread_parking/unsupported.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/thread_parking/windows7.rs +file:lib/rustlib/src/rust/library/std/src/sys/sync/thread_parking/xous.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread/hermit.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread/motor.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread/sgx.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread/solid.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread/teeos.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread/uefi.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread/unix.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread/unsupported.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread/vexos.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread/wasm.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread/windows.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread/xous.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread_local/destructors/linux_like.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread_local/destructors/list.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread_local/guard/apple.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread_local/guard/key.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread_local/guard/solid.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread_local/guard/windows.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread_local/key/racy.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread_local/key/sgx.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread_local/key/tests.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread_local/key/unix.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread_local/key/windows.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread_local/key/xous.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread_local/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread_local/native/eager.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread_local/native/lazy.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread_local/native/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread_local/no_threads.rs +file:lib/rustlib/src/rust/library/std/src/sys/thread_local/os.rs +file:lib/rustlib/src/rust/library/std/src/sys/time/hermit.rs +file:lib/rustlib/src/rust/library/std/src/sys/time/mod.rs +file:lib/rustlib/src/rust/library/std/src/sys/time/sgx.rs +file:lib/rustlib/src/rust/library/std/src/sys/time/solid.rs +file:lib/rustlib/src/rust/library/std/src/sys/time/uefi.rs +file:lib/rustlib/src/rust/library/std/src/sys/time/unix.rs +file:lib/rustlib/src/rust/library/std/src/sys/time/unsupported.rs +file:lib/rustlib/src/rust/library/std/src/sys/time/vexos.rs +file:lib/rustlib/src/rust/library/std/src/sys/time/windows.rs +file:lib/rustlib/src/rust/library/std/src/sys/time/xous.rs +file:lib/rustlib/src/rust/library/std/src/test_helpers.rs +file:lib/rustlib/src/rust/library/std/src/thread/builder.rs +file:lib/rustlib/src/rust/library/std/src/thread/current.rs +file:lib/rustlib/src/rust/library/std/src/thread/functions.rs +file:lib/rustlib/src/rust/library/std/src/thread/id.rs +file:lib/rustlib/src/rust/library/std/src/thread/join_handle.rs +file:lib/rustlib/src/rust/library/std/src/thread/lifecycle.rs +file:lib/rustlib/src/rust/library/std/src/thread/local.rs +file:lib/rustlib/src/rust/library/std/src/thread/main_thread.rs +file:lib/rustlib/src/rust/library/std/src/thread/mod.rs +file:lib/rustlib/src/rust/library/std/src/thread/scoped.rs +file:lib/rustlib/src/rust/library/std/src/thread/spawnhook.rs +file:lib/rustlib/src/rust/library/std/src/thread/tests.rs +file:lib/rustlib/src/rust/library/std/src/thread/thread.rs +file:lib/rustlib/src/rust/library/std/src/time.rs +file:lib/rustlib/src/rust/library/std/tests/ambiguous-hash_map.rs +file:lib/rustlib/src/rust/library/std/tests/builtin-clone.rs +file:lib/rustlib/src/rust/library/std/tests/common/mod.rs +file:lib/rustlib/src/rust/library/std/tests/create_dir_all_bare.rs +file:lib/rustlib/src/rust/library/std/tests/env.rs +file:lib/rustlib/src/rust/library/std/tests/env_modify.rs +file:lib/rustlib/src/rust/library/std/tests/eq-multidispatch.rs +file:lib/rustlib/src/rust/library/std/tests/error.rs +file:lib/rustlib/src/rust/library/std/tests/istr.rs +file:lib/rustlib/src/rust/library/std/tests/log-knows-the-names-of-variants-in-std.rs +file:lib/rustlib/src/rust/library/std/tests/minmax-stability-issue-23687.rs +file:lib/rustlib/src/rust/library/std/tests/num.rs +file:lib/rustlib/src/rust/library/std/tests/panic.rs +file:lib/rustlib/src/rust/library/std/tests/path.rs +file:lib/rustlib/src/rust/library/std/tests/pipe_subprocess.rs +file:lib/rustlib/src/rust/library/std/tests/process_spawning.rs +file:lib/rustlib/src/rust/library/std/tests/run-time-detect.rs +file:lib/rustlib/src/rust/library/std/tests/seq-compare.rs +file:lib/rustlib/src/rust/library/std/tests/slice-from-array-issue-113238.rs +file:lib/rustlib/src/rust/library/std/tests/switch-stdout.rs +file:lib/rustlib/src/rust/library/std/tests/sync/barrier.rs +file:lib/rustlib/src/rust/library/std/tests/sync/condvar.rs +file:lib/rustlib/src/rust/library/std/tests/sync/lazy_lock.rs +file:lib/rustlib/src/rust/library/std/tests/sync/lib.rs +file:lib/rustlib/src/rust/library/std/tests/sync/mpmc.rs +file:lib/rustlib/src/rust/library/std/tests/sync/mpsc.rs +file:lib/rustlib/src/rust/library/std/tests/sync/mpsc_sync.rs +file:lib/rustlib/src/rust/library/std/tests/sync/mutex.rs +file:lib/rustlib/src/rust/library/std/tests/sync/once.rs +file:lib/rustlib/src/rust/library/std/tests/sync/once_lock.rs +file:lib/rustlib/src/rust/library/std/tests/sync/oneshot.rs +file:lib/rustlib/src/rust/library/std/tests/sync/reentrant_lock.rs +file:lib/rustlib/src/rust/library/std/tests/sync/rwlock.rs +file:lib/rustlib/src/rust/library/std/tests/thread.rs +file:lib/rustlib/src/rust/library/std/tests/thread_local/dynamic_tests.rs +file:lib/rustlib/src/rust/library/std/tests/thread_local/lib.rs +file:lib/rustlib/src/rust/library/std/tests/thread_local/tests.rs +file:lib/rustlib/src/rust/library/std/tests/time.rs +file:lib/rustlib/src/rust/library/std/tests/type-name-unsized.rs +file:lib/rustlib/src/rust/library/std/tests/volatile-fat-ptr.rs +file:lib/rustlib/src/rust/library/std/tests/win_delete_self.rs +file:lib/rustlib/src/rust/library/std/tests/windows.rs +file:lib/rustlib/src/rust/library/std/tests/windows_unix_socket.rs +file:lib/rustlib/src/rust/library/std_detect/Cargo.toml +file:lib/rustlib/src/rust/library/std_detect/README.md +file:lib/rustlib/src/rust/library/std_detect/src/detect/arch/aarch64.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/arch/arm.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/arch/loongarch.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/arch/mips.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/arch/mips64.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/arch/mod.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/arch/powerpc.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/arch/powerpc64.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/arch/riscv.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/arch/s390x.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/arch/x86.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/bit.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/cache.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/macros.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/mod.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/aarch64.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/darwin/aarch64.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/freebsd/aarch64.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/freebsd/arm.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/freebsd/auxvec.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/freebsd/mod.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/freebsd/powerpc.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/linux/aarch64.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/linux/aarch64/tests.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/linux/arm.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/linux/auxvec.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/linux/auxvec/tests.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/linux/loongarch.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/linux/mips.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/linux/mod.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/linux/powerpc.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/linux/riscv.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/linux/s390x.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/openbsd/aarch64.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/openbsd/auxvec.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/openbsd/mod.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/openbsd/powerpc.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/other.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/riscv.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/riscv/tests.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/windows/aarch64.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/os/x86.rs +file:lib/rustlib/src/rust/library/std_detect/src/detect/test_data/linux-artificial-aarch64.auxv +file:lib/rustlib/src/rust/library/std_detect/src/detect/test_data/linux-empty-hwcap2-aarch64.auxv +file:lib/rustlib/src/rust/library/std_detect/src/detect/test_data/linux-hwcap2-aarch64.auxv +file:lib/rustlib/src/rust/library/std_detect/src/detect/test_data/linux-no-hwcap2-aarch64.auxv +file:lib/rustlib/src/rust/library/std_detect/src/detect/test_data/linux-rpi3.auxv +file:lib/rustlib/src/rust/library/std_detect/src/detect/test_data/macos-virtualbox-linux-x86-4850HQ.auxv +file:lib/rustlib/src/rust/library/std_detect/src/lib.rs +file:lib/rustlib/src/rust/library/std_detect/tests/cpu-detection.rs +file:lib/rustlib/src/rust/library/std_detect/tests/macro_trailing_commas.rs +file:lib/rustlib/src/rust/library/std_detect/tests/x86-specific.rs +file:lib/rustlib/src/rust/library/stdarch/.git-blame-ignore-revs +file:lib/rustlib/src/rust/library/stdarch/.github/workflows/main.yml +file:lib/rustlib/src/rust/library/stdarch/.github/workflows/rustc-pull.yml +file:lib/rustlib/src/rust/library/stdarch/CONTRIBUTING.md +file:lib/rustlib/src/rust/library/stdarch/Cargo.lock +file:lib/rustlib/src/rust/library/stdarch/LICENSE-APACHE +file:lib/rustlib/src/rust/library/stdarch/LICENSE-MIT +file:lib/rustlib/src/rust/library/stdarch/README.md +file:lib/rustlib/src/rust/library/stdarch/ci/docker/aarch64-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/stdarch/ci/docker/aarch64_be-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/stdarch/ci/docker/amdgcn-amd-amdhsa/Dockerfile +file:lib/rustlib/src/rust/library/stdarch/ci/docker/arm-unknown-linux-gnueabihf/Dockerfile +file:lib/rustlib/src/rust/library/stdarch/ci/docker/armv7-unknown-linux-gnueabihf/Dockerfile +file:lib/rustlib/src/rust/library/stdarch/ci/docker/hexagon-unknown-linux-musl/Dockerfile +file:lib/rustlib/src/rust/library/stdarch/ci/docker/i586-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/stdarch/ci/docker/i686-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/stdarch/ci/docker/loongarch64-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/stdarch/ci/docker/mips-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/stdarch/ci/docker/mips64-unknown-linux-gnuabi64/Dockerfile +file:lib/rustlib/src/rust/library/stdarch/ci/docker/mips64el-unknown-linux-gnuabi64/Dockerfile +file:lib/rustlib/src/rust/library/stdarch/ci/docker/mipsel-unknown-linux-musl/Dockerfile +file:lib/rustlib/src/rust/library/stdarch/ci/docker/nvptx64-nvidia-cuda/Dockerfile +file:lib/rustlib/src/rust/library/stdarch/ci/docker/powerpc-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/stdarch/ci/docker/powerpc64-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/stdarch/ci/docker/powerpc64le-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/stdarch/ci/docker/riscv32gc-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/stdarch/ci/docker/riscv64gc-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/stdarch/ci/docker/s390x-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/stdarch/ci/docker/wasm32-wasip1/Dockerfile +file:lib/rustlib/src/rust/library/stdarch/ci/docker/x86_64-unknown-linux-gnu/Dockerfile +file:lib/rustlib/src/rust/library/stdarch/ci/docker/x86_64-unknown-linux-gnu/cpuid.def +file:lib/rustlib/src/rust/library/stdarch/ci/dox.sh +file:lib/rustlib/src/rust/library/stdarch/ci/intrinsic-test-docker.sh +file:lib/rustlib/src/rust/library/stdarch/ci/intrinsic-test.sh +file:lib/rustlib/src/rust/library/stdarch/ci/run-docker.sh +file:lib/rustlib/src/rust/library/stdarch/ci/run.sh +file:lib/rustlib/src/rust/library/stdarch/ci/style.sh +file:lib/rustlib/src/rust/library/stdarch/crates/assert-instr-macro/Cargo.toml +file:lib/rustlib/src/rust/library/stdarch/crates/assert-instr-macro/build.rs +file:lib/rustlib/src/rust/library/stdarch/crates/assert-instr-macro/src/lib.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/Cargo.toml +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/LICENSE-APACHE +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/LICENSE-MIT +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/MISSING.md +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/README.md +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/missing-x86.md +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/rustfmt.toml +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/aarch64/mod.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/aarch64/mte.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/aarch64/neon/generated.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/aarch64/neon/mod.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/aarch64/prefetch.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/aarch64/test_support.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/amdgpu/mod.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/arm/dsp.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/arm/mod.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/arm/neon.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/arm/sat.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/arm/simd32.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/arm_shared/barrier/common.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/arm_shared/barrier/cp15.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/arm_shared/barrier/mod.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/arm_shared/barrier/not_mclass.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/arm_shared/barrier/v8.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/arm_shared/hints.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/arm_shared/mod.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/arm_shared/neon/generated.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/arm_shared/neon/load_tests.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/arm_shared/neon/mod.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/arm_shared/neon/shift_and_insert_tests.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/arm_shared/neon/store_tests.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/arm_shared/neon/table_lookup_tests.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/arm_shared/test_support.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/core_arch_docs.md +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/hexagon/mod.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/hexagon/v128.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/hexagon/v64.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/lib.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/loongarch32/mod.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/loongarch64/lasx/generated.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/loongarch64/lasx/mod.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/loongarch64/lasx/tests.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/loongarch64/lasx/types.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/loongarch64/lsx/generated.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/loongarch64/lsx/mod.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/loongarch64/lsx/tests.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/loongarch64/lsx/types.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/loongarch64/mod.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/loongarch_shared/mod.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/macros.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/mips/mod.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/mips/msa.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/mod.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/nvptx/mod.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/nvptx/packed.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/powerpc/altivec.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/powerpc/macros.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/powerpc/mod.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/powerpc/vsx.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/powerpc64/mod.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/powerpc64/vsx.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/riscv32/mod.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/riscv32/zk.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/riscv64/mod.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/riscv64/zk.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/riscv_shared/mod.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/riscv_shared/p.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/riscv_shared/zb.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/riscv_shared/zk.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/s390x/macros.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/s390x/mod.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/s390x/vector.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/simd.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/test.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/wasm32/atomic.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/wasm32/memory.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/wasm32/mod.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/wasm32/relaxed_simd.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/wasm32/simd128.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/abm.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/adx.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/aes.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/avx.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/avx2.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/avx512bf16.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/avx512bitalg.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/avx512bw.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/avx512cd.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/avx512dq.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/avx512f.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/avx512fp16.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/avx512ifma.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/avx512vbmi.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/avx512vbmi2.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/avx512vnni.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/avx512vpopcntdq.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/avxneconvert.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/bmi1.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/bmi2.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/bswap.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/bt.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/cpuid.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/eflags.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/f16c.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/fma.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/fxsr.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/gfni.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/kl.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/macros.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/mod.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/pclmulqdq.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/rdrand.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/rdtsc.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/rtm.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/sha.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/sse.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/sse2.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/sse3.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/sse41.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/sse42.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/sse4a.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/ssse3.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/tbm.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/test.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/vaes.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/vpclmulqdq.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86/xsave.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86_64/abm.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86_64/adx.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86_64/amx.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86_64/avx.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86_64/avx512bw.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86_64/avx512f.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86_64/avx512fp16.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86_64/bmi.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86_64/bmi2.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86_64/bswap.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86_64/bt.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86_64/cmpxchg16b.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86_64/fxsr.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86_64/macros.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86_64/mod.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86_64/rdrand.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86_64/sse.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86_64/sse2.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86_64/sse41.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86_64/sse42.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86_64/tbm.rs +file:lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/x86_64/xsave.rs +file:lib/rustlib/src/rust/library/stdarch/crates/simd-test-macro/Cargo.toml +file:lib/rustlib/src/rust/library/stdarch/crates/simd-test-macro/src/lib.rs +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-arm/Cargo.toml +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-arm/README.md +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-arm/spec/neon/aarch64.spec.yml +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-arm/spec/neon/arm_shared.spec.yml +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-arm/src/assert_instr.rs +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-arm/src/big_endian.rs +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-arm/src/context.rs +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-arm/src/expression.rs +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-arm/src/fn_suffix.rs +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-arm/src/input.rs +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-arm/src/intrinsic.rs +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-arm/src/load_store_tests.rs +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-arm/src/main.rs +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-arm/src/matching.rs +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-arm/src/predicate_forms.rs +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-arm/src/typekinds.rs +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-arm/src/wildcards.rs +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-arm/src/wildstring.rs +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-hexagon/Cargo.toml +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-hexagon/hvx_hexagon_protos.h +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-hexagon/src/main.rs +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-loongarch/Cargo.toml +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-loongarch/README.md +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-loongarch/lasx.spec +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-loongarch/lasxintrin.h +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-loongarch/lsx.spec +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-loongarch/lsxintrin.h +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-gen-loongarch/src/main.rs +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-test/Cargo.toml +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-test/src/disassembly.rs +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-test/src/lib.rs +file:lib/rustlib/src/rust/library/stdarch/crates/stdarch-test/src/wasm.rs +file:lib/rustlib/src/rust/library/stdarch/examples/Cargo.toml +file:lib/rustlib/src/rust/library/stdarch/examples/connect5.rs +file:lib/rustlib/src/rust/library/stdarch/examples/gaussian.rs +file:lib/rustlib/src/rust/library/stdarch/examples/hex.rs +file:lib/rustlib/src/rust/library/stdarch/examples/wasm.rs +file:lib/rustlib/src/rust/library/stdarch/intrinsics_data/arm_intrinsics.json +file:lib/rustlib/src/rust/library/stdarch/intrinsics_data/x86-intel.xml +file:lib/rustlib/src/rust/library/stdarch/josh-sync.toml +file:lib/rustlib/src/rust/library/stdarch/rust-version +file:lib/rustlib/src/rust/library/stdarch/rustfmt.toml +file:lib/rustlib/src/rust/library/stdarch/triagebot.toml +file:lib/rustlib/src/rust/library/stdarch/vendor.yml +file:lib/rustlib/src/rust/library/sysroot/Cargo.toml +file:lib/rustlib/src/rust/library/sysroot/src/lib.rs +file:lib/rustlib/src/rust/library/test/Cargo.toml +file:lib/rustlib/src/rust/library/test/build.rs +file:lib/rustlib/src/rust/library/test/src/bench.rs +file:lib/rustlib/src/rust/library/test/src/cli.rs +file:lib/rustlib/src/rust/library/test/src/console.rs +file:lib/rustlib/src/rust/library/test/src/event.rs +file:lib/rustlib/src/rust/library/test/src/formatters/json.rs +file:lib/rustlib/src/rust/library/test/src/formatters/junit.rs +file:lib/rustlib/src/rust/library/test/src/formatters/mod.rs +file:lib/rustlib/src/rust/library/test/src/formatters/pretty.rs +file:lib/rustlib/src/rust/library/test/src/formatters/terse.rs +file:lib/rustlib/src/rust/library/test/src/helpers/concurrency.rs +file:lib/rustlib/src/rust/library/test/src/helpers/metrics.rs +file:lib/rustlib/src/rust/library/test/src/helpers/mod.rs +file:lib/rustlib/src/rust/library/test/src/helpers/shuffle.rs +file:lib/rustlib/src/rust/library/test/src/lib.rs +file:lib/rustlib/src/rust/library/test/src/options.rs +file:lib/rustlib/src/rust/library/test/src/stats.rs +file:lib/rustlib/src/rust/library/test/src/stats/tests.rs +file:lib/rustlib/src/rust/library/test/src/term.rs +file:lib/rustlib/src/rust/library/test/src/term/terminfo/mod.rs +file:lib/rustlib/src/rust/library/test/src/term/terminfo/parm.rs +file:lib/rustlib/src/rust/library/test/src/term/terminfo/parm/tests.rs +file:lib/rustlib/src/rust/library/test/src/term/terminfo/parser/compiled.rs +file:lib/rustlib/src/rust/library/test/src/term/terminfo/parser/compiled/tests.rs +file:lib/rustlib/src/rust/library/test/src/term/terminfo/searcher.rs +file:lib/rustlib/src/rust/library/test/src/term/terminfo/searcher/tests.rs +file:lib/rustlib/src/rust/library/test/src/term/win.rs +file:lib/rustlib/src/rust/library/test/src/test_result.rs +file:lib/rustlib/src/rust/library/test/src/tests.rs +file:lib/rustlib/src/rust/library/test/src/time.rs +file:lib/rustlib/src/rust/library/test/src/types.rs +file:lib/rustlib/src/rust/library/unwind/Cargo.toml +file:lib/rustlib/src/rust/library/unwind/src/lib.rs +file:lib/rustlib/src/rust/library/unwind/src/libunwind.rs +file:lib/rustlib/src/rust/library/unwind/src/unwinding.rs +file:lib/rustlib/src/rust/library/unwind/src/wasm.rs +file:lib/rustlib/src/rust/library/windows_link/Cargo.toml +file:lib/rustlib/src/rust/library/windows_link/src/lib.rs +file:lib/rustlib/src/rust/src/llvm-project/libunwind/.clang-format +file:lib/rustlib/src/rust/src/llvm-project/libunwind/CMakeLists.txt +file:lib/rustlib/src/rust/src/llvm-project/libunwind/LICENSE.TXT +file:lib/rustlib/src/rust/src/llvm-project/libunwind/README_RUST_SGX.md +file:lib/rustlib/src/rust/src/llvm-project/libunwind/cmake/Modules/HandleLibunwindFlags.cmake +file:lib/rustlib/src/rust/src/llvm-project/libunwind/cmake/config-ix.cmake +file:lib/rustlib/src/rust/src/llvm-project/libunwind/docs/BuildingLibunwind.rst +file:lib/rustlib/src/rust/src/llvm-project/libunwind/docs/CMakeLists.txt +file:lib/rustlib/src/rust/src/llvm-project/libunwind/docs/README.txt +file:lib/rustlib/src/rust/src/llvm-project/libunwind/docs/conf.py +file:lib/rustlib/src/rust/src/llvm-project/libunwind/docs/index.rst +file:lib/rustlib/src/rust/src/llvm-project/libunwind/include/CMakeLists.txt +file:lib/rustlib/src/rust/src/llvm-project/libunwind/include/__libunwind_config.h +file:lib/rustlib/src/rust/src/llvm-project/libunwind/include/libunwind.h +file:lib/rustlib/src/rust/src/llvm-project/libunwind/include/libunwind.modulemap +file:lib/rustlib/src/rust/src/llvm-project/libunwind/include/mach-o/compact_unwind_encoding.h +file:lib/rustlib/src/rust/src/llvm-project/libunwind/include/unwind.h +file:lib/rustlib/src/rust/src/llvm-project/libunwind/include/unwind_arm_ehabi.h +file:lib/rustlib/src/rust/src/llvm-project/libunwind/include/unwind_itanium.h +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/AddressSpace.hpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/CMakeLists.txt +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/CompactUnwinder.hpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/DwarfInstructions.hpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/DwarfParser.hpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/EHHeaderParser.hpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/FrameHeaderCache.hpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/RWMutex.hpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/Registers.hpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/Unwind-EHABI.cpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/Unwind-EHABI.h +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/Unwind-seh.cpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/Unwind-sjlj.c +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/Unwind-wasm.c +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/UnwindCursor.hpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/UnwindLevel1-gcc-ext.c +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/UnwindLevel1.c +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/UnwindRegistersRestore.S +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/UnwindRegistersSave.S +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/UnwindRustSgx.c +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/UnwindRustSgx.h +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/Unwind_AIXExtras.cpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/assembly.h +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/config.h +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/dwarf2.h +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/libunwind.cpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/libunwind_ext.h +file:lib/rustlib/src/rust/src/llvm-project/libunwind/src/shadow_stack_unwind.h +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/CMakeLists.txt +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/aarch64_vg_unwind.pass.cpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/aarch64_za_unwind.pass.cpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/aix_runtime_link.pass.cpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/aix_signal_unwind.pass.sh.S +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/alignment.compile.pass.cpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/bad_unwind_info.pass.cpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/configs/apple-libunwind-system.cfg.in +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/configs/armv7m-picolibc-libunwind.cfg.in +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/configs/cmake-bridge.cfg.in +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/configs/ibm-libunwind-shared.cfg.in +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/configs/llvm-libunwind-merged.cfg.in +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/configs/llvm-libunwind-shared-mingw.cfg.in +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/configs/llvm-libunwind-shared.cfg.in +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/configs/llvm-libunwind-static-mingw.cfg.in +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/configs/llvm-libunwind-static.cfg.in +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/eh_frame_fde_pc_range.pass.cpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/floatregister.pass.cpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/forceunwind.pass.cpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/frameheadercache_test.pass.cpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/libunwind_01.pass.cpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/libunwind_02.pass.cpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/lit.cfg.py +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/remember_state_leak.pass.sh.s +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/signal_frame.pass.cpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/signal_unwind.pass.cpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/unw_getcontext.pass.cpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/unw_resume.pass.cpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/unwind_leaffunction.pass.cpp +file:lib/rustlib/src/rust/src/llvm-project/libunwind/test/unwind_scalable_vectors.pass.cpp diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/manifest-rust-std-x86_64-pc-windows-msvc b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/manifest-rust-std-x86_64-pc-windows-msvc new file mode 100644 index 0000000000000000000000000000000000000000..61656b0a1b03314cdecdb81d28a04175360661e8 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/manifest-rust-std-x86_64-pc-windows-msvc @@ -0,0 +1,45 @@ +file:lib/rustlib/x86_64-pc-windows-msvc/lib/liballoc-778893609386d885.rlib +file:lib/rustlib/x86_64-pc-windows-msvc/lib/liballoc-778893609386d885.rmeta +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libcfg_if-66ccf9e220034f42.rlib +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libcfg_if-66ccf9e220034f42.rmeta +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libcompiler_builtins-c5c18940a57badd0.rlib +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libcompiler_builtins-c5c18940a57badd0.rmeta +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libcore-7c4a4c66f69609a4.rlib +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libcore-7c4a4c66f69609a4.rmeta +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libgetopts-b5eee3599c71b40b.rlib +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libgetopts-b5eee3599c71b40b.rmeta +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libhashbrown-d671ea03f4f2cb7f.rlib +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libhashbrown-d671ea03f4f2cb7f.rmeta +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libpanic_abort-59292eecd8b1d16e.rlib +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libpanic_abort-59292eecd8b1d16e.rmeta +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libpanic_unwind-2405f2c51aa3033f.rlib +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libpanic_unwind-2405f2c51aa3033f.rmeta +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libproc_macro-e21e6e955e6fcad2.rlib +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libproc_macro-e21e6e955e6fcad2.rmeta +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libprofiler_builtins-adc74bbcd604917d.rlib +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libprofiler_builtins-adc74bbcd604917d.rmeta +file:lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_demangle-eda3326d6d941958.rlib +file:lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_demangle-eda3326d6d941958.rmeta +file:lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_literal_escaper-26a66b580b06d1b8.rlib +file:lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_literal_escaper-26a66b580b06d1b8.rmeta +file:lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_std_workspace_alloc-fd50af2c77fb0ff8.rlib +file:lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_std_workspace_alloc-fd50af2c77fb0ff8.rmeta +file:lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_std_workspace_core-70fce068d6af51d0.rlib +file:lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_std_workspace_core-70fce068d6af51d0.rmeta +file:lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_std_workspace_std-444efa70010dce55.rlib +file:lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_std_workspace_std-444efa70010dce55.rmeta +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libstd-0cebe7c42cd80226.rlib +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libstd-0cebe7c42cd80226.rmeta +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libstd_detect-9997abfbe12e9a5a.rlib +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libstd_detect-9997abfbe12e9a5a.rmeta +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libsysroot-7490860bdc62736d.rlib +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libsysroot-7490860bdc62736d.rmeta +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libtest-aa8668665eaf52b3.rlib +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libtest-aa8668665eaf52b3.rmeta +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libunwind-ab072c5f59c422bc.rlib +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libunwind-ab072c5f59c422bc.rmeta +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libwindows_link-51a83819a91587e9.rlib +file:lib/rustlib/x86_64-pc-windows-msvc/lib/libwindows_link-51a83819a91587e9.rmeta +file:lib/rustlib/x86_64-pc-windows-msvc/lib/std-0cebe7c42cd80226.dll +file:lib/rustlib/x86_64-pc-windows-msvc/lib/std-0cebe7c42cd80226.dll.lib +file:lib/rustlib/x86_64-pc-windows-msvc/lib/std-0cebe7c42cd80226.pdb diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/manifest-rustc-x86_64-pc-windows-msvc b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/manifest-rustc-x86_64-pc-windows-msvc new file mode 100644 index 0000000000000000000000000000000000000000..9d005ded3aef26bb40c60dfd50d2522b5e82ff0a --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/manifest-rustc-x86_64-pc-windows-msvc @@ -0,0 +1,56 @@ +file:bin/rust-gdb +file:bin/rust-gdbgui +file:bin/rust-lldb +file:bin/rust-windbg.cmd +file:bin/rustc.exe +file:bin/rustc.pdb +file:bin/rustc_driver-0f1b6065992ac7c3.dll +file:bin/rustc_driver-0f1b6065992ac7c3.pdb +file:bin/rustc_main-1ce660e6f7b09dfc.pdb +file:bin/rustdoc.exe +file:bin/rustdoc.pdb +file:bin/std-0cebe7c42cd80226.dll +file:bin/std-0cebe7c42cd80226.pdb +file:etc/target-spec-json-schema.json +file:lib/rustlib/etc/gdb_load_rust_pretty_printers.py +file:lib/rustlib/etc/gdb_lookup.py +file:lib/rustlib/etc/gdb_providers.py +file:lib/rustlib/etc/intrinsic.natvis +file:lib/rustlib/etc/liballoc.natvis +file:lib/rustlib/etc/libcore.natvis +file:lib/rustlib/etc/libstd.natvis +file:lib/rustlib/etc/lldb_commands +file:lib/rustlib/etc/lldb_lookup.py +file:lib/rustlib/etc/lldb_providers.py +file:lib/rustlib/etc/rust_types.py +file:lib/rustlib/x86_64-pc-windows-msvc/bin/gcc-ld/ld.lld.exe +file:lib/rustlib/x86_64-pc-windows-msvc/bin/gcc-ld/ld.lld.pdb +file:lib/rustlib/x86_64-pc-windows-msvc/bin/gcc-ld/ld64.lld.exe +file:lib/rustlib/x86_64-pc-windows-msvc/bin/gcc-ld/ld64.lld.pdb +file:lib/rustlib/x86_64-pc-windows-msvc/bin/gcc-ld/lld-link.exe +file:lib/rustlib/x86_64-pc-windows-msvc/bin/gcc-ld/lld-link.pdb +file:lib/rustlib/x86_64-pc-windows-msvc/bin/gcc-ld/wasm-ld.exe +file:lib/rustlib/x86_64-pc-windows-msvc/bin/gcc-ld/wasm-ld.pdb +file:lib/rustlib/x86_64-pc-windows-msvc/bin/rust-lld.exe +file:lib/rustlib/x86_64-pc-windows-msvc/bin/rust-objcopy.exe +file:lib/rustlib/x86_64-pc-windows-msvc/bin/wasm-component-ld.exe +file:lib/rustlib/x86_64-pc-windows-msvc/bin/wasm-component-ld.pdb +file:libexec/rust-analyzer-proc-macro-srv.exe +file:libexec/rust-analyzer-proc-macro-srv.pdb +file:share/doc/rust/COPYRIGHT-library.html +file:share/doc/rust/COPYRIGHT.html +file:share/doc/rust/README.md +file:share/doc/rust/licenses/Apache-2.0.txt +file:share/doc/rust/licenses/BSD-2-Clause.txt +file:share/doc/rust/licenses/CC-BY-SA-4.0.txt +file:share/doc/rust/licenses/GCC-exception-3.1.txt +file:share/doc/rust/licenses/GPL-2.0-only.txt +file:share/doc/rust/licenses/GPL-3.0-or-later.txt +file:share/doc/rust/licenses/ISC.txt +file:share/doc/rust/licenses/LLVM-exception.txt +file:share/doc/rust/licenses/MIT.txt +file:share/doc/rust/licenses/NCSA.txt +file:share/doc/rust/licenses/OFL-1.1.txt +file:share/doc/rust/licenses/Unicode-3.0.txt +file:share/man/man1/rustc.1 +file:share/man/man1/rustdoc.1 diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/manifest-rustfmt-preview-x86_64-pc-windows-msvc b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/manifest-rustfmt-preview-x86_64-pc-windows-msvc new file mode 100644 index 0000000000000000000000000000000000000000..039aa8452e07a479c7aa77556551396fbca287cb --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/manifest-rustfmt-preview-x86_64-pc-windows-msvc @@ -0,0 +1,7 @@ +file:bin/cargo-fmt.exe +file:bin/cargo-fmt.pdb +file:bin/rustfmt.exe +file:bin/rustfmt.pdb +file:share/doc/rustfmt/LICENSE-APACHE +file:share/doc/rustfmt/LICENSE-MIT +file:share/doc/rustfmt/README.md diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/multirust-channel-manifest.toml b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/multirust-channel-manifest.toml new file mode 100644 index 0000000000000000000000000000000000000000..0dfdfbe3b0309211557f41bb18c1e760f4e1a44e --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/multirust-channel-manifest.toml @@ -0,0 +1,32627 @@ +manifest-version = "2" +date = "2026-04-16" + +[pkg.cargo] +version = "0.96.0 (f2d3ce0bd 2026-03-21)" + +[pkg.cargo.target.aarch64-apple-darwin] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-aarch64-apple-darwin.tar.gz" +hash = "0421d71bd676f0d38e318bf3eb7cd1a9ca33cf5ccf70f49644950a91fa046de7" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-aarch64-apple-darwin.tar.xz" +xz_hash = "6c2ffed8e1ac9cf4dc9e80f282a869a6b237a153e7c55cca039d33de29d80aaf" +components = [] +extensions = [] + +[pkg.cargo.target.aarch64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-aarch64-pc-windows-gnullvm.tar.gz" +hash = "a66d016444cfe246fe6e82dd769458f9268dbca6f8058b01a74f7e5855fe3092" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-aarch64-pc-windows-gnullvm.tar.xz" +xz_hash = "14683a8e0b0ee8afdd7e2896fc8e91a7ff0ba55c2e20912e639eea498f1e1d10" +components = [] +extensions = [] + +[pkg.cargo.target.aarch64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-aarch64-pc-windows-msvc.tar.gz" +hash = "82a65d8fd0098c3214a2caa0aa5f42cc0b7c4f5f586cf8bca9986ec0dd931343" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-aarch64-pc-windows-msvc.tar.xz" +xz_hash = "e645b30fa035a18aa12d28b699052014c7efa9dd4a33dabd223f0d16b5fa28e8" +components = [] +extensions = [] + +[pkg.cargo.target.aarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-aarch64-unknown-linux-gnu.tar.gz" +hash = "f37440984c4c06d38487138adae2c5c80ec4ddfbdfe57ae387357995bfa502e9" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-aarch64-unknown-linux-gnu.tar.xz" +xz_hash = "7c070aeba9bbf12073646995a03f36c346bb5f541d0078ba6d9dc2a7adaaf6af" +components = [] +extensions = [] + +[pkg.cargo.target.aarch64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-aarch64-unknown-linux-musl.tar.gz" +hash = "bdbaf0ac1e3654b93e7a10b253254eac1f03e61c9cc4e504dcb151d73d3bad08" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-aarch64-unknown-linux-musl.tar.xz" +xz_hash = "3ea32cd155faeefa3f7689d74a9e515641be5163cba1b331099943b79d8680d9" +components = [] +extensions = [] + +[pkg.cargo.target.aarch64-unknown-linux-ohos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-aarch64-unknown-linux-ohos.tar.gz" +hash = "0cffaba47af3cd00a6b7730cfce1897f72a2647b53d8408a143cbb596dd5230b" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-aarch64-unknown-linux-ohos.tar.xz" +xz_hash = "2912b30e2d4fc3f51b4dec22de063f892d9418cb52c202e8aa9254ca68e48d4c" +components = [] +extensions = [] + +[pkg.cargo.target.arm-unknown-linux-gnueabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-arm-unknown-linux-gnueabi.tar.gz" +hash = "de1ca1d1e58631f2197fc96d561a3f0a59d500203f7ff8a27b555864caf2c4a2" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-arm-unknown-linux-gnueabi.tar.xz" +xz_hash = "1fcbe35798593de659a89c668f6abf11cbe6442fe1278b7ffea358e626334e5e" +components = [] +extensions = [] + +[pkg.cargo.target.arm-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-arm-unknown-linux-gnueabihf.tar.gz" +hash = "041b94024fbbbab6209d68b20a3e6e8a5770df9777c5ce790909a2ff4b08acf8" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-arm-unknown-linux-gnueabihf.tar.xz" +xz_hash = "885afb663cc683ee7c2b7864df6703481e015a85c7e741b695aaeac722bc4747" +components = [] +extensions = [] + +[pkg.cargo.target.armv7-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-armv7-unknown-linux-gnueabihf.tar.gz" +hash = "4db9c16b2513628dcb767b65ac0e6ee739f2c280aa39b63b6e7b5d42c338b2e3" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-armv7-unknown-linux-gnueabihf.tar.xz" +xz_hash = "3bba290e6b77827554c50d1d4b97c8e6fb75e4629a4a747ae5f75ab57a2fd914" +components = [] +extensions = [] + +[pkg.cargo.target.i686-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-i686-pc-windows-gnu.tar.gz" +hash = "4a57a8e131343c06ed2725f22f92e75e93ef39f53ffae49de39de5f3e85a56c1" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-i686-pc-windows-gnu.tar.xz" +xz_hash = "3d3e57f607a01c0dee4ef8fa58ddc6e8878e2828b05d379927e0c6a68dc386f8" +components = [] +extensions = [] + +[pkg.cargo.target.i686-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-i686-pc-windows-msvc.tar.gz" +hash = "d7da3b014ecc38cc318468dbdadd037606446f99d12e050cf547e0e684efd68d" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-i686-pc-windows-msvc.tar.xz" +xz_hash = "97a761690d48a406319cd639502373a808ae223233fa1084fbfb25a06b4b0174" +components = [] +extensions = [] + +[pkg.cargo.target.i686-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-i686-unknown-linux-gnu.tar.gz" +hash = "2042d1507652d503d5b8cb2888140e96a756b46c14f3099a2c2f031184bae7bd" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-i686-unknown-linux-gnu.tar.xz" +xz_hash = "5292abf16427edd5e759f15177a3275ad21826e7a19fec58bf2ed6fd0b301f20" +components = [] +extensions = [] + +[pkg.cargo.target.loongarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-loongarch64-unknown-linux-gnu.tar.gz" +hash = "d48514426a5b8a93e3a9289911726afd776986c8cdfacbacda204222b3c003fc" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-loongarch64-unknown-linux-gnu.tar.xz" +xz_hash = "7203c690167b73dbe4c7cce03d302b437c1c422b6c3258a7c46d7fc1515820f8" +components = [] +extensions = [] + +[pkg.cargo.target.loongarch64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-loongarch64-unknown-linux-musl.tar.gz" +hash = "063634249b92a86dfb70996b0f6399c1f406476a5ec6a96fcb4b5f8d2cc8bcad" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-loongarch64-unknown-linux-musl.tar.xz" +xz_hash = "aabc3d36ecd5508343730dca1e104253e0af9929322a17c45ac494537f47506b" +components = [] +extensions = [] + +[pkg.cargo.target.powerpc-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-powerpc-unknown-linux-gnu.tar.gz" +hash = "26924b03718da94a4cc839d2e78eea7e82e6f2a45415c8b40f998c3b67765f67" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-powerpc-unknown-linux-gnu.tar.xz" +xz_hash = "71ef5259df76102d0380c2a912384ac61ea280211fc4e2087744c476f2c8694b" +components = [] +extensions = [] + +[pkg.cargo.target.powerpc64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-powerpc64-unknown-linux-gnu.tar.gz" +hash = "c54c8712949c8cadeb18184e067e2f3d5a1ac6e991f31ce185f07bd4c6f79479" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-powerpc64-unknown-linux-gnu.tar.xz" +xz_hash = "e9909e9dd0c33e833dbd9c6b677aca49eb4ed2c09a30f1577c91aae70690674f" +components = [] +extensions = [] + +[pkg.cargo.target.powerpc64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-powerpc64-unknown-linux-musl.tar.gz" +hash = "b3aee8678a48cbd1c1d780ecefff22b9ae282deb882cea22f25431d055325088" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-powerpc64-unknown-linux-musl.tar.xz" +xz_hash = "5625abde1726253739873bffe4189c1011ee25e38fa0348ae69dbd27577bd23a" +components = [] +extensions = [] + +[pkg.cargo.target.powerpc64le-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-powerpc64le-unknown-linux-gnu.tar.gz" +hash = "14c98220b6f2716626d819b547aad2cb9e2dbbe261affe437b3fe6616684b295" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-powerpc64le-unknown-linux-gnu.tar.xz" +xz_hash = "a7744cab4bf40d78ff8344d320bb7a41fee4af1f2fbb6eb67aebcc13b30a49e0" +components = [] +extensions = [] + +[pkg.cargo.target.powerpc64le-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-powerpc64le-unknown-linux-musl.tar.gz" +hash = "a5da6980141260487d74d1aca9ef6cbfbe44b6a0c3fee870e1e09ab2dd6cffff" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-powerpc64le-unknown-linux-musl.tar.xz" +xz_hash = "c23b67d653778558cfef3632fd9192d6558342689e69d8b74382cb6ba075f03f" +components = [] +extensions = [] + +[pkg.cargo.target.riscv64gc-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-riscv64gc-unknown-linux-gnu.tar.gz" +hash = "8db53176d7c2b879384fdfab7382dd7f16ec0adbb44036903e96d20f4b533ca7" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-riscv64gc-unknown-linux-gnu.tar.xz" +xz_hash = "240d7ff48881232b78ea31648621832b36a401872499d0a3a1419e4a9da5c43b" +components = [] +extensions = [] + +[pkg.cargo.target.s390x-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-s390x-unknown-linux-gnu.tar.gz" +hash = "c79ddb75e68f73b9a7deb7d531d835b80d693900d173a74a6f981a30995c3967" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-s390x-unknown-linux-gnu.tar.xz" +xz_hash = "01f2854ed29843949fb5baab852316c36382e9df6d39166508006c1dad830f08" +components = [] +extensions = [] + +[pkg.cargo.target.sparcv9-sun-solaris] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-sparcv9-sun-solaris.tar.gz" +hash = "b64816b4eaae01103c9828947e9c4f0571a875c07b52992f0d9347be7c3ee820" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-sparcv9-sun-solaris.tar.xz" +xz_hash = "a4f5cd49e5a3707c5f8803dcf038c5cbe933423e1da923ab7218f541047da588" +components = [] +extensions = [] + +[pkg.cargo.target.x86_64-apple-darwin] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-x86_64-apple-darwin.tar.gz" +hash = "6d85c517eb793b1b11369b6b0b1f70d8cbb36ac590cc03733cbe84896e7fdd4a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-x86_64-apple-darwin.tar.xz" +xz_hash = "e2e1131ade2dddc0d779e0ab3a6a990085c7a654951235742823c3a1ce0f190f" +components = [] +extensions = [] + +[pkg.cargo.target.x86_64-pc-solaris] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-x86_64-pc-solaris.tar.gz" +hash = "c3db8a3daf159344200b0b034224c4f824aed3466f2f0b7db6c2654c03e32499" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-x86_64-pc-solaris.tar.xz" +xz_hash = "e2fa5fb6127d004f0c25854fcf3455d55220345ace19c2e1e02313d8802ccfc6" +components = [] +extensions = [] + +[pkg.cargo.target.x86_64-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-x86_64-pc-windows-gnu.tar.gz" +hash = "712985621dc013ee095d3d95b990b6d075289ee991a7483c76e34cedf9d4d342" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-x86_64-pc-windows-gnu.tar.xz" +xz_hash = "32afca18643ed650250297614de7e13b2e03eae0ecde6fe250f96b795e6b63e0" +components = [] +extensions = [] + +[pkg.cargo.target.x86_64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-x86_64-pc-windows-gnullvm.tar.gz" +hash = "858d9612146f97d60eab9a3861a231027aa04fdecb5ff14d4c83761aa88ed5b9" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-x86_64-pc-windows-gnullvm.tar.xz" +xz_hash = "239c098b9878ad01ad5e0feeee377e6ee3311bc1534b1fb5eb630489d463bab2" +components = [] +extensions = [] + +[pkg.cargo.target.x86_64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-x86_64-pc-windows-msvc.tar.gz" +hash = "2d68113a00b98f0dec6d0e8473f82e08cec00c392115933a57dbfe9d3c8b2d8c" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-x86_64-pc-windows-msvc.tar.xz" +xz_hash = "cab2606cb2d0aa31c55d50512fe07a9f15e893227566fbeb448306760cd0d2bf" +components = [] +extensions = [] + +[pkg.cargo.target.x86_64-unknown-freebsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-x86_64-unknown-freebsd.tar.gz" +hash = "87bd5776d2d48747fc3741ee56f50319b8b6d88d056dbbaf5be48d3c724e9ceb" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-x86_64-unknown-freebsd.tar.xz" +xz_hash = "07621ab1e2a27e7beb4d790d15b3d8def37cba8dfe3e636b3495849ba0eb5cfc" +components = [] +extensions = [] + +[pkg.cargo.target.x86_64-unknown-illumos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-x86_64-unknown-illumos.tar.gz" +hash = "be1820b7de8e7d8f2b6dde4afc3af6e451b407bf390d43819b6708a8e5e60fcf" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-x86_64-unknown-illumos.tar.xz" +xz_hash = "527f26cd9580fa2729c63137162ff2004b6877cf69bc6b02afcf17fe3530cf55" +components = [] +extensions = [] + +[pkg.cargo.target.x86_64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "47ebc468721a6ff3fb27dff33e632a4cb6246d0ea061814bcd4fe601d18c69a8" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "e74edd2cf7d0f1f1383b4f00eb90c843750bc489e2ccf7214e6476678a907425" +components = [] +extensions = [] + +[pkg.cargo.target.x86_64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-x86_64-unknown-linux-musl.tar.gz" +hash = "d0cadbac955d17229fe34f680b917b01c49063a6d9713aabd49dc284547e2258" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-x86_64-unknown-linux-musl.tar.xz" +xz_hash = "6abadb9c6f9113f20858a67cfb48c4065c614cb038f543e19d5bf5d768663841" +components = [] +extensions = [] + +[pkg.cargo.target.x86_64-unknown-netbsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-x86_64-unknown-netbsd.tar.gz" +hash = "b3fb84386807ab994b5862c6687fbb2f9c7bad6e9050ad6132f2c0d272aace63" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/cargo-1.95.0-x86_64-unknown-netbsd.tar.xz" +xz_hash = "e4fee9d8ee936243e0804058c8bddcce663d5f1b8abe6b69233514edfb51a181" +components = [] +extensions = [] + +[pkg.clippy-preview] +version = "0.1.95" + +[pkg.clippy-preview.target.aarch64-apple-darwin] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-aarch64-apple-darwin.tar.gz" +hash = "ff1fd77e514985dda551b050f762fb3e54e4b8f49a56bc69788a571d310b8d36" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-aarch64-apple-darwin.tar.xz" +xz_hash = "fd183baa023d0c4e0c5b8184226e2d4c85126adf156cb1f3a726ec593bba8d62" +components = [] +extensions = [] + +[pkg.clippy-preview.target.aarch64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-aarch64-pc-windows-gnullvm.tar.gz" +hash = "1a4455194f8803c91efe6b2f7908724bc0bdf438ebfc4262751d96b35309b06c" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-aarch64-pc-windows-gnullvm.tar.xz" +xz_hash = "b81d0fe05c4ec514aefaffdf0649b175a2f82572163202c17531358f196b6168" +components = [] +extensions = [] + +[pkg.clippy-preview.target.aarch64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-aarch64-pc-windows-msvc.tar.gz" +hash = "6c0c51fbd8b57d6fad66998df990db5fe65f8e585f57c5c67b0ed91ea79f3697" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-aarch64-pc-windows-msvc.tar.xz" +xz_hash = "44c1b7ada72aa8f3fcaceb37a3899665bc9b160c2fea77879c8ecb65a9e97eba" +components = [] +extensions = [] + +[pkg.clippy-preview.target.aarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-aarch64-unknown-linux-gnu.tar.gz" +hash = "84480abfbfed89616b1e0b35acb9db84766f0353b671766638084f4e9b1d1143" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-aarch64-unknown-linux-gnu.tar.xz" +xz_hash = "fb021e0c0fc2238be9266d7614f4a26bc372544c4cba3528d729ab24ad229fc9" +components = [] +extensions = [] + +[pkg.clippy-preview.target.aarch64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-aarch64-unknown-linux-musl.tar.gz" +hash = "668f75d280ec3d3e839e5c0f4a0e3fe8c6019bfa09cbc1cb2bb6180ff3d59536" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-aarch64-unknown-linux-musl.tar.xz" +xz_hash = "71d93d9d0ddd710115bfd1127ba833f196622b91ad832c0276aa2ec165f87aee" +components = [] +extensions = [] + +[pkg.clippy-preview.target.aarch64-unknown-linux-ohos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-aarch64-unknown-linux-ohos.tar.gz" +hash = "654733bb02442ffe9332ddfd8b173e8758437843b9eb0d4fceb98e912fb5bf6e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-aarch64-unknown-linux-ohos.tar.xz" +xz_hash = "b5396113824bb1aa56df144c831f173375c659b0c4aa1005c2e61ce48f6df033" +components = [] +extensions = [] + +[pkg.clippy-preview.target.arm-unknown-linux-gnueabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-arm-unknown-linux-gnueabi.tar.gz" +hash = "a246ba10cc8a1cc9d61c59ff5831f96fc15cb336ebd0fc42a12510512031aaf6" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-arm-unknown-linux-gnueabi.tar.xz" +xz_hash = "1246ae31f309c8d8a5d257cecb53527efe28cd000134064e9704c88defe9f510" +components = [] +extensions = [] + +[pkg.clippy-preview.target.arm-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-arm-unknown-linux-gnueabihf.tar.gz" +hash = "eb995df25b6e1e3a74154b72868ec392398eec956b303f1da8a7282a44e283eb" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-arm-unknown-linux-gnueabihf.tar.xz" +xz_hash = "893fbe2f77e5037d59b99ab0cae9abc3e58b971914f3a423c6e4d215a68291f2" +components = [] +extensions = [] + +[pkg.clippy-preview.target.armv7-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-armv7-unknown-linux-gnueabihf.tar.gz" +hash = "3203706ec88308001095a77680a79432bedeb7fe0955814c4b589ce1744ac478" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-armv7-unknown-linux-gnueabihf.tar.xz" +xz_hash = "76c7364411aec5c647f862f5bf2fc304604d5bf53fbff682673db28d63d7951a" +components = [] +extensions = [] + +[pkg.clippy-preview.target.i686-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-i686-pc-windows-gnu.tar.gz" +hash = "5e3f13aaf397da86fd63775edae45f979347c2b6c35c0daae8669c31ee4e6f3a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-i686-pc-windows-gnu.tar.xz" +xz_hash = "5b87e81020023e0202b06b162eec9392887bb658d5b811f694d642ec99f1ad9e" +components = [] +extensions = [] + +[pkg.clippy-preview.target.i686-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-i686-pc-windows-msvc.tar.gz" +hash = "b645ff064897a4de563f8e10c2dc5e55b8e72b64b24cbec0c9ce1e056f7ffbbd" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-i686-pc-windows-msvc.tar.xz" +xz_hash = "ef3b4505ee044b960b784eb07dddd65540ded9b68a1f00481bed12894c025052" +components = [] +extensions = [] + +[pkg.clippy-preview.target.i686-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-i686-unknown-linux-gnu.tar.gz" +hash = "d1d75a57b595fe892a73b9e92057d89e4478fe83893cf0e8d29cfc2f69cde197" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-i686-unknown-linux-gnu.tar.xz" +xz_hash = "8a6484dd4dee723a043006b9bdfc7b8440f83cff8662321ff28fa941d6f45b1e" +components = [] +extensions = [] + +[pkg.clippy-preview.target.loongarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-loongarch64-unknown-linux-gnu.tar.gz" +hash = "77eb83472cf0008befdc46806cf45516e5e5e8ba15478278df91efcd9996868a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-loongarch64-unknown-linux-gnu.tar.xz" +xz_hash = "fa0e8be99ddf2aca72aa7a911ecf43da80243a9a400d8c9d9c9c3ea994848bdb" +components = [] +extensions = [] + +[pkg.clippy-preview.target.loongarch64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-loongarch64-unknown-linux-musl.tar.gz" +hash = "2e8493b705f172bc972a396dcf556c46a7875225cf2ab2c4b0a6e3466ff4a659" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-loongarch64-unknown-linux-musl.tar.xz" +xz_hash = "14a082d5e53582dfb720ff6308bd553befe89b82c949212a6208c86e092f3267" +components = [] +extensions = [] + +[pkg.clippy-preview.target.powerpc-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-powerpc-unknown-linux-gnu.tar.gz" +hash = "5c9c5ebc4f5062d59ee2df1d896685acc00409d65fc513ff87f144af1f87a449" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-powerpc-unknown-linux-gnu.tar.xz" +xz_hash = "b12ffc360997ed6ee4b93c1e3bfccea84ab034d657f4411bd34ae4494b685c51" +components = [] +extensions = [] + +[pkg.clippy-preview.target.powerpc64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-powerpc64-unknown-linux-gnu.tar.gz" +hash = "a0b756c12dc83c9eae9a76f32d91e125c5bf42e231dbe22983d7cb0cde70a80f" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-powerpc64-unknown-linux-gnu.tar.xz" +xz_hash = "4e7c7d14165c2aef1275aac109092c2cd85396a483756b8084a5ab729b4580e0" +components = [] +extensions = [] + +[pkg.clippy-preview.target.powerpc64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-powerpc64-unknown-linux-musl.tar.gz" +hash = "0f60207c72c88950f99b91fa47cb7baff9b453feb44b801c50603070624f0744" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-powerpc64-unknown-linux-musl.tar.xz" +xz_hash = "5d874b656373467e9950307e6804b3ce70c94cc6d71b3d018f0f1bee8360a1bd" +components = [] +extensions = [] + +[pkg.clippy-preview.target.powerpc64le-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-powerpc64le-unknown-linux-gnu.tar.gz" +hash = "f38e419344862686d664c61451068eee7dc34b14a775fc8948b4dc5eff609878" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-powerpc64le-unknown-linux-gnu.tar.xz" +xz_hash = "2d29ef33a42d2f2291fa0107e48ffc35b7be0d318ad6bfe231fb1b751a0fe214" +components = [] +extensions = [] + +[pkg.clippy-preview.target.powerpc64le-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-powerpc64le-unknown-linux-musl.tar.gz" +hash = "c13f23abc486dcce2da504b1fc6b8047ad0ead6fd7dc33c7c345cd1f4a11bafb" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-powerpc64le-unknown-linux-musl.tar.xz" +xz_hash = "8e214327d5128afb328d40eb32b41339dfb297b3edd854b7771db12706ced02c" +components = [] +extensions = [] + +[pkg.clippy-preview.target.riscv64gc-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-riscv64gc-unknown-linux-gnu.tar.gz" +hash = "cd7459e4f886031ec2b940fbb047ab610c4883e7e1887208f5e36b5d8f4750cf" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-riscv64gc-unknown-linux-gnu.tar.xz" +xz_hash = "e72e423ab27da0f0f38b71ff622b357028206d551d10b62cabf6845111805701" +components = [] +extensions = [] + +[pkg.clippy-preview.target.s390x-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-s390x-unknown-linux-gnu.tar.gz" +hash = "6ea9ad5bbc4bb1037a304dc2f15bb7c6e45197014e47a72927de8b42d91cf604" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-s390x-unknown-linux-gnu.tar.xz" +xz_hash = "39ca2e54ba9945ca94ffa4ab9a276f192d993be331ed25a53ab0e1039dd60528" +components = [] +extensions = [] + +[pkg.clippy-preview.target.sparcv9-sun-solaris] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-sparcv9-sun-solaris.tar.gz" +hash = "d42bea03ace125fbc7af990a09887aa568ebbe2f416e6ee6ef048a09a7055fb4" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-sparcv9-sun-solaris.tar.xz" +xz_hash = "334d7c9f62db2e6e35364c775ec051cbcbf51b32a872f6804ec98ad056ebfe79" +components = [] +extensions = [] + +[pkg.clippy-preview.target.x86_64-apple-darwin] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-x86_64-apple-darwin.tar.gz" +hash = "0685bc3ad0f10cb1a3a59918236e71e242650a05d02149e1e4aaac7e5a8e81a4" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-x86_64-apple-darwin.tar.xz" +xz_hash = "e47367f6b1489d74cbba93b387310adcb82e27a51e44b2c6ff543eb4f199fe32" +components = [] +extensions = [] + +[pkg.clippy-preview.target.x86_64-pc-solaris] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-x86_64-pc-solaris.tar.gz" +hash = "934327a46b22d4d88e16b6f21313eb7493e0c0470c058059c53d3138fa02bdd1" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-x86_64-pc-solaris.tar.xz" +xz_hash = "8af9eeae864404602abf9d9c9bff5601e1e1993acd19b7f5f3c3849a9c79871d" +components = [] +extensions = [] + +[pkg.clippy-preview.target.x86_64-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-x86_64-pc-windows-gnu.tar.gz" +hash = "6636a7d87b1d2060ffc246862a100d021325f0480134b39419613f2cd7d0619d" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-x86_64-pc-windows-gnu.tar.xz" +xz_hash = "75a28d08651024743d5348e0890b2c0acbc2e7c55f6712394db13f6b8f47b7f9" +components = [] +extensions = [] + +[pkg.clippy-preview.target.x86_64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-x86_64-pc-windows-gnullvm.tar.gz" +hash = "f0c46246bbf3ec00db5e01de7e438ce274c94ac08f66958e5e681abcfd12a4f4" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-x86_64-pc-windows-gnullvm.tar.xz" +xz_hash = "9358dfc3b831a5f4b3a3a0016da734b4ef5e78c84ca8f148f56a9c126515ebfa" +components = [] +extensions = [] + +[pkg.clippy-preview.target.x86_64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-x86_64-pc-windows-msvc.tar.gz" +hash = "95b49df0a594ff3410147814950b11b2ba4e6b3074527a3012a04e9f82644533" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-x86_64-pc-windows-msvc.tar.xz" +xz_hash = "ddc151d6f58c6658b7380292ecaef36e62d063bbdbf7f5802669810575bb5b75" +components = [] +extensions = [] + +[pkg.clippy-preview.target.x86_64-unknown-freebsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-x86_64-unknown-freebsd.tar.gz" +hash = "0b7044bc35f5e074a151c3849d1a4026047ab49ca7b708c10d0a2f837ba4a6f2" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-x86_64-unknown-freebsd.tar.xz" +xz_hash = "87258ef61b93031ce5b77604a9719930b5144911ff90a72333a7d672b4e91d93" +components = [] +extensions = [] + +[pkg.clippy-preview.target.x86_64-unknown-illumos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-x86_64-unknown-illumos.tar.gz" +hash = "95b141103250ad9bb29557f4d8868ea9626bf7247f6464c1487f05d9f6662cf2" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-x86_64-unknown-illumos.tar.xz" +xz_hash = "61ce9c19dc0cf7bdd5583a7a4b5bf23d49f368e3d2c7543b92a60d9566fa9b06" +components = [] +extensions = [] + +[pkg.clippy-preview.target.x86_64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "5230c92fb0ae1346ee30a1b4e01413cc3e1ead8ded20391fb2826619775f1ccb" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "ac779bc9839dd47180806b133e4e2563c4a34716284cd5b8fede8ef289f452ca" +components = [] +extensions = [] + +[pkg.clippy-preview.target.x86_64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-x86_64-unknown-linux-musl.tar.gz" +hash = "c55a7b5604fe2e0400911c488b320922066fe23646235793cec7c8e5c03e7a61" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-x86_64-unknown-linux-musl.tar.xz" +xz_hash = "2b224575a63dfd7b4a7449eb345effacc58eb158e64a3da88e637a73814d8f95" +components = [] +extensions = [] + +[pkg.clippy-preview.target.x86_64-unknown-netbsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-x86_64-unknown-netbsd.tar.gz" +hash = "2173823e9763e416f1d23abf9943ec430a13836eae058e1a300bb840873241f7" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/clippy-1.95.0-x86_64-unknown-netbsd.tar.xz" +xz_hash = "b37e0a508d0ca277c16a904d45dbaa4587abe5c4d0182c108bb2ab784ccec71d" +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview] +version = "" + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.aarch64-apple-darwin] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.aarch64-pc-windows-gnullvm] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.aarch64-pc-windows-msvc] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.aarch64-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.aarch64-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.aarch64-unknown-linux-ohos] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.arm-unknown-linux-gnueabi] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.arm-unknown-linux-gnueabihf] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.armv7-unknown-linux-gnueabihf] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.i686-pc-windows-gnu] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.i686-pc-windows-msvc] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.i686-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.loongarch64-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.loongarch64-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.powerpc-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.powerpc64-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.powerpc64-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.powerpc64le-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.powerpc64le-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.riscv64gc-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.s390x-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.sparcv9-sun-solaris] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.x86_64-apple-darwin] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.x86_64-pc-solaris] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.x86_64-pc-windows-gnu] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.x86_64-pc-windows-gnullvm] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.x86_64-pc-windows-msvc] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.x86_64-unknown-freebsd] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.x86_64-unknown-illumos] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.x86_64-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.x86_64-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.gcc-x86_64-unknown-linux-gnu-preview.target.x86_64-unknown-netbsd] +available = false +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview] +version = "1.95.0 (59807616e 2026-04-14)" + +[pkg.llvm-bitcode-linker-preview.target.aarch64-apple-darwin] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-aarch64-apple-darwin.tar.gz" +hash = "539d442c7bea8ddf24d1f3486a9435032e80ef0ff31a1c38066237fc1b547298" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-aarch64-apple-darwin.tar.xz" +xz_hash = "705fae969097e1ed44a637e56f12a8aba007712047a4ff1c16a556529ec32b7b" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.aarch64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-aarch64-pc-windows-gnullvm.tar.gz" +hash = "4290d8f8665dccc51f800d34e427dcf87bbd642c7f86dfb408301dc2714ee0bf" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-aarch64-pc-windows-gnullvm.tar.xz" +xz_hash = "9627af28433672abf0534f50b87f78fca96cfa26f6566f608a817bfd40eb72d2" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.aarch64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-aarch64-pc-windows-msvc.tar.gz" +hash = "41f05d33011e8c036b84fd6e9f75581c8850eca305613866bffac47e8b87931c" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-aarch64-pc-windows-msvc.tar.xz" +xz_hash = "cc556911cd1e91355c3b182096a791f2c5687cef442d71b4ae828409d6ba8fd7" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.aarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-aarch64-unknown-linux-gnu.tar.gz" +hash = "43dc2e25e2fa1e511016970270718a52abdfaf7857b0c80e7fb9bd391fd64543" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-aarch64-unknown-linux-gnu.tar.xz" +xz_hash = "5d6994badd8825180fcc93943773e7f867c96261f8097e795f3fff737fef891d" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.aarch64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-aarch64-unknown-linux-musl.tar.gz" +hash = "ffe0445a6dd00bc558226f679de75ff9ab6122b083b5756c47ba0ab99778840a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-aarch64-unknown-linux-musl.tar.xz" +xz_hash = "4e648150e205a5ddd0f85f0cbbdbdba0186d4c1e4a0934213c46b7f67bd13014" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.aarch64-unknown-linux-ohos] +available = false +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.arm-unknown-linux-gnueabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-arm-unknown-linux-gnueabi.tar.gz" +hash = "c8817afb9156daebe889e7d7ca955910e1d04c6464e5f2f63b287133000327c7" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-arm-unknown-linux-gnueabi.tar.xz" +xz_hash = "645e37927b336012ea65168ea7db1e86bbdb2bbaba6151ae96b7b6d54eed6bed" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.arm-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-arm-unknown-linux-gnueabihf.tar.gz" +hash = "d889cc45fe210ee79bef0734c09d2f4d73918fa89f3ad242ab83f524e07e7d40" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-arm-unknown-linux-gnueabihf.tar.xz" +xz_hash = "781a81063b70660e52dcb9aae5c0e56d13b1556d5b4b67b2cb7e2c2206aa1f50" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.armv7-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-armv7-unknown-linux-gnueabihf.tar.gz" +hash = "b1dbdfea554dfa94016421db378c56bf3d96e7ac1270cf24a4e23a7ce3163bc1" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-armv7-unknown-linux-gnueabihf.tar.xz" +xz_hash = "41214d319394f48af04963cee0a0e155a04e3922dd90603416d6eed906990c71" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.i686-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-i686-pc-windows-gnu.tar.gz" +hash = "8309d47509f308ad37711ad1f9cb20e6c21895b5d664b25bde821084de39f95b" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-i686-pc-windows-gnu.tar.xz" +xz_hash = "ac124d37a7348c98749c57a3129195142c938ca38e0095fd57831b9c1beae7a9" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.i686-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-i686-pc-windows-msvc.tar.gz" +hash = "565094c0c5340325a85ca8bb235d24284e6f222ec0fa52bf549778ea345e573a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-i686-pc-windows-msvc.tar.xz" +xz_hash = "7fc755ae4fb5ab3603006c703a9667aaf8b9244e6ff58ff57614d872ae8badfe" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.i686-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-i686-unknown-linux-gnu.tar.gz" +hash = "d197855ce5b8f961af9c4d3c667c93f89ea12413431bb5d66dfe302c3abd884f" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-i686-unknown-linux-gnu.tar.xz" +xz_hash = "b79412d84284c67ed3cedeaf1a0957395b9c543dd8ba20b4bec2c818d77cb166" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.loongarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-loongarch64-unknown-linux-gnu.tar.gz" +hash = "4796f11fb71e092d9b0557776126bc0fa49e00f365a38b1de26f50903307c432" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-loongarch64-unknown-linux-gnu.tar.xz" +xz_hash = "1bd286db8ae4b21977d49b8ca759e7af05c1441b30fd366cd17a60ab8628146b" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.loongarch64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-loongarch64-unknown-linux-musl.tar.gz" +hash = "ed16f86e7a1d55c95a1c3c2493194b6b0cbbe99a0a8da754cce5d42e31c2004c" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-loongarch64-unknown-linux-musl.tar.xz" +xz_hash = "d956c50ddc68368801f836278c51b1067262f7dcb942614da4313d99eab86997" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.powerpc-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-powerpc-unknown-linux-gnu.tar.gz" +hash = "ca339c0b8f521165c9936d24fd2bb922c9a300a66f9918f25aafe0260c548737" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-powerpc-unknown-linux-gnu.tar.xz" +xz_hash = "0df99ed24b9d7a350cec0d6ed76c85742ce0f32fef022a0d102371feb370509e" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.powerpc64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-powerpc64-unknown-linux-gnu.tar.gz" +hash = "6ddd6ebafb41103e3609e6491f318f89be34e91132220ced6da1d174d37768d8" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-powerpc64-unknown-linux-gnu.tar.xz" +xz_hash = "13b27f6e3fc5503493a5cb2faca07ef1dc7cf6bd80509e52700882d559fb566f" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.powerpc64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-powerpc64-unknown-linux-musl.tar.gz" +hash = "7b6843a0d878b6920aa18da82956085f4f77b653aadbcca93806b40299b18aa4" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-powerpc64-unknown-linux-musl.tar.xz" +xz_hash = "681dd7a3f762d62bd50130f63afacb0960211e774e8f69ebdd5747fe9cbec917" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.powerpc64le-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-powerpc64le-unknown-linux-gnu.tar.gz" +hash = "45d32c0f72dc9b178304b4f77d1df0cdd176bfb9304ebdfcc0d800d91acc8deb" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-powerpc64le-unknown-linux-gnu.tar.xz" +xz_hash = "ac5f702a5f94be26a18d5fe978f830b6c36e45acd19a1b444aae6a7451128647" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.powerpc64le-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-powerpc64le-unknown-linux-musl.tar.gz" +hash = "62b3842f89750a7bf0d3e24c011c8d0ce4f33dfd5d039a6dc17745b437ce7003" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-powerpc64le-unknown-linux-musl.tar.xz" +xz_hash = "d019f176dffb6a9e5c08adc9e367e086f628cc1e12d603c589804af7246f36f3" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.riscv64gc-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-riscv64gc-unknown-linux-gnu.tar.gz" +hash = "ebe056006bb393dcdc496923c9c44a8003ded62c68419e6ba0256c89d36786e0" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-riscv64gc-unknown-linux-gnu.tar.xz" +xz_hash = "76961819dab6ff2daae943c2be15c7e2b2cc33613be765e9445f880910a2b5ab" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.s390x-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-s390x-unknown-linux-gnu.tar.gz" +hash = "1bc3d051cfdf67e045d81ce78a92bd1998c4034f3c7844caff6483ca19c475db" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-s390x-unknown-linux-gnu.tar.xz" +xz_hash = "eaa56c4a5108fe44c52b7188a4407837768f561608f59ef6ea48395c4d1d463e" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.sparcv9-sun-solaris] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-sparcv9-sun-solaris.tar.gz" +hash = "40f8910bc20c599d535972a7b6539cfe97c8d3092e966e5a98d86a076ec18181" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-sparcv9-sun-solaris.tar.xz" +xz_hash = "89dd5b4bcfd03e043afb047274900e0178b853a92422422ba36328bb9274a07c" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.x86_64-apple-darwin] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-x86_64-apple-darwin.tar.gz" +hash = "4ef4f6a6167bc908e880bcdec754fb6f457d9cd1f9b84b200f9cd767dfd7a677" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-x86_64-apple-darwin.tar.xz" +xz_hash = "165d0d290cfbada80f979e24e09eead90037d82b2f501d2e9644e10c645ac18f" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.x86_64-pc-solaris] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-x86_64-pc-solaris.tar.gz" +hash = "0b2688b4bac47df7c20b47c36f652dfe65d2305c70f3896da08036d5be05b525" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-x86_64-pc-solaris.tar.xz" +xz_hash = "58d90247e8fa26f0b32397d9613f16ab4dffd0737db617ae62170f820d7079fe" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.x86_64-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-x86_64-pc-windows-gnu.tar.gz" +hash = "b443d8a353611ba7dff20cafbabf04f7c9de534d7a7a9de8eea35faa3721d051" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-x86_64-pc-windows-gnu.tar.xz" +xz_hash = "ff2a556cfdd08c01cd8d968f2b2f7aea0fd2a7902765cfe2e81e837a55f9199f" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.x86_64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-x86_64-pc-windows-gnullvm.tar.gz" +hash = "f6d47550ee085802a87385630ed35c4e5dce7b247b6138333fa8b8c07f191533" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-x86_64-pc-windows-gnullvm.tar.xz" +xz_hash = "239f34931de9d783a3d6f3e8a8e5d2ebd5edbd9d9073bf9b8f5cd28bb26a4a7b" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.x86_64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-x86_64-pc-windows-msvc.tar.gz" +hash = "005824e26c99c536134dab45da194574b4c1f0e7c0b746f7c0757fc1635afa31" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-x86_64-pc-windows-msvc.tar.xz" +xz_hash = "f914915cfff660e2f5023c50d069db1d63f0fccf1ebc1489c4fb1a1b54b24cfb" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.x86_64-unknown-freebsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-x86_64-unknown-freebsd.tar.gz" +hash = "2429fc81059a80862e8f6addb28b0f729ad9f68158e87be9dd25a736f8e11eae" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-x86_64-unknown-freebsd.tar.xz" +xz_hash = "d5efeaf87b61e522ba59af8c78285ed682359dba13bf6668a7ca3a91756818a7" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.x86_64-unknown-illumos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-x86_64-unknown-illumos.tar.gz" +hash = "a2c4d5b5d865369afb71eb2d652cccd3d78224d3d243b29fea936fae6c6c14ad" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-x86_64-unknown-illumos.tar.xz" +xz_hash = "c12a99ac261a0639a7940f07ee4b85d11878f459da1d8001bf5cb996fd0647ef" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.x86_64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "7a82334cdd25c1b2f7e3d1137fe56a2fdecf84b3cfe5692a8cb7ac9725e39f98" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "2128e24aa1d737f16a0ab81510d4755e8c0225f320dadbe861bcee992f4a1c18" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.x86_64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-x86_64-unknown-linux-musl.tar.gz" +hash = "16fe8f5694597a9409faa57d37ec70cfcf273d087e226675cb43874259439c68" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-x86_64-unknown-linux-musl.tar.xz" +xz_hash = "cee38faaf4fa4d9df66853aa0b0155b1982dbe88deea6e5b485cdd31f0b8d3e0" +components = [] +extensions = [] + +[pkg.llvm-bitcode-linker-preview.target.x86_64-unknown-netbsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-x86_64-unknown-netbsd.tar.gz" +hash = "b4cdc8e112ca45e665c941f55423587be47d7133b0d64de21d72695ae746c2f2" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-bitcode-linker-1.95.0-x86_64-unknown-netbsd.tar.xz" +xz_hash = "c3aa17f18e4826f9b6a240c9118d047752855eafd304789dbc9e758f53db44b2" +components = [] +extensions = [] + +[pkg.llvm-tools-preview] +version = "1.95.0 (59807616e 2026-04-14)" + +[pkg.llvm-tools-preview.target.aarch64-apple-darwin] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-aarch64-apple-darwin.tar.gz" +hash = "c8b7851f83d232c2abf5dbca31af43701deca0973ac7eb7cd1741c180396b7db" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-aarch64-apple-darwin.tar.xz" +xz_hash = "f3cf1f1532b31d39fa9f5bf67fd0388766e66d26db856c607eb4d855e957104e" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.aarch64-apple-ios] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.aarch64-apple-ios-macabi] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.aarch64-apple-ios-sim] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.aarch64-apple-tvos] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.aarch64-apple-tvos-sim] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.aarch64-apple-visionos] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.aarch64-apple-visionos-sim] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.aarch64-apple-watchos] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.aarch64-apple-watchos-sim] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.aarch64-linux-android] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.aarch64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-aarch64-pc-windows-gnullvm.tar.gz" +hash = "89d72351bc7060a523670d196957e69b9d7016dca9a6b16497d83edf4a54107a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-aarch64-pc-windows-gnullvm.tar.xz" +xz_hash = "ef970e5f28d1cb5d2d3f0514ed16e64c2a70b434696c50f51c57109789010a68" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.aarch64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-aarch64-pc-windows-msvc.tar.gz" +hash = "a28fb4ab2608e1fecd94afd25f00391157a58f05a395fc93394fae868d5d5e87" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-aarch64-pc-windows-msvc.tar.xz" +xz_hash = "27f76ff37c47d7e2b088edac57722b903cdaaac74c60a2a33ebeff6f7c8c1dc6" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.aarch64-unknown-fuchsia] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.aarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-aarch64-unknown-linux-gnu.tar.gz" +hash = "9616f41ef72ca4dc217d6a8f5511c18e254db397632d5ffcb69ffce55c88b587" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-aarch64-unknown-linux-gnu.tar.xz" +xz_hash = "6ddb95a935eb75683890e284117dedb2e9d0e6cb51876dfa9ca884332c966370" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.aarch64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-aarch64-unknown-linux-musl.tar.gz" +hash = "d2ad78dc32e6a0637105ff5699294fe0e8ba22ae4fa094dcf841858494e01bf9" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-aarch64-unknown-linux-musl.tar.xz" +xz_hash = "21fb234894a4427bc081735f6ee68c780e9e63ceaf29662ebdc6feca615fda74" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.aarch64-unknown-linux-ohos] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.aarch64-unknown-none] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.aarch64-unknown-none-softfloat] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.aarch64-unknown-uefi] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.arm-linux-androideabi] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.arm-unknown-linux-gnueabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-arm-unknown-linux-gnueabi.tar.gz" +hash = "ac504b662fd9c747286e24c8a3d9c94006dda167a24b70090a5adecd23d0f978" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-arm-unknown-linux-gnueabi.tar.xz" +xz_hash = "92973dbbf030a766b189da5bc406447cca490847c9520fe116cbc12c67fd3525" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.arm-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-arm-unknown-linux-gnueabihf.tar.gz" +hash = "b68f1d844ff7e5412b3bd17b6c8096e82d7924eef347a39df6d9def402ad94a6" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-arm-unknown-linux-gnueabihf.tar.xz" +xz_hash = "46b9675bdaacf73d6e1801a83bdb2442dafd3bcbde24c781465c398af00f0708" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.arm-unknown-linux-musleabi] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.arm-unknown-linux-musleabihf] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.arm64ec-pc-windows-msvc] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.armv5te-unknown-linux-gnueabi] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.armv5te-unknown-linux-musleabi] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.armv7-linux-androideabi] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.armv7-unknown-linux-gnueabi] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.armv7-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-armv7-unknown-linux-gnueabihf.tar.gz" +hash = "7e30986be50b9fd84096754926d0205a10a6046f743e6290516dc59e7f5d5d30" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-armv7-unknown-linux-gnueabihf.tar.xz" +xz_hash = "bad828a00c1a8581f9b739cf3b8dcdc14a076f540be19cd26418b99d041c32bb" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.armv7-unknown-linux-musleabi] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.armv7-unknown-linux-musleabihf] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.armv7-unknown-linux-ohos] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.armv7a-none-eabi] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.armv7a-none-eabihf] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.armv7r-none-eabi] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.armv7r-none-eabihf] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.armv8r-none-eabihf] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.i586-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.i586-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.i686-linux-android] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.i686-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-i686-pc-windows-gnu.tar.gz" +hash = "85833abcb91ec3c1c209367cde2174b8df6e9e7a09150a3700b45aad7330ef89" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-i686-pc-windows-gnu.tar.xz" +xz_hash = "45d7a0a4afc3f9a78a76952d1bcf7ae4281daf09223b09d29c479d4f6991e183" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.i686-pc-windows-gnullvm] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.i686-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-i686-pc-windows-msvc.tar.gz" +hash = "b29b2d18f67c00c2683362f114660f1855e275343b104892ef81e1913f5059fb" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-i686-pc-windows-msvc.tar.xz" +xz_hash = "8d32807c1bb268e73e83cce64f008cf371fc3bf0f992179ea14d1bb8b2c8bb35" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.i686-unknown-freebsd] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.i686-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-i686-unknown-linux-gnu.tar.gz" +hash = "41a33bcb5b21b61cd8a467b5d37af379575813a5013f363701d4378c8920bee9" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-i686-unknown-linux-gnu.tar.xz" +xz_hash = "03424519fb4027fc008e186028f4c3d2017aced4ca171efcaef8d0f79ee84a82" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.i686-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.i686-unknown-uefi] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.loongarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-loongarch64-unknown-linux-gnu.tar.gz" +hash = "543d10b2cdcf303ef4f18e40b43496057629d28e9e999e8cd7fb8b30100d7e9c" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-loongarch64-unknown-linux-gnu.tar.xz" +xz_hash = "041ec56a4a7dc0b59664a5d6cf2c8e81794332d7abac88388e2693ecb9e664c3" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.loongarch64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-loongarch64-unknown-linux-musl.tar.gz" +hash = "8cac53d1e494778c95ef211b95463303c51908907e262d86ca4d2ebe65381cc7" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-loongarch64-unknown-linux-musl.tar.xz" +xz_hash = "839408d907c1ac5e08c14cb98e6c97074f815b17af054422ef120eefba9209f8" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.loongarch64-unknown-none] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.loongarch64-unknown-none-softfloat] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.nvptx64-nvidia-cuda] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.powerpc-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-powerpc-unknown-linux-gnu.tar.gz" +hash = "d7aced0a6995ba73a4fecbf2cf493767e70f0144508118eca3e7622d8d5954f7" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-powerpc-unknown-linux-gnu.tar.xz" +xz_hash = "257051add3121ad07685787864c81e593cfcc5bdee143e16621f27d0fb9c5825" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.powerpc64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-powerpc64-unknown-linux-gnu.tar.gz" +hash = "65f9b19c83b4ea05c9b506ecf5176432d78ab2a56a46b3d79bc1d10ac39adbe8" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-powerpc64-unknown-linux-gnu.tar.xz" +xz_hash = "e5f33b4c70bfe9ce9e98c1a73ec88e3ca58c5b08c3d9af8323ec39b605168330" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.powerpc64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-powerpc64-unknown-linux-musl.tar.gz" +hash = "8c4166674096729675c9fb219897b6549f1451cccb3ff758852cc7b34cb70a5f" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-powerpc64-unknown-linux-musl.tar.xz" +xz_hash = "e8725549b8a8d7660a82c2b97d586c6ebf16d1dd16876d62595181c64816d83f" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.powerpc64le-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-powerpc64le-unknown-linux-gnu.tar.gz" +hash = "ea1c847b2c35e087741a70a951dfa9785877121c7f4dd8c3e3f2d45e6f22f4f1" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-powerpc64le-unknown-linux-gnu.tar.xz" +xz_hash = "fc8cb20c1698acf9bb9ba6ff54fccb513c3003829a88a5c4760eadbbbd20406e" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.powerpc64le-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-powerpc64le-unknown-linux-musl.tar.gz" +hash = "d3cd75304f0ff5954e0f25aca8ae3c284bb033bb9f38414cd14b27a3d9c6a660" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-powerpc64le-unknown-linux-musl.tar.xz" +xz_hash = "915608881e46e6602bc8661e03a4cd67bb3b28e693aa58de1d936fafe11c8038" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.riscv32i-unknown-none-elf] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.riscv32im-unknown-none-elf] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.riscv32imac-unknown-none-elf] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.riscv32imafc-unknown-none-elf] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.riscv32imc-unknown-none-elf] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.riscv64a23-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.riscv64gc-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-riscv64gc-unknown-linux-gnu.tar.gz" +hash = "f3eee87a9a425de81026853ec6e61a96ad19cd33b7d520d0cbff9905d8851283" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-riscv64gc-unknown-linux-gnu.tar.xz" +xz_hash = "466089cb88084ae6eaa3353abfc5803d8ce9fe8ae9544ad15de31e31cf91f2fb" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.riscv64gc-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.riscv64gc-unknown-none-elf] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.riscv64imac-unknown-none-elf] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.s390x-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-s390x-unknown-linux-gnu.tar.gz" +hash = "b8cf3e78482893efaa034d4c858338c86b0f37716f4ced9f6fad9ee7767d07a0" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-s390x-unknown-linux-gnu.tar.xz" +xz_hash = "0cdea71d59838bb8bdfd63f82f07de1e16dbbd58ef4063833d4e72c5e0a7e11b" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.s390x-unknown-none-softfloat] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.sparc64-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.sparcv9-sun-solaris] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-sparcv9-sun-solaris.tar.gz" +hash = "493b2554895fe41120df876070306c56de586bad94cf060a50c8f5174fe9fb74" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-sparcv9-sun-solaris.tar.xz" +xz_hash = "a1021fce12d7210e0d5c48738bef47b3c4857b1ffcc350cb0f2844eff907441e" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.thumbv6m-none-eabi] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.thumbv7a-none-eabi] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.thumbv7a-none-eabihf] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.thumbv7em-none-eabi] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.thumbv7em-none-eabihf] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.thumbv7m-none-eabi] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.thumbv7neon-linux-androideabi] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.thumbv7neon-unknown-linux-gnueabihf] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.thumbv7r-none-eabi] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.thumbv7r-none-eabihf] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target."thumbv8m.base-none-eabi"] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target."thumbv8m.main-none-eabi"] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target."thumbv8m.main-none-eabihf"] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.thumbv8r-none-eabihf] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.wasm32-unknown-emscripten] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.wasm32-unknown-unknown] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.wasm32-wasip1] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.wasm32-wasip1-threads] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.wasm32-wasip2] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.wasm32v1-none] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.x86_64-apple-darwin] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-x86_64-apple-darwin.tar.gz" +hash = "4fb726446af9c0ab4c3026c13e002c49f7d06900d79f81ac810f879879c56bea" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-x86_64-apple-darwin.tar.xz" +xz_hash = "6e1eb11c58114797b28f65a7924d1c2248bf7e50b568e1e00e4b6282f1a89dd3" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.x86_64-apple-ios] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.x86_64-apple-ios-macabi] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.x86_64-fortanix-unknown-sgx] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.x86_64-linux-android] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.x86_64-pc-solaris] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-x86_64-pc-solaris.tar.gz" +hash = "d95a64006b133c00ca19fdb7ff6a8961f52b82ad9ae5a5524670dafdaabc3d8d" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-x86_64-pc-solaris.tar.xz" +xz_hash = "daac10fffab60aa9c175f6f23284d4fbb5dda951ef90706b4b95ae948d0a42bc" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.x86_64-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-x86_64-pc-windows-gnu.tar.gz" +hash = "af8fdc9ff7693175c513f47dde729f9dc3826f00fac4426da5f7777262bc8f38" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-x86_64-pc-windows-gnu.tar.xz" +xz_hash = "524b931953d24488dc2bb2248046696c629bcfee289de0c19efb0907acc4404e" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.x86_64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-x86_64-pc-windows-gnullvm.tar.gz" +hash = "1a90a46d6ace4f8b665e2f331413676860202d10c94ea9da13c16941af39d224" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-x86_64-pc-windows-gnullvm.tar.xz" +xz_hash = "5bbcdfe3116c44aae6ec42759908007d0e156d31b45a460f306ffecd28e39b6c" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.x86_64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-x86_64-pc-windows-msvc.tar.gz" +hash = "1eadf1445e95b08b07fc67edd15706c0bf352d8fd388f56d34b43a2bac0c2f67" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-x86_64-pc-windows-msvc.tar.xz" +xz_hash = "d87671f9473dff3316b1561f132ab7df353e9c1dacf83d0fbaba0ce205a7b529" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.x86_64-unknown-freebsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-x86_64-unknown-freebsd.tar.gz" +hash = "c276e9750912dc7306a26ef7bf955fa5d1a748d1d27701574ac95cece19753ee" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-x86_64-unknown-freebsd.tar.xz" +xz_hash = "209d8bb236bbfbfd245ddfdc75601f18037c644a4f1cf8cae069542537ed6828" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.x86_64-unknown-fuchsia] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.x86_64-unknown-illumos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-x86_64-unknown-illumos.tar.gz" +hash = "6d39bec95b8cc50952e2d64a62bbe1b6e0db3c56e17196ee0640e7c380503ca1" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-x86_64-unknown-illumos.tar.xz" +xz_hash = "a2c6056727a6b2d117f79d011c335e1989a5ff6bb026d2726b62929dbed2a248" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.x86_64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "55b57b2aff59cff2acffa1319513e7c74b0a09ef5a58e1d5f4beba4c8d911f7a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "037d534bb21bf1d833bb9ef6e2304878ecc5cc04176b6674a90a73fa7a4ac0b1" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.x86_64-unknown-linux-gnuasan] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.x86_64-unknown-linux-gnux32] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.x86_64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-x86_64-unknown-linux-musl.tar.gz" +hash = "010cd374389bd70a7d9b4dc07a9abe60098ade137189f1cba0940a8808ff8f59" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-x86_64-unknown-linux-musl.tar.xz" +xz_hash = "282ca0e104aed8a6eb4754471b2e7f66570ce6b16af9af56749026b088723672" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.x86_64-unknown-linux-ohos] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.x86_64-unknown-netbsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-x86_64-unknown-netbsd.tar.gz" +hash = "7b19139ab7538e87370118e3f036b68ad078a4b09c73e5bdc1d8d30c4bfd8f71" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/llvm-tools-1.95.0-x86_64-unknown-netbsd.tar.xz" +xz_hash = "927c88082aaf3bfa7d4ba3240eeb8a8039554d85b84977a89bc481176c52681f" +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.x86_64-unknown-none] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.x86_64-unknown-redox] +available = false +components = [] +extensions = [] + +[pkg.llvm-tools-preview.target.x86_64-unknown-uefi] +available = false +components = [] +extensions = [] + +[pkg.miri-preview] +version = "" + +[pkg.miri-preview.target.aarch64-apple-darwin] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.aarch64-pc-windows-gnullvm] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.aarch64-pc-windows-msvc] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.aarch64-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.aarch64-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.aarch64-unknown-linux-ohos] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.arm-unknown-linux-gnueabi] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.arm-unknown-linux-gnueabihf] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.armv7-unknown-linux-gnueabihf] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.i686-pc-windows-gnu] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.i686-pc-windows-msvc] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.i686-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.loongarch64-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.loongarch64-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.powerpc-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.powerpc64-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.powerpc64-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.powerpc64le-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.powerpc64le-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.riscv64gc-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.s390x-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.sparcv9-sun-solaris] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.x86_64-apple-darwin] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.x86_64-pc-solaris] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.x86_64-pc-windows-gnu] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.x86_64-pc-windows-gnullvm] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.x86_64-pc-windows-msvc] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.x86_64-unknown-freebsd] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.x86_64-unknown-illumos] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.x86_64-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.x86_64-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.miri-preview.target.x86_64-unknown-netbsd] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts] +version = "1.95.0 (59807616e 2026-04-14)" + +[pkg.reproducible-artifacts.target.aarch64-apple-darwin] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.aarch64-pc-windows-gnullvm] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.aarch64-pc-windows-msvc] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.aarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/reproducible-artifacts-1.95.0-aarch64-unknown-linux-gnu.tar.gz" +hash = "1d49f287fc2210f14bd488c530901fce8e7841dc54e14abc5664a0188b6e5202" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/reproducible-artifacts-1.95.0-aarch64-unknown-linux-gnu.tar.xz" +xz_hash = "41c31b8b9f209743a7c0f5bfea847078c6104ea67db08dc8a5d07ec038e00f20" +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.aarch64-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.aarch64-unknown-linux-ohos] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.arm-unknown-linux-gnueabi] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.arm-unknown-linux-gnueabihf] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.armv7-unknown-linux-gnueabihf] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.i686-pc-windows-gnu] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.i686-pc-windows-msvc] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.i686-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.loongarch64-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.loongarch64-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.powerpc-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.powerpc64-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.powerpc64-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.powerpc64le-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.powerpc64le-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.riscv64gc-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.s390x-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.sparcv9-sun-solaris] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.x86_64-apple-darwin] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.x86_64-pc-solaris] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.x86_64-pc-windows-gnu] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.x86_64-pc-windows-gnullvm] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.x86_64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/reproducible-artifacts-1.95.0-x86_64-pc-windows-msvc.tar.gz" +hash = "dca116542369f0b28350ea61391d0689e46ff4691186c0d5954d12828a9772b1" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/reproducible-artifacts-1.95.0-x86_64-pc-windows-msvc.tar.xz" +xz_hash = "7f201740207d0b2bd39be0086b8834aeae3fe5eaaef52a1fcaf69793a431ee97" +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.x86_64-unknown-freebsd] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.x86_64-unknown-illumos] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.x86_64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/reproducible-artifacts-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "82a292566816b4628ad39b5f454d955bf01481d40dbb6451f89dd6006b18dd03" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/reproducible-artifacts-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "be6b4df86a15fafa5fd9e5aeff425f69fac81f73499c3c2b4834bfd7a8eb2cc6" +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.x86_64-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.reproducible-artifacts.target.x86_64-unknown-netbsd] +available = false +components = [] +extensions = [] + +[pkg.rust] +version = "1.95.0 (59807616e 2026-04-14)" + +[pkg.rust.target.aarch64-apple-darwin] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-aarch64-apple-darwin.tar.gz" +hash = "ec23ad2e0e15a7397d2c3c232356149cc871b7df7f47e25c2acb1070157f5398" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-aarch64-apple-darwin.tar.xz" +xz_hash = "0382ac0e7acab0daa24710701442e9fd284148b75265bdb2f59e38b60b03ac3c" + +[[pkg.rust.target.aarch64-apple-darwin.components]] +pkg = "rustc" +target = "aarch64-apple-darwin" +is_extension = false + +[[pkg.rust.target.aarch64-apple-darwin.components]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = false + +[[pkg.rust.target.aarch64-apple-darwin.components]] +pkg = "cargo" +target = "aarch64-apple-darwin" +is_extension = false + +[[pkg.rust.target.aarch64-apple-darwin.components]] +pkg = "rust-docs" +target = "aarch64-apple-darwin" +is_extension = false + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-docs" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-analysis" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-analyzer-preview" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "clippy-preview" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustfmt-preview" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "llvm-tools-preview" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "miri-preview" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rust-docs-json-preview" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-apple-darwin.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "aarch64-apple-darwin" +is_extension = true + +[pkg.rust.target.aarch64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-aarch64-pc-windows-gnullvm.tar.gz" +hash = "7f15426892cee211a2f5a5d47468616651b8567419014a340583b48ad7717a15" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-aarch64-pc-windows-gnullvm.tar.xz" +xz_hash = "15b7d87892df805717834f0f5e91e0d8bbcc86e139e51908af60b5ec1edc96e0" + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.components]] +pkg = "rustc" +target = "aarch64-pc-windows-gnullvm" +is_extension = false + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.components]] +pkg = "rust-mingw" +target = "aarch64-pc-windows-gnullvm" +is_extension = false + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.components]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = false + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.components]] +pkg = "cargo" +target = "aarch64-pc-windows-gnullvm" +is_extension = false + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.components]] +pkg = "rust-docs" +target = "aarch64-pc-windows-gnullvm" +is_extension = false + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-docs" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-mingw" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-mingw" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-mingw" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-analysis" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-analyzer-preview" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "clippy-preview" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustfmt-preview" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "llvm-tools-preview" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "miri-preview" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rust-docs-json-preview" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-gnullvm.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[pkg.rust.target.aarch64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-aarch64-pc-windows-msvc.tar.gz" +hash = "9375ddb9889e808bb963ba85f3f58cb10556c23e448247eedfd5dd6f73b91dc3" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-aarch64-pc-windows-msvc.tar.xz" +xz_hash = "290449436a53076a6c81ac02071210dc3ebe75230398b3e9cf19fafc0a94cc60" + +[[pkg.rust.target.aarch64-pc-windows-msvc.components]] +pkg = "rustc" +target = "aarch64-pc-windows-msvc" +is_extension = false + +[[pkg.rust.target.aarch64-pc-windows-msvc.components]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = false + +[[pkg.rust.target.aarch64-pc-windows-msvc.components]] +pkg = "cargo" +target = "aarch64-pc-windows-msvc" +is_extension = false + +[[pkg.rust.target.aarch64-pc-windows-msvc.components]] +pkg = "rust-docs" +target = "aarch64-pc-windows-msvc" +is_extension = false + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-docs" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-analysis" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-analyzer-preview" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "clippy-preview" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustfmt-preview" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "llvm-tools-preview" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "miri-preview" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rust-docs-json-preview" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-pc-windows-msvc.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[pkg.rust.target.aarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-aarch64-unknown-linux-gnu.tar.gz" +hash = "3b9385d3144ac57616befa0ccbac524f857ba1b4ab074226e73a24d43568a98e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-aarch64-unknown-linux-gnu.tar.xz" +xz_hash = "094c9c36531911c5cc7dd6ab2d3069ab8dcd744d6239b0bda1387b243dfc391e" + +[[pkg.rust.target.aarch64-unknown-linux-gnu.components]] +pkg = "rustc" +target = "aarch64-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.aarch64-unknown-linux-gnu.components]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.aarch64-unknown-linux-gnu.components]] +pkg = "cargo" +target = "aarch64-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.aarch64-unknown-linux-gnu.components]] +pkg = "rust-docs" +target = "aarch64-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-docs" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-analysis" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-analyzer-preview" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "clippy-preview" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustfmt-preview" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "llvm-tools-preview" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "miri-preview" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rust-docs-json-preview" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-gnu.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[pkg.rust.target.aarch64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-aarch64-unknown-linux-musl.tar.gz" +hash = "ad35bcc6928ccb4fd8a12fe19ce88c8fb6e6e3690578a0cb4e0839008017484f" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-aarch64-unknown-linux-musl.tar.xz" +xz_hash = "97fd3b39cd533330e733056711c32d74097f7d6cb0f6dc65fb32fa8d0ce43388" + +[[pkg.rust.target.aarch64-unknown-linux-musl.components]] +pkg = "rustc" +target = "aarch64-unknown-linux-musl" +is_extension = false + +[[pkg.rust.target.aarch64-unknown-linux-musl.components]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = false + +[[pkg.rust.target.aarch64-unknown-linux-musl.components]] +pkg = "cargo" +target = "aarch64-unknown-linux-musl" +is_extension = false + +[[pkg.rust.target.aarch64-unknown-linux-musl.components]] +pkg = "rust-docs" +target = "aarch64-unknown-linux-musl" +is_extension = false + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-docs" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-analysis" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-analyzer-preview" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "clippy-preview" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustfmt-preview" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "llvm-tools-preview" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "miri-preview" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rust-docs-json-preview" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-musl.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[pkg.rust.target.aarch64-unknown-linux-ohos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-aarch64-unknown-linux-ohos.tar.gz" +hash = "f000ff833f75f348b3dabcdffc19e6ba619e7746ce8356f3696091de4da42a69" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-aarch64-unknown-linux-ohos.tar.xz" +xz_hash = "42bc29d60fee94e87d841e2dc2e295fa8c9f8907d9b986fd762be3db9904641c" + +[[pkg.rust.target.aarch64-unknown-linux-ohos.components]] +pkg = "rustc" +target = "aarch64-unknown-linux-ohos" +is_extension = false + +[[pkg.rust.target.aarch64-unknown-linux-ohos.components]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = false + +[[pkg.rust.target.aarch64-unknown-linux-ohos.components]] +pkg = "cargo" +target = "aarch64-unknown-linux-ohos" +is_extension = false + +[[pkg.rust.target.aarch64-unknown-linux-ohos.components]] +pkg = "rust-docs" +target = "aarch64-unknown-linux-ohos" +is_extension = false + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-docs" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-analysis" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-analyzer-preview" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "clippy-preview" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustfmt-preview" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "llvm-tools-preview" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "miri-preview" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rust-docs-json-preview" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.aarch64-unknown-linux-ohos.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[pkg.rust.target.arm-unknown-linux-gnueabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-arm-unknown-linux-gnueabi.tar.gz" +hash = "f0bd7b3c7292c5340df8e6441088d6a9372ef3c73619c36af0c3bb88865922ef" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-arm-unknown-linux-gnueabi.tar.xz" +xz_hash = "0a87e328c157ba8accb912689fb4cbbcfb4aa59eaddc9d7b58b152a40e797b6b" + +[[pkg.rust.target.arm-unknown-linux-gnueabi.components]] +pkg = "rustc" +target = "arm-unknown-linux-gnueabi" +is_extension = false + +[[pkg.rust.target.arm-unknown-linux-gnueabi.components]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = false + +[[pkg.rust.target.arm-unknown-linux-gnueabi.components]] +pkg = "cargo" +target = "arm-unknown-linux-gnueabi" +is_extension = false + +[[pkg.rust.target.arm-unknown-linux-gnueabi.components]] +pkg = "rust-docs" +target = "arm-unknown-linux-gnueabi" +is_extension = false + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-docs" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-analysis" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-analyzer-preview" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "clippy-preview" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustfmt-preview" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "llvm-tools-preview" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "miri-preview" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rust-docs-json-preview" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabi.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[pkg.rust.target.arm-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-arm-unknown-linux-gnueabihf.tar.gz" +hash = "7d742098e8bb0d10415775634eed83240ae88c1bae6bc73b470ccf0be4629b4c" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-arm-unknown-linux-gnueabihf.tar.xz" +xz_hash = "2ac21bfb86849e225700eea1f9db49a4238069cb7099b236bf478c2bc93977d7" + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.components]] +pkg = "rustc" +target = "arm-unknown-linux-gnueabihf" +is_extension = false + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.components]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = false + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.components]] +pkg = "cargo" +target = "arm-unknown-linux-gnueabihf" +is_extension = false + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.components]] +pkg = "rust-docs" +target = "arm-unknown-linux-gnueabihf" +is_extension = false + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-docs" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-analysis" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-analyzer-preview" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "clippy-preview" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustfmt-preview" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "llvm-tools-preview" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "miri-preview" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rust-docs-json-preview" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.arm-unknown-linux-gnueabihf.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[pkg.rust.target.armv7-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-armv7-unknown-linux-gnueabihf.tar.gz" +hash = "23a201e72c082c285e957a32b40e1c30805b15d344b84b984be3659e9aefadf6" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-armv7-unknown-linux-gnueabihf.tar.xz" +xz_hash = "111bcdf153df6e323e68ae1a812c3da736cc42e4846f24b1bd7ddb174a383b69" + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.components]] +pkg = "rustc" +target = "armv7-unknown-linux-gnueabihf" +is_extension = false + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.components]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = false + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.components]] +pkg = "cargo" +target = "armv7-unknown-linux-gnueabihf" +is_extension = false + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.components]] +pkg = "rust-docs" +target = "armv7-unknown-linux-gnueabihf" +is_extension = false + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-docs" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-analysis" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-analyzer-preview" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "clippy-preview" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustfmt-preview" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "llvm-tools-preview" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "miri-preview" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rust-docs-json-preview" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.armv7-unknown-linux-gnueabihf.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[pkg.rust.target.i686-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-i686-pc-windows-gnu.tar.gz" +hash = "48f3d4fb6016a9629d61353f4c212ceb299463a9d0ee18fe9d11eaea36c6df2d" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-i686-pc-windows-gnu.tar.xz" +xz_hash = "dd9939b4f65178a3094145c8bdebf9df7259bc920f2602adf2359c49e4ba9068" + +[[pkg.rust.target.i686-pc-windows-gnu.components]] +pkg = "rustc" +target = "i686-pc-windows-gnu" +is_extension = false + +[[pkg.rust.target.i686-pc-windows-gnu.components]] +pkg = "rust-mingw" +target = "i686-pc-windows-gnu" +is_extension = false + +[[pkg.rust.target.i686-pc-windows-gnu.components]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = false + +[[pkg.rust.target.i686-pc-windows-gnu.components]] +pkg = "cargo" +target = "i686-pc-windows-gnu" +is_extension = false + +[[pkg.rust.target.i686-pc-windows-gnu.components]] +pkg = "rust-docs" +target = "i686-pc-windows-gnu" +is_extension = false + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-docs" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-mingw" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-mingw" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-mingw" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-analysis" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-analyzer-preview" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "clippy-preview" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustfmt-preview" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "llvm-tools-preview" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "miri-preview" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rust-docs-json-preview" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-gnu.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "i686-pc-windows-gnu" +is_extension = true + +[pkg.rust.target.i686-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-i686-pc-windows-msvc.tar.gz" +hash = "7c4ae83f6583d1633f70bc9dae9c4e4ccb2a346cb7587d15199a521f168e0afd" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-i686-pc-windows-msvc.tar.xz" +xz_hash = "856da31d6aa60d621976dd05b149b883192252cc969fe70acf065b372be974ed" + +[[pkg.rust.target.i686-pc-windows-msvc.components]] +pkg = "rustc" +target = "i686-pc-windows-msvc" +is_extension = false + +[[pkg.rust.target.i686-pc-windows-msvc.components]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = false + +[[pkg.rust.target.i686-pc-windows-msvc.components]] +pkg = "cargo" +target = "i686-pc-windows-msvc" +is_extension = false + +[[pkg.rust.target.i686-pc-windows-msvc.components]] +pkg = "rust-docs" +target = "i686-pc-windows-msvc" +is_extension = false + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-docs" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-analysis" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-analyzer-preview" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "clippy-preview" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustfmt-preview" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "llvm-tools-preview" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "miri-preview" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rust-docs-json-preview" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-pc-windows-msvc.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "i686-pc-windows-msvc" +is_extension = true + +[pkg.rust.target.i686-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-i686-unknown-linux-gnu.tar.gz" +hash = "3ef2320bdfa9b69b19c6ca42f950b6bfb9d2af3b925b0c43a6bfecc4d355a66e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-i686-unknown-linux-gnu.tar.xz" +xz_hash = "49954c2ea9d36fea90169b350734b0eb4f53237f62274a73c68f315dcceb8fcd" + +[[pkg.rust.target.i686-unknown-linux-gnu.components]] +pkg = "rustc" +target = "i686-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.i686-unknown-linux-gnu.components]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.i686-unknown-linux-gnu.components]] +pkg = "cargo" +target = "i686-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.i686-unknown-linux-gnu.components]] +pkg = "rust-docs" +target = "i686-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-docs" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-analysis" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-analyzer-preview" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "clippy-preview" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustfmt-preview" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "llvm-tools-preview" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "miri-preview" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rust-docs-json-preview" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.i686-unknown-linux-gnu.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "i686-unknown-linux-gnu" +is_extension = true + +[pkg.rust.target.loongarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-loongarch64-unknown-linux-gnu.tar.gz" +hash = "18038ce7a910930c6742cc76e06fdd4b21b879466a3e67d63a0b6cae955bb4dc" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-loongarch64-unknown-linux-gnu.tar.xz" +xz_hash = "3ad6bd69588f12efd605a3974f352bf5e3c62d956e0d08453bec56842627aaf6" + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.components]] +pkg = "rustc" +target = "loongarch64-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.components]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.components]] +pkg = "cargo" +target = "loongarch64-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.components]] +pkg = "rust-docs" +target = "loongarch64-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-docs" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-analysis" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-analyzer-preview" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "clippy-preview" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustfmt-preview" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "llvm-tools-preview" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "miri-preview" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rust-docs-json-preview" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-gnu.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[pkg.rust.target.loongarch64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-loongarch64-unknown-linux-musl.tar.gz" +hash = "eef910858c7e833b13c9cb32e79e59d89434999bc2a7d0b6447ab4046eb40461" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-loongarch64-unknown-linux-musl.tar.xz" +xz_hash = "9f087d564fb8f68da783d71ffece1d189aaa4ab5e2ba03820f5345ff544c70a8" + +[[pkg.rust.target.loongarch64-unknown-linux-musl.components]] +pkg = "rustc" +target = "loongarch64-unknown-linux-musl" +is_extension = false + +[[pkg.rust.target.loongarch64-unknown-linux-musl.components]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = false + +[[pkg.rust.target.loongarch64-unknown-linux-musl.components]] +pkg = "cargo" +target = "loongarch64-unknown-linux-musl" +is_extension = false + +[[pkg.rust.target.loongarch64-unknown-linux-musl.components]] +pkg = "rust-docs" +target = "loongarch64-unknown-linux-musl" +is_extension = false + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-docs" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-analysis" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-analyzer-preview" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "clippy-preview" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustfmt-preview" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "llvm-tools-preview" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "miri-preview" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rust-docs-json-preview" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.loongarch64-unknown-linux-musl.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[pkg.rust.target.powerpc-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-powerpc-unknown-linux-gnu.tar.gz" +hash = "fe67810f2885cca37079e254edc6b2dd01207770eb5c26a0cc3d4dc4f792a51e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-powerpc-unknown-linux-gnu.tar.xz" +xz_hash = "5a0332509dae5f6a25f7b6d8dbaf7ff8389a091b5fcfa5248521f6f80c0bb3a2" + +[[pkg.rust.target.powerpc-unknown-linux-gnu.components]] +pkg = "rustc" +target = "powerpc-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.powerpc-unknown-linux-gnu.components]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.powerpc-unknown-linux-gnu.components]] +pkg = "cargo" +target = "powerpc-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.powerpc-unknown-linux-gnu.components]] +pkg = "rust-docs" +target = "powerpc-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-docs" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-analysis" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-analyzer-preview" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "clippy-preview" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustfmt-preview" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "llvm-tools-preview" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "miri-preview" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rust-docs-json-preview" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc-unknown-linux-gnu.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[pkg.rust.target.powerpc64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-powerpc64-unknown-linux-gnu.tar.gz" +hash = "6d89e3739cfb7b3a05880734513361d5860492385217dcd166d033f3e974e823" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-powerpc64-unknown-linux-gnu.tar.xz" +xz_hash = "8ec8f0ce92eadf6e9f3388165de23e3752cf260073ab46e89ee197e287f8a9f4" + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.components]] +pkg = "rustc" +target = "powerpc64-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.components]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.components]] +pkg = "cargo" +target = "powerpc64-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.components]] +pkg = "rust-docs" +target = "powerpc64-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-docs" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-analysis" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-analyzer-preview" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "clippy-preview" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustfmt-preview" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "llvm-tools-preview" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "miri-preview" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rust-docs-json-preview" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-gnu.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[pkg.rust.target.powerpc64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-powerpc64-unknown-linux-musl.tar.gz" +hash = "1f0dc9794cdb1bd1e603dfeb0aaff429420d74aa63f7ee73adce807c0e3735c8" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-powerpc64-unknown-linux-musl.tar.xz" +xz_hash = "d4269301ec1bb3d32f03d2712e1f372685fcf9a3bb18e136413d525e23b7d108" + +[[pkg.rust.target.powerpc64-unknown-linux-musl.components]] +pkg = "rustc" +target = "powerpc64-unknown-linux-musl" +is_extension = false + +[[pkg.rust.target.powerpc64-unknown-linux-musl.components]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = false + +[[pkg.rust.target.powerpc64-unknown-linux-musl.components]] +pkg = "cargo" +target = "powerpc64-unknown-linux-musl" +is_extension = false + +[[pkg.rust.target.powerpc64-unknown-linux-musl.components]] +pkg = "rust-docs" +target = "powerpc64-unknown-linux-musl" +is_extension = false + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-docs" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-analysis" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-analyzer-preview" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "clippy-preview" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustfmt-preview" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "llvm-tools-preview" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "miri-preview" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rust-docs-json-preview" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64-unknown-linux-musl.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[pkg.rust.target.powerpc64le-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-powerpc64le-unknown-linux-gnu.tar.gz" +hash = "29e3430f38406c926ee24ff911357dba0c46ff1d3ea59e91625b03677bd51b30" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-powerpc64le-unknown-linux-gnu.tar.xz" +xz_hash = "d301b5064ae68180ec1218b533ef0b26aaf83bba20720a0cbfdd1ad09f295133" + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.components]] +pkg = "rustc" +target = "powerpc64le-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.components]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.components]] +pkg = "cargo" +target = "powerpc64le-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.components]] +pkg = "rust-docs" +target = "powerpc64le-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-docs" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-analysis" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-analyzer-preview" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "clippy-preview" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustfmt-preview" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "llvm-tools-preview" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "miri-preview" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rust-docs-json-preview" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-gnu.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[pkg.rust.target.powerpc64le-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-powerpc64le-unknown-linux-musl.tar.gz" +hash = "b8856b651d64f4f4a2e2ee009366d99ea6135bdf88d15cf2134fc9e166745030" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-powerpc64le-unknown-linux-musl.tar.xz" +xz_hash = "07a43b4827a1c0b0c422131fc1cdc205afa7b89a53c504980aa92600910121be" + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.components]] +pkg = "rustc" +target = "powerpc64le-unknown-linux-musl" +is_extension = false + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.components]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = false + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.components]] +pkg = "cargo" +target = "powerpc64le-unknown-linux-musl" +is_extension = false + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.components]] +pkg = "rust-docs" +target = "powerpc64le-unknown-linux-musl" +is_extension = false + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-docs" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-analysis" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-analyzer-preview" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "clippy-preview" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustfmt-preview" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "llvm-tools-preview" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "miri-preview" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rust-docs-json-preview" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.powerpc64le-unknown-linux-musl.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[pkg.rust.target.riscv64gc-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-riscv64gc-unknown-linux-gnu.tar.gz" +hash = "8b527cb1a09f53f83aa3420b4e763c9ea64a54d89e6d7242da35c8aeaa325593" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-riscv64gc-unknown-linux-gnu.tar.xz" +xz_hash = "172b80cc2c600c2681f2a2199cee9f490427c2ba548ee9bd449483a0c34cd691" + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.components]] +pkg = "rustc" +target = "riscv64gc-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.components]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.components]] +pkg = "cargo" +target = "riscv64gc-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.components]] +pkg = "rust-docs" +target = "riscv64gc-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-docs" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-analysis" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-analyzer-preview" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "clippy-preview" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustfmt-preview" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "llvm-tools-preview" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "miri-preview" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rust-docs-json-preview" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.riscv64gc-unknown-linux-gnu.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[pkg.rust.target.s390x-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-s390x-unknown-linux-gnu.tar.gz" +hash = "e9598bdd3bc1438d965208ef5186f0dd671826cddd4bcbb20e22a3cec14c111d" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-s390x-unknown-linux-gnu.tar.xz" +xz_hash = "0f313ee40d8b94e7b86b9d0c02bddbae895cb8198e2cad4000e1e943452db1d0" + +[[pkg.rust.target.s390x-unknown-linux-gnu.components]] +pkg = "rustc" +target = "s390x-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.s390x-unknown-linux-gnu.components]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.s390x-unknown-linux-gnu.components]] +pkg = "cargo" +target = "s390x-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.s390x-unknown-linux-gnu.components]] +pkg = "rust-docs" +target = "s390x-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-docs" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-analysis" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-analyzer-preview" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "clippy-preview" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustfmt-preview" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "llvm-tools-preview" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "miri-preview" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rust-docs-json-preview" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.s390x-unknown-linux-gnu.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[pkg.rust.target.sparcv9-sun-solaris] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-sparcv9-sun-solaris.tar.gz" +hash = "6947fb19a6167a0b6bd54f281171395da956d05168e16a7d875f816f55fad145" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-sparcv9-sun-solaris.tar.xz" +xz_hash = "5395f74319e06bbd15d6983fdc72fe43830dfe80d1407c23a16b5ccf7dee0b26" + +[[pkg.rust.target.sparcv9-sun-solaris.components]] +pkg = "rustc" +target = "sparcv9-sun-solaris" +is_extension = false + +[[pkg.rust.target.sparcv9-sun-solaris.components]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = false + +[[pkg.rust.target.sparcv9-sun-solaris.components]] +pkg = "cargo" +target = "sparcv9-sun-solaris" +is_extension = false + +[[pkg.rust.target.sparcv9-sun-solaris.components]] +pkg = "rust-docs" +target = "sparcv9-sun-solaris" +is_extension = false + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-docs" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-analysis" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-analyzer-preview" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "clippy-preview" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustfmt-preview" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "llvm-tools-preview" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "miri-preview" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rust-docs-json-preview" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.sparcv9-sun-solaris.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "sparcv9-sun-solaris" +is_extension = true + +[pkg.rust.target.x86_64-apple-darwin] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-x86_64-apple-darwin.tar.gz" +hash = "3f3d9f29f8eb7aa821bd8531cb9b1c3c74c3976aa558dfabfcc15c2febb3cfb8" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-x86_64-apple-darwin.tar.xz" +xz_hash = "998af750fe2c28f0dbf193edc496c9a7407850486968f40ac11a8c8adfb7cfa6" + +[[pkg.rust.target.x86_64-apple-darwin.components]] +pkg = "rustc" +target = "x86_64-apple-darwin" +is_extension = false + +[[pkg.rust.target.x86_64-apple-darwin.components]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = false + +[[pkg.rust.target.x86_64-apple-darwin.components]] +pkg = "cargo" +target = "x86_64-apple-darwin" +is_extension = false + +[[pkg.rust.target.x86_64-apple-darwin.components]] +pkg = "rust-docs" +target = "x86_64-apple-darwin" +is_extension = false + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-docs" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-analysis" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-analyzer-preview" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "clippy-preview" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustfmt-preview" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "llvm-tools-preview" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "miri-preview" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rust-docs-json-preview" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-apple-darwin.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "x86_64-apple-darwin" +is_extension = true + +[pkg.rust.target.x86_64-pc-solaris] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-x86_64-pc-solaris.tar.gz" +hash = "9a5b59ed9c2f51c82c86dc134477359e778878ccc2388718ab6725af80e2f6a7" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-x86_64-pc-solaris.tar.xz" +xz_hash = "50e8ad6aec7a620daec654c755d4ab34be7da590b2a744eaa6425982fcbe0b97" + +[[pkg.rust.target.x86_64-pc-solaris.components]] +pkg = "rustc" +target = "x86_64-pc-solaris" +is_extension = false + +[[pkg.rust.target.x86_64-pc-solaris.components]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = false + +[[pkg.rust.target.x86_64-pc-solaris.components]] +pkg = "cargo" +target = "x86_64-pc-solaris" +is_extension = false + +[[pkg.rust.target.x86_64-pc-solaris.components]] +pkg = "rust-docs" +target = "x86_64-pc-solaris" +is_extension = false + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-docs" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-analysis" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-analyzer-preview" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "clippy-preview" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustfmt-preview" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "llvm-tools-preview" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "miri-preview" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rust-docs-json-preview" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-pc-solaris.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "x86_64-pc-solaris" +is_extension = true + +[pkg.rust.target.x86_64-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-x86_64-pc-windows-gnu.tar.gz" +hash = "c67c58a87260d2e6f0f5fffb588b5e502c96b8f3419b696457167039c0246d3a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-x86_64-pc-windows-gnu.tar.xz" +xz_hash = "c510ce34221cc4e8eff701001a991c78b53e2ea00e5cb0d77546b12af5fb3a03" + +[[pkg.rust.target.x86_64-pc-windows-gnu.components]] +pkg = "rustc" +target = "x86_64-pc-windows-gnu" +is_extension = false + +[[pkg.rust.target.x86_64-pc-windows-gnu.components]] +pkg = "rust-mingw" +target = "x86_64-pc-windows-gnu" +is_extension = false + +[[pkg.rust.target.x86_64-pc-windows-gnu.components]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = false + +[[pkg.rust.target.x86_64-pc-windows-gnu.components]] +pkg = "cargo" +target = "x86_64-pc-windows-gnu" +is_extension = false + +[[pkg.rust.target.x86_64-pc-windows-gnu.components]] +pkg = "rust-docs" +target = "x86_64-pc-windows-gnu" +is_extension = false + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-docs" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-mingw" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-mingw" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-mingw" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-analysis" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-analyzer-preview" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "clippy-preview" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustfmt-preview" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "llvm-tools-preview" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "miri-preview" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rust-docs-json-preview" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnu.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[pkg.rust.target.x86_64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-x86_64-pc-windows-gnullvm.tar.gz" +hash = "3dc3aede72452b9859f9506e4f5f54e1d932839773400aae0f337e022ec0f878" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-x86_64-pc-windows-gnullvm.tar.xz" +xz_hash = "78276511415ea592a37a6f8ad4744131851af39afb4d1bbd95787b688885d622" + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.components]] +pkg = "rustc" +target = "x86_64-pc-windows-gnullvm" +is_extension = false + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.components]] +pkg = "rust-mingw" +target = "x86_64-pc-windows-gnullvm" +is_extension = false + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.components]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = false + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.components]] +pkg = "cargo" +target = "x86_64-pc-windows-gnullvm" +is_extension = false + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.components]] +pkg = "rust-docs" +target = "x86_64-pc-windows-gnullvm" +is_extension = false + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-docs" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-mingw" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-mingw" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-mingw" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-analysis" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-analyzer-preview" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "clippy-preview" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustfmt-preview" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "llvm-tools-preview" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "miri-preview" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rust-docs-json-preview" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-gnullvm.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[pkg.rust.target.x86_64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-x86_64-pc-windows-msvc.tar.gz" +hash = "ee4f4d3b4c6c5b5374736c3296bec8fe5ba2c260a609e33297a9c6b681580757" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-x86_64-pc-windows-msvc.tar.xz" +xz_hash = "d36a10ebdc894d347f103e6553b65058d2d92ddf1132b64189c458ecef164231" + +[[pkg.rust.target.x86_64-pc-windows-msvc.components]] +pkg = "rustc" +target = "x86_64-pc-windows-msvc" +is_extension = false + +[[pkg.rust.target.x86_64-pc-windows-msvc.components]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = false + +[[pkg.rust.target.x86_64-pc-windows-msvc.components]] +pkg = "cargo" +target = "x86_64-pc-windows-msvc" +is_extension = false + +[[pkg.rust.target.x86_64-pc-windows-msvc.components]] +pkg = "rust-docs" +target = "x86_64-pc-windows-msvc" +is_extension = false + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-docs" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-analysis" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-analyzer-preview" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "clippy-preview" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustfmt-preview" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "llvm-tools-preview" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "miri-preview" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rust-docs-json-preview" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-pc-windows-msvc.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[pkg.rust.target.x86_64-unknown-freebsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-x86_64-unknown-freebsd.tar.gz" +hash = "0ffb7aa1999ea12363bbfaea500e152565bb4918ad5a73e9713be40510d75e49" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-x86_64-unknown-freebsd.tar.xz" +xz_hash = "226f146a6c23aeb359ae299386d7dae2e8578f9116948610015fdcbb822d1a39" + +[[pkg.rust.target.x86_64-unknown-freebsd.components]] +pkg = "rustc" +target = "x86_64-unknown-freebsd" +is_extension = false + +[[pkg.rust.target.x86_64-unknown-freebsd.components]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = false + +[[pkg.rust.target.x86_64-unknown-freebsd.components]] +pkg = "cargo" +target = "x86_64-unknown-freebsd" +is_extension = false + +[[pkg.rust.target.x86_64-unknown-freebsd.components]] +pkg = "rust-docs" +target = "x86_64-unknown-freebsd" +is_extension = false + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-docs" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-analysis" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-analyzer-preview" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "clippy-preview" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustfmt-preview" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "llvm-tools-preview" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "miri-preview" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rust-docs-json-preview" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-freebsd.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "x86_64-unknown-freebsd" +is_extension = true + +[pkg.rust.target.x86_64-unknown-illumos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-x86_64-unknown-illumos.tar.gz" +hash = "8ffcdf78641c2ebc2ab6de3e47461d0a5a3429553a37b950247bd04ade505f0d" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-x86_64-unknown-illumos.tar.xz" +xz_hash = "b1725706daaf2ce89f3ed93362b042caafd53e6990fa7202b0139f61b080fc88" + +[[pkg.rust.target.x86_64-unknown-illumos.components]] +pkg = "rustc" +target = "x86_64-unknown-illumos" +is_extension = false + +[[pkg.rust.target.x86_64-unknown-illumos.components]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = false + +[[pkg.rust.target.x86_64-unknown-illumos.components]] +pkg = "cargo" +target = "x86_64-unknown-illumos" +is_extension = false + +[[pkg.rust.target.x86_64-unknown-illumos.components]] +pkg = "rust-docs" +target = "x86_64-unknown-illumos" +is_extension = false + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-docs" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-analysis" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-analyzer-preview" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "clippy-preview" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustfmt-preview" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "llvm-tools-preview" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "miri-preview" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rust-docs-json-preview" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-illumos.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "x86_64-unknown-illumos" +is_extension = true + +[pkg.rust.target.x86_64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "a47ac940abd12399d59ad15c877e7113fa35f2b9ec7e6a8a045d4fd8b9741dea" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "2e0338f18ecbaa4a0f631b9e80e8b8e26bb6fe77dd5454fba8a70cf96c1e84a1" + +[[pkg.rust.target.x86_64-unknown-linux-gnu.components]] +pkg = "rustc" +target = "x86_64-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.x86_64-unknown-linux-gnu.components]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.x86_64-unknown-linux-gnu.components]] +pkg = "cargo" +target = "x86_64-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.x86_64-unknown-linux-gnu.components]] +pkg = "rust-docs" +target = "x86_64-unknown-linux-gnu" +is_extension = false + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-docs" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-analysis" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-analyzer-preview" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "clippy-preview" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustfmt-preview" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "llvm-tools-preview" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "miri-preview" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rust-docs-json-preview" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-gnu.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[pkg.rust.target.x86_64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-x86_64-unknown-linux-musl.tar.gz" +hash = "059086762ac6f4ebe15b5b10e629e4e33e96b372765e65741251f75c4fdfb4e0" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-x86_64-unknown-linux-musl.tar.xz" +xz_hash = "09058ac71ef6ff87184991a20cb42f0bfcc74f174947cc45e384ac9735366f86" + +[[pkg.rust.target.x86_64-unknown-linux-musl.components]] +pkg = "rustc" +target = "x86_64-unknown-linux-musl" +is_extension = false + +[[pkg.rust.target.x86_64-unknown-linux-musl.components]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = false + +[[pkg.rust.target.x86_64-unknown-linux-musl.components]] +pkg = "cargo" +target = "x86_64-unknown-linux-musl" +is_extension = false + +[[pkg.rust.target.x86_64-unknown-linux-musl.components]] +pkg = "rust-docs" +target = "x86_64-unknown-linux-musl" +is_extension = false + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-docs" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-analysis" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-analyzer-preview" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "clippy-preview" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustfmt-preview" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "llvm-tools-preview" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "miri-preview" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rust-docs-json-preview" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-linux-musl.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[pkg.rust.target.x86_64-unknown-netbsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-x86_64-unknown-netbsd.tar.gz" +hash = "21d78ce84affe709828ee2602acc3a8b68170acdc6c4b973d96b7b165956d6ed" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-1.95.0-x86_64-unknown-netbsd.tar.xz" +xz_hash = "a23080886b46318ea910da8fda91cd9a17c33c2c7e9709b5fbee2454a2a82750" + +[[pkg.rust.target.x86_64-unknown-netbsd.components]] +pkg = "rustc" +target = "x86_64-unknown-netbsd" +is_extension = false + +[[pkg.rust.target.x86_64-unknown-netbsd.components]] +pkg = "rust-std" +target = "x86_64-unknown-netbsd" +is_extension = false + +[[pkg.rust.target.x86_64-unknown-netbsd.components]] +pkg = "cargo" +target = "x86_64-unknown-netbsd" +is_extension = false + +[[pkg.rust.target.x86_64-unknown-netbsd.components]] +pkg = "rust-docs" +target = "x86_64-unknown-netbsd" +is_extension = false + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-dev" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-docs" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "aarch64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "aarch64-apple-ios-sim" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "aarch64-apple-tvos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "aarch64-apple-visionos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "aarch64-apple-watchos-sim" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "aarch64-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "aarch64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "aarch64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "arm-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "arm-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "arm64ec-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "armv5te-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "armv7-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-musleabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "armv7-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "armv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "armv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "armv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "i586-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "i686-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "i686-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "i686-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "i686-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "i686-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "loongarch64-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "nvptx64-nvidia-cuda" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "powerpc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "powerpc64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "powerpc64le-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "riscv32i-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "riscv32im-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "riscv32imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "riscv32imafc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "riscv32imc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "riscv64a23-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "riscv64gc-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "riscv64imac-unknown-none-elf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "s390x-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "s390x-unknown-none-softfloat" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "sparc64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "sparcv9-sun-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "thumbv6m-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "thumbv7a-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "thumbv7em-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "thumbv7m-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "thumbv7neon-linux-androideabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "thumbv7neon-unknown-linux-gnueabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "thumbv7r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "thumbv8m.base-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "thumbv8m.main-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "thumbv8r-none-eabihf" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-emscripten" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "wasm32-unknown-unknown" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "wasm32-wasip1-threads" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "wasm32-wasip2" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "wasm32v1-none" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "x86_64-apple-darwin" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "x86_64-apple-ios-macabi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "x86_64-fortanix-unknown-sgx" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "x86_64-linux-android" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "x86_64-pc-solaris" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-gnullvm" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-freebsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-fuchsia" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-illumos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnu" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnuasan" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-gnux32" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-musl" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-linux-ohos" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-none" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-redox" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-std" +target = "x86_64-unknown-uefi" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-analysis" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-analyzer-preview" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "clippy-preview" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustfmt-preview" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "llvm-tools-preview" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "miri-preview" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rust-docs-json-preview" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-codegen-cranelift-preview" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "llvm-bitcode-linker-preview" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "rustc-codegen-gcc-preview" +target = "x86_64-unknown-netbsd" +is_extension = true + +[[pkg.rust.target.x86_64-unknown-netbsd.extensions]] +pkg = "gcc-x86_64-unknown-linux-gnu-preview" +target = "x86_64-unknown-netbsd" +is_extension = true + +[pkg.rust-analysis] +version = "1.95.0 (59807616e 2026-04-14)" + +[pkg.rust-analysis.target.aarch64-apple-darwin] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-apple-darwin.tar.gz" +hash = "4885591da0bdba63b14d90bb2bde5c70051761516f9ccede6db3e20b41bf2f60" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-apple-darwin.tar.xz" +xz_hash = "4e975cb5842c49d62079bbbe7b06b7430ad5ae83784b252ccb6e28002aa8cc33" +components = [] +extensions = [] + +[pkg.rust-analysis.target.aarch64-apple-ios] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-apple-ios.tar.gz" +hash = "191eda6888f65a56215053190df6b2fb88688edb2a7d4afbe0338cabde72b74c" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-apple-ios.tar.xz" +xz_hash = "989141adc4154d4e9be32cf2bde65539bcad289d9d0c7459207bb22b7fe95001" +components = [] +extensions = [] + +[pkg.rust-analysis.target.aarch64-apple-ios-macabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-apple-ios-macabi.tar.gz" +hash = "1614927c692c7da55687c20653e0d3202b617334b3fdd8ff891786163331a7cb" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-apple-ios-macabi.tar.xz" +xz_hash = "ab44515b0d4712624e58a0cadacf333dadee54fc494cb6798d5b003d529de6e4" +components = [] +extensions = [] + +[pkg.rust-analysis.target.aarch64-apple-ios-sim] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-apple-ios-sim.tar.gz" +hash = "71a3b97e50c95c75d861d7f450c254ecbab1c90316a60d2f13013b76dd799b19" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-apple-ios-sim.tar.xz" +xz_hash = "b522c9ae938abfe91558666ffd08e72f6490c4310c75a3baf6f75efeb6a9f75a" +components = [] +extensions = [] + +[pkg.rust-analysis.target.aarch64-apple-tvos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-apple-tvos.tar.gz" +hash = "37308eee8d6613c676f6b657e7d1d1057d85381f178aa2e3e3a4450bfbc437cc" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-apple-tvos.tar.xz" +xz_hash = "1b85d50d560ffe3448fc0eff618bf39d9fd00182172f45455d22c05149b15146" +components = [] +extensions = [] + +[pkg.rust-analysis.target.aarch64-apple-tvos-sim] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-apple-tvos-sim.tar.gz" +hash = "8a091b1f7aeb1e8b702800b22860844f5124a7e2ad3e8f730998ffc7832b3ef0" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-apple-tvos-sim.tar.xz" +xz_hash = "6be5c9db6c1a91ac4fb3963a56779c97bdce1a74893d3294459805dd3c29dab0" +components = [] +extensions = [] + +[pkg.rust-analysis.target.aarch64-apple-visionos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-apple-visionos.tar.gz" +hash = "c8b351746b2213fe83ef68fbc9eb24e0463cafb97ec5efb915612f9c8f14c23a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-apple-visionos.tar.xz" +xz_hash = "8e00e4741f4befdd37b7e2b9ff12dd7e1b44e40c9e95927044fd0efcfc3b84e8" +components = [] +extensions = [] + +[pkg.rust-analysis.target.aarch64-apple-visionos-sim] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-apple-visionos-sim.tar.gz" +hash = "f20aec31709374d1af505e364f7095118a689d93ddfed555f730d92e4b3c612e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-apple-visionos-sim.tar.xz" +xz_hash = "1e72ed024501cc0f3aafffd184212ce920ae5481bf8b417cdae5c69b7f40d3cf" +components = [] +extensions = [] + +[pkg.rust-analysis.target.aarch64-apple-watchos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-apple-watchos.tar.gz" +hash = "7b2a5145de83d279cc88aac5ea3aebdcee858c0673055564dfd64ca34c1300f1" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-apple-watchos.tar.xz" +xz_hash = "80bf42cd55d66dda14af88289d476a25cdc17637d871e7645d1b08fc96b61885" +components = [] +extensions = [] + +[pkg.rust-analysis.target.aarch64-apple-watchos-sim] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-apple-watchos-sim.tar.gz" +hash = "714893c00e689091853883b208b49a12de7bb54b9f262308cece6057161592aa" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-apple-watchos-sim.tar.xz" +xz_hash = "61cd853e8569651210904ca0f601bbbb3a12ea4e30dd5dba91e282e99962472d" +components = [] +extensions = [] + +[pkg.rust-analysis.target.aarch64-linux-android] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-linux-android.tar.gz" +hash = "89a40688df6ce29e8d9fea274ac6531cc29b3706e0d3f76f0481bb698bf5b457" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-linux-android.tar.xz" +xz_hash = "535a172f3e84d49257aa84a97e6b787384ebd7e09b767f3471a1dccd7ebb1391" +components = [] +extensions = [] + +[pkg.rust-analysis.target.aarch64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-pc-windows-gnullvm.tar.gz" +hash = "055a260ea88c418f7e57c1d4c728ae0f8e08c2afb9c112078747315e824cb1c6" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-pc-windows-gnullvm.tar.xz" +xz_hash = "376791ff55f787ec826ea601041e6a01803a1b635a0ecb80cb4c38e08b0c1c00" +components = [] +extensions = [] + +[pkg.rust-analysis.target.aarch64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-pc-windows-msvc.tar.gz" +hash = "38005e579a147f5aed97d238a07c98bd3d8a556c2a37066b3f603019311e9247" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-pc-windows-msvc.tar.xz" +xz_hash = "15fafb97876bbfb797ec77f79165cfad7d40291b2f73a69f43a2cfbb8ce8008c" +components = [] +extensions = [] + +[pkg.rust-analysis.target.aarch64-unknown-fuchsia] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-unknown-fuchsia.tar.gz" +hash = "51f680b9f23f458a31a87d46f5b18242329449738a003ba21b1af988a7731d79" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-unknown-fuchsia.tar.xz" +xz_hash = "425369d66224428f9fef7a49a11017597a04e0e6a2929fede0a17df40440dbc4" +components = [] +extensions = [] + +[pkg.rust-analysis.target.aarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-unknown-linux-gnu.tar.gz" +hash = "60522606ad503e8af6b34fa78201b09ae38d2b0161af86a99a4c443ceb4e3eea" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-unknown-linux-gnu.tar.xz" +xz_hash = "4ccb4483ec846aee9ecaea933e2264fefa6189ac33766bf0a10f3561418da1a7" +components = [] +extensions = [] + +[pkg.rust-analysis.target.aarch64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-unknown-linux-musl.tar.gz" +hash = "d8f9a7ca20e26e813e42f0d32d3e82bd6df2e75917f08c700889bd7277e273db" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-unknown-linux-musl.tar.xz" +xz_hash = "ac092c2ab5f47156c57a7a39f997eb3f38bc21843053c2e02a856a012408d28f" +components = [] +extensions = [] + +[pkg.rust-analysis.target.aarch64-unknown-linux-ohos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-unknown-linux-ohos.tar.gz" +hash = "67d1cdfc09704fd780a51298beb520ac77bae6298f0be1e8a64756c1e0e1d24f" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-unknown-linux-ohos.tar.xz" +xz_hash = "2ddc85d128810a634e37da38963f3670f5fe822dee0f4cd4b476547f3b56d730" +components = [] +extensions = [] + +[pkg.rust-analysis.target.aarch64-unknown-none] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-unknown-none.tar.gz" +hash = "4b63e3e3d366fb25eb5863b4c712292addf595350ef9f2a62f24db6f2c6f2445" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-unknown-none.tar.xz" +xz_hash = "1c3fac647b122cbe59f90d86d4c27423c032cc8e5d805bd8513e645b2e5cd93c" +components = [] +extensions = [] + +[pkg.rust-analysis.target.aarch64-unknown-none-softfloat] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-unknown-none-softfloat.tar.gz" +hash = "f939be7c3b5d11bca0b4257c66f6b37555991b4f48d8461a23d5038ae7c3c357" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-unknown-none-softfloat.tar.xz" +xz_hash = "447b3b58cc1ff20bf406827914dd6e42e57b4d2c8deca5beeda408cf53752620" +components = [] +extensions = [] + +[pkg.rust-analysis.target.aarch64-unknown-uefi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-unknown-uefi.tar.gz" +hash = "5cc2c2a5ec2f671a1839fe25ba991dac8e90c3468febe8393d03ce9004f4986b" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-aarch64-unknown-uefi.tar.xz" +xz_hash = "2493dc55c0bed90f804af9e97355d5fba9c3d26484023d6d2808f7c2a5786b45" +components = [] +extensions = [] + +[pkg.rust-analysis.target.arm-linux-androideabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-arm-linux-androideabi.tar.gz" +hash = "2305bd2596246fa9b8fe76d7a0783d4043912ab29fa3c785591797a8b95e3101" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-arm-linux-androideabi.tar.xz" +xz_hash = "6bb681198a8ab7e12f422c58e6d63db27a0b13a9b7509e60f4c315d496dc4919" +components = [] +extensions = [] + +[pkg.rust-analysis.target.arm-unknown-linux-gnueabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-arm-unknown-linux-gnueabi.tar.gz" +hash = "cc5cdd40052ea64905b131c7b23809fa891b8ed42f7bd2573aec659c65e7860e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-arm-unknown-linux-gnueabi.tar.xz" +xz_hash = "e2be15200ff7f8b0d408e0b7baf68213cdc0eb4864d84ed9ebc4b31244cc7232" +components = [] +extensions = [] + +[pkg.rust-analysis.target.arm-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-arm-unknown-linux-gnueabihf.tar.gz" +hash = "8480629cf3b2309948aeab72228ba60939c22127a67aaae74ffbab13cfc830d4" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-arm-unknown-linux-gnueabihf.tar.xz" +xz_hash = "ec34988f6f855454045cd938db95c9cd17978342a07a1da55ff8cacb20836c2b" +components = [] +extensions = [] + +[pkg.rust-analysis.target.arm-unknown-linux-musleabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-arm-unknown-linux-musleabi.tar.gz" +hash = "9507de9ebeb542c77b15bba0aab7577e50a7ebac90fadd7c771120473377f476" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-arm-unknown-linux-musleabi.tar.xz" +xz_hash = "2d7d01532ddeb5eae1443c649fc65ebbade9a73eb13475157a7ea62bd9b02580" +components = [] +extensions = [] + +[pkg.rust-analysis.target.arm-unknown-linux-musleabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-arm-unknown-linux-musleabihf.tar.gz" +hash = "c06024b35fdea6424ee30cb5f6d9b80e3b40c649fcd01e91a19d612a7d33086a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-arm-unknown-linux-musleabihf.tar.xz" +xz_hash = "640ce10d39f79a699fd7c00aa5ff60c0a7beb3c2f94967d802200fa222922309" +components = [] +extensions = [] + +[pkg.rust-analysis.target.arm64ec-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-arm64ec-pc-windows-msvc.tar.gz" +hash = "06196fbc2f1655c6cd6de7f793bbdd6556271df60c6e935e78ab77ba8961f42d" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-arm64ec-pc-windows-msvc.tar.xz" +xz_hash = "8ca13bf76e3d06650f88acb28f1b39a9d8b5ce6d2d85c4219612e563f46462fe" +components = [] +extensions = [] + +[pkg.rust-analysis.target.armv5te-unknown-linux-gnueabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-armv5te-unknown-linux-gnueabi.tar.gz" +hash = "b21cd4964e59f2adf28e976162cd9f13d3fb816b642a77dbdfc7877c402956e9" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-armv5te-unknown-linux-gnueabi.tar.xz" +xz_hash = "a22be357332c30b547337af6ec4a8bcb2a568b871e221faa1a690f53bfc91eb3" +components = [] +extensions = [] + +[pkg.rust-analysis.target.armv5te-unknown-linux-musleabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-armv5te-unknown-linux-musleabi.tar.gz" +hash = "69be85991f916317694babb29949c276a2b63a885f881ae000630246fb83ea24" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-armv5te-unknown-linux-musleabi.tar.xz" +xz_hash = "b8b6235ba5152f413eb5f094f56264046f0e0adac540694eb0db9fe8ba876ea7" +components = [] +extensions = [] + +[pkg.rust-analysis.target.armv7-linux-androideabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-armv7-linux-androideabi.tar.gz" +hash = "6ae160fe33535e9f4e7f0ece0ff6d8b4a1709f8ff1ec15dff2c1a8854000e7ae" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-armv7-linux-androideabi.tar.xz" +xz_hash = "4da5691a0a12f6adfba6ad90d6831a3d702154d0ab700572d19fcbb877d1d0aa" +components = [] +extensions = [] + +[pkg.rust-analysis.target.armv7-unknown-linux-gnueabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-armv7-unknown-linux-gnueabi.tar.gz" +hash = "aff50ec8ce1b1e374fb05d4ee6c969d20682563fcc9e9ee31abcd0cea65df9e8" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-armv7-unknown-linux-gnueabi.tar.xz" +xz_hash = "dab14e9bc9debc781cd19a91db5d2d4821f6839e413b4e7d53cb8ed79a85413d" +components = [] +extensions = [] + +[pkg.rust-analysis.target.armv7-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-armv7-unknown-linux-gnueabihf.tar.gz" +hash = "0463a6398fb7092b5b8d79a0312b36c7edba72097e08ed3eb0caca6b107946ff" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-armv7-unknown-linux-gnueabihf.tar.xz" +xz_hash = "0c367273e81dd21df10ea9579860854415bb019e1107d6f39c762cdf50930a36" +components = [] +extensions = [] + +[pkg.rust-analysis.target.armv7-unknown-linux-musleabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-armv7-unknown-linux-musleabi.tar.gz" +hash = "18fd6521c3937a408ab167e25257fdcb9b5adcc8bcf22e5bc7cd6e755df59d0f" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-armv7-unknown-linux-musleabi.tar.xz" +xz_hash = "a3eaeb083882d37b140db0c37ef38bc00d352a52c6158f2e9b1767305c9ce682" +components = [] +extensions = [] + +[pkg.rust-analysis.target.armv7-unknown-linux-musleabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-armv7-unknown-linux-musleabihf.tar.gz" +hash = "5ff76007d4209791042f3eb17eb39e56c332b7af98abd4501a57b4163c1d607e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-armv7-unknown-linux-musleabihf.tar.xz" +xz_hash = "8d6efb327d2f6868663a59b4a9d9a3e6089553078aba56790a089a02919b0188" +components = [] +extensions = [] + +[pkg.rust-analysis.target.armv7-unknown-linux-ohos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-armv7-unknown-linux-ohos.tar.gz" +hash = "f04c18c257bdadcdf8e1bc00e29360f616ef08a92d0184e94e2269b25846fe77" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-armv7-unknown-linux-ohos.tar.xz" +xz_hash = "b8baaa54a5ce530c530f3fd454f2b11eca3525982d03c55b090cb8487b8a3e08" +components = [] +extensions = [] + +[pkg.rust-analysis.target.armv7a-none-eabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-armv7a-none-eabi.tar.gz" +hash = "5b7df47ba92c5f67339bae53429b713bf0775bb02669515b7748e2643760da36" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-armv7a-none-eabi.tar.xz" +xz_hash = "c32514c7e2e549d64640c8c5e704d46056d3dba6993ffee41b51bfe0811c42ee" +components = [] +extensions = [] + +[pkg.rust-analysis.target.armv7a-none-eabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-armv7a-none-eabihf.tar.gz" +hash = "e570f3bcd2e714a81dac4a6a6bea0c2c863e9487fc9f1461b0ebb5c2e8e3355e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-armv7a-none-eabihf.tar.xz" +xz_hash = "051b129c503a41f6f46a8aee64dfcfbc2616adbd315b5f922dd83bb2da154bb5" +components = [] +extensions = [] + +[pkg.rust-analysis.target.armv7r-none-eabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-armv7r-none-eabi.tar.gz" +hash = "d051143bc6af33c5241dc75acda7b6b4ae275dbec9039b9c3e3956f71468c3db" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-armv7r-none-eabi.tar.xz" +xz_hash = "72faca45d6d80882333bca1e56e1f997849a65ccb60e3a28c1ea2157f14bdffb" +components = [] +extensions = [] + +[pkg.rust-analysis.target.armv7r-none-eabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-armv7r-none-eabihf.tar.gz" +hash = "4718972c86bd098956c85fb8aa83d2c0b00a74080062658a33446441113f472e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-armv7r-none-eabihf.tar.xz" +xz_hash = "81ae1297420044d4ae9dfcb0e2f1f85d46aa6624776cf6883828b66cf3b98144" +components = [] +extensions = [] + +[pkg.rust-analysis.target.armv8r-none-eabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-armv8r-none-eabihf.tar.gz" +hash = "f3b311a9df4174d9cd461b3e7eb582c9a88a9dbb7ba228bd3301859e1bf4c74b" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-armv8r-none-eabihf.tar.xz" +xz_hash = "c53bad2aeb71f6506f20e3250cb43f3e80f0fc296a055f28dc056a79584bb8e1" +components = [] +extensions = [] + +[pkg.rust-analysis.target.i586-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-i586-unknown-linux-gnu.tar.gz" +hash = "bdfd639d15db9ba9e151338945fa4ffabf8fde5d87e9f6f98326bed641cf7699" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-i586-unknown-linux-gnu.tar.xz" +xz_hash = "6de3516801908fc35d8c60f93da979773b0741c21a01c8cb700be6065b87d3af" +components = [] +extensions = [] + +[pkg.rust-analysis.target.i586-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-i586-unknown-linux-musl.tar.gz" +hash = "28a870ad86fbf08d1093453841620d1c257612d3ab860ba5ae7e3be956ec39b9" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-i586-unknown-linux-musl.tar.xz" +xz_hash = "b5ec5c2809360322b885dd15eaf7f19a3973a5e96c0ab84192bfa67128bcdec7" +components = [] +extensions = [] + +[pkg.rust-analysis.target.i686-linux-android] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-i686-linux-android.tar.gz" +hash = "7940a55eb3c9f2251c409166f990a569709364c957fb280a2e4671a3c1acb324" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-i686-linux-android.tar.xz" +xz_hash = "0f38657ac24710669c2fbfbc772f717578c53392fa276b45887811b37115aa5a" +components = [] +extensions = [] + +[pkg.rust-analysis.target.i686-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-i686-pc-windows-gnu.tar.gz" +hash = "3729051113836c2943f36568b8603b2e2343a76557b3463cf5ca59221236d26f" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-i686-pc-windows-gnu.tar.xz" +xz_hash = "14f076fc9000a9dddd3157eda06c7eac2f6a494762a8d42e4986dea3857cc31f" +components = [] +extensions = [] + +[pkg.rust-analysis.target.i686-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-i686-pc-windows-gnullvm.tar.gz" +hash = "100943c70714b8bbf47e6577d384806b921f3bdd28d6ddcf33ab81b1ad4cc671" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-i686-pc-windows-gnullvm.tar.xz" +xz_hash = "f583741f3ce943cbb37f7032ebce6903bca35920c8eb16205ff6b0d42cc6c8ed" +components = [] +extensions = [] + +[pkg.rust-analysis.target.i686-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-i686-pc-windows-msvc.tar.gz" +hash = "0a5839436713f2dde3a89f3e98ad8505c6f12f7b0402716bf59e7dc4fad9eb70" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-i686-pc-windows-msvc.tar.xz" +xz_hash = "4ca7b1136bbf5e881f0d1ac1bada4258253dabd259d3d97c269774c47a312df8" +components = [] +extensions = [] + +[pkg.rust-analysis.target.i686-unknown-freebsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-i686-unknown-freebsd.tar.gz" +hash = "b8abcfdaabb88488133ff8fc9af83fa598c539329d7ebdcbf27a3555e121bce0" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-i686-unknown-freebsd.tar.xz" +xz_hash = "be57fb2a28690547d6b66ca874f96fd3196ca561b52c78b8f6070a313b9ac69b" +components = [] +extensions = [] + +[pkg.rust-analysis.target.i686-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-i686-unknown-linux-gnu.tar.gz" +hash = "47334806f2e4c7064ffeac22590b39981ac0723ab7ea815f88609fe5ce5eeb20" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-i686-unknown-linux-gnu.tar.xz" +xz_hash = "334b6b51f571ffb763c95250507b4b1725776c1294460493c69c871c8eb0e7c4" +components = [] +extensions = [] + +[pkg.rust-analysis.target.i686-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-i686-unknown-linux-musl.tar.gz" +hash = "57eef48b734bc57e46cae090841dc8b3370e79465a71ee94bacfcd140c49d63d" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-i686-unknown-linux-musl.tar.xz" +xz_hash = "15203371830e59943faaeb1c8d14ee688db0c9a49946f7687826859b3313fb0c" +components = [] +extensions = [] + +[pkg.rust-analysis.target.i686-unknown-uefi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-i686-unknown-uefi.tar.gz" +hash = "bb3aca7a9846f4907d6fc62bdcebfde3a4424e21c8427afbf5f32d1088c9e3d6" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-i686-unknown-uefi.tar.xz" +xz_hash = "516db065bc922c68716356b731c696a2906f98cea44dc1b01042170023c05234" +components = [] +extensions = [] + +[pkg.rust-analysis.target.loongarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-loongarch64-unknown-linux-gnu.tar.gz" +hash = "7319e994b791f9d07ebed124b2455db28e8a24d8b14ea2e26fd5736bc903f617" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-loongarch64-unknown-linux-gnu.tar.xz" +xz_hash = "6a886b3663ebfed7a12b3c029e2280a1c2857a41fbb789676f375edebf7c9e73" +components = [] +extensions = [] + +[pkg.rust-analysis.target.loongarch64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-loongarch64-unknown-linux-musl.tar.gz" +hash = "da3debf432fa07b17d32f7be4b8866f19f06bde948ec47b3e2cc48fe850fc309" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-loongarch64-unknown-linux-musl.tar.xz" +xz_hash = "ce93bcbc4d0a2571ce29c7d6cd036f38c3d32bec0a958087b66a4270b2cdac61" +components = [] +extensions = [] + +[pkg.rust-analysis.target.loongarch64-unknown-none] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-loongarch64-unknown-none.tar.gz" +hash = "96f03120fe237a12467c6a4e026ff317f5766fc74283f0eb70f2fbb25709ab47" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-loongarch64-unknown-none.tar.xz" +xz_hash = "157c712967081b1f07717e01d9f6c85f812ba01b59d5ca638eea4cb7e7bd894d" +components = [] +extensions = [] + +[pkg.rust-analysis.target.loongarch64-unknown-none-softfloat] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-loongarch64-unknown-none-softfloat.tar.gz" +hash = "5028236197bc0c1c40b768675ca3de438c0f88c3a433fc497b9008651470d946" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-loongarch64-unknown-none-softfloat.tar.xz" +xz_hash = "6e1eaabd59d654b05482869296bb54587558c0af20d8f2aa1aeb2596e85d783d" +components = [] +extensions = [] + +[pkg.rust-analysis.target.nvptx64-nvidia-cuda] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-nvptx64-nvidia-cuda.tar.gz" +hash = "0efb380b7ff4fc3b969ae067a9b3ffb1027b2425187bc21915f4459e8c8fcaa2" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-nvptx64-nvidia-cuda.tar.xz" +xz_hash = "18a7c8e481ffa33e91289ea845150bb41252a3a414c8f94fc8717b53efa6d011" +components = [] +extensions = [] + +[pkg.rust-analysis.target.powerpc-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-powerpc-unknown-linux-gnu.tar.gz" +hash = "f43f7c50d873a877573a80c31fb216d4d60796cac4d117dfe66c1b64b99cabb3" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-powerpc-unknown-linux-gnu.tar.xz" +xz_hash = "397e98404c2d5b1d73a989023cc3957d85d86f3e8a4661e9e37405b6991b5442" +components = [] +extensions = [] + +[pkg.rust-analysis.target.powerpc64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-powerpc64-unknown-linux-gnu.tar.gz" +hash = "150f3b829bcd4b86e4900963114b3b099f27d0739314837138875db1a546e9c8" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-powerpc64-unknown-linux-gnu.tar.xz" +xz_hash = "cdaf8bc0c9742595e1ff1ebcb7e31add6b231194ff05abc818fba0d2eeb35a37" +components = [] +extensions = [] + +[pkg.rust-analysis.target.powerpc64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-powerpc64-unknown-linux-musl.tar.gz" +hash = "12a989e169f58bc053976a17133e27a54120297bee66102f6828e170b7285529" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-powerpc64-unknown-linux-musl.tar.xz" +xz_hash = "7d5f06a618351905808ba1be127a61057e8cc74bd0eb7f39405ddf23c8fd6943" +components = [] +extensions = [] + +[pkg.rust-analysis.target.powerpc64le-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-powerpc64le-unknown-linux-gnu.tar.gz" +hash = "e8d17858c388ac4f5cd0743b458f5410edf2b82c0cb5d2ac5580d803a640ca13" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-powerpc64le-unknown-linux-gnu.tar.xz" +xz_hash = "4f08320d86e45e77f1624ef592a24b82d2840d29925d561687119f39447a7dab" +components = [] +extensions = [] + +[pkg.rust-analysis.target.powerpc64le-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-powerpc64le-unknown-linux-musl.tar.gz" +hash = "1d9e406f6c36928a724ed53fafe68b22dc52a9d72eba08c92656490fd8e430ba" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-powerpc64le-unknown-linux-musl.tar.xz" +xz_hash = "cd4e1522ad17954230fb4b9d2018b6afceb665bf6e9ba995c7db51e0964bd564" +components = [] +extensions = [] + +[pkg.rust-analysis.target.riscv32i-unknown-none-elf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-riscv32i-unknown-none-elf.tar.gz" +hash = "8d37470bd2db0334fef1f0b1fa3c6cf54d6091e85ec193e7fbd2062ed2cccc96" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-riscv32i-unknown-none-elf.tar.xz" +xz_hash = "9db27c8f2adad579229080df7e983bd5eecae9d736db5299dc1403da466698a7" +components = [] +extensions = [] + +[pkg.rust-analysis.target.riscv32im-unknown-none-elf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-riscv32im-unknown-none-elf.tar.gz" +hash = "a4eec4b1aff65fd6f38c6176a35ce87253422d82a2e08513661ce582a1211b75" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-riscv32im-unknown-none-elf.tar.xz" +xz_hash = "029bdda97b0793da31d638beb7db26f2531ef38051361f30f44bea1c9979af3b" +components = [] +extensions = [] + +[pkg.rust-analysis.target.riscv32imac-unknown-none-elf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-riscv32imac-unknown-none-elf.tar.gz" +hash = "36e437b035a4b1e9b2ec517cbb743430a0b0fa026cca5710bfc1b69d68b52bfa" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-riscv32imac-unknown-none-elf.tar.xz" +xz_hash = "b68d8657f87c6e0275a02819e1ba8b6ac754abd56d72e52504e062e740d16ff8" +components = [] +extensions = [] + +[pkg.rust-analysis.target.riscv32imafc-unknown-none-elf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-riscv32imafc-unknown-none-elf.tar.gz" +hash = "c713276cd334bcf8397fc8871753af51510c804053cd634557c00197f2ec2037" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-riscv32imafc-unknown-none-elf.tar.xz" +xz_hash = "f04171736012fa840bb2ba24a8fb4180a541b8fb1cd524478db64a50b13d06a3" +components = [] +extensions = [] + +[pkg.rust-analysis.target.riscv32imc-unknown-none-elf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-riscv32imc-unknown-none-elf.tar.gz" +hash = "93f02148c3ab6fe194bbdc53d9fdf29e1f92f605126e8c68df2bf92885c76f43" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-riscv32imc-unknown-none-elf.tar.xz" +xz_hash = "c0afbbc6097a059f7703f502b8f46b94fa2e963a441e030d85e7db09789953c5" +components = [] +extensions = [] + +[pkg.rust-analysis.target.riscv64a23-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-riscv64a23-unknown-linux-gnu.tar.gz" +hash = "c0562ec068be6478341a8fe90e6afdaf98478f62fc386d1085f7c86c5e391928" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-riscv64a23-unknown-linux-gnu.tar.xz" +xz_hash = "993e18e61d1bf93feb2bc28bad901cf7af9a6b83ae3ea61d08a0ee86b02a3e75" +components = [] +extensions = [] + +[pkg.rust-analysis.target.riscv64gc-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-riscv64gc-unknown-linux-gnu.tar.gz" +hash = "8c2c8965bf38104568381010b364243800f321b6c2f1de727aab006f9c84961a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-riscv64gc-unknown-linux-gnu.tar.xz" +xz_hash = "303975d167b5dbd0f027ec43fdbe6803177009e0cc67daaedc3dac311b513416" +components = [] +extensions = [] + +[pkg.rust-analysis.target.riscv64gc-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-riscv64gc-unknown-linux-musl.tar.gz" +hash = "2965fcbbe55809445f58ff0038927c4b82b11a6f20632bd20c3ac71f8c2010f2" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-riscv64gc-unknown-linux-musl.tar.xz" +xz_hash = "c90c78e3344fb32796ea230f64140c05bdaf92bb57a94d3d50b2e93bbd697509" +components = [] +extensions = [] + +[pkg.rust-analysis.target.riscv64gc-unknown-none-elf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-riscv64gc-unknown-none-elf.tar.gz" +hash = "5ba33f406d1a593bc08c41c4a96eb5993ae2596877b192f4526a3ee1d9132a89" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-riscv64gc-unknown-none-elf.tar.xz" +xz_hash = "3b2d46549fa499a76a8d11de99206fcd433c95da62b956219848170c7a56a5cd" +components = [] +extensions = [] + +[pkg.rust-analysis.target.riscv64imac-unknown-none-elf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-riscv64imac-unknown-none-elf.tar.gz" +hash = "110298c1337f1853fc6debba5e6ea728243a1610f34b76e28efaf08fafbc1d63" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-riscv64imac-unknown-none-elf.tar.xz" +xz_hash = "386bc18553e4bd4bc8c6856e40878720c56e7df91de0ef6df729f19275aff451" +components = [] +extensions = [] + +[pkg.rust-analysis.target.s390x-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-s390x-unknown-linux-gnu.tar.gz" +hash = "d60524efbcf416bf8a50c53c17b0513c0ea4aac489676b47bb5d2965cbe6f730" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-s390x-unknown-linux-gnu.tar.xz" +xz_hash = "3e741d29785772a483c91ba95614093d9d6c039320badc69645bd04f85d0d982" +components = [] +extensions = [] + +[pkg.rust-analysis.target.s390x-unknown-none-softfloat] +available = false +components = [] +extensions = [] + +[pkg.rust-analysis.target.sparc64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-sparc64-unknown-linux-gnu.tar.gz" +hash = "6549b606f608b90f97041b88c5b309cdddaf0ef1757430d64dc03196dd9cc274" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-sparc64-unknown-linux-gnu.tar.xz" +xz_hash = "3b2fb398b3a87924bc12415c707e34cfa5cf8ef5ad1b65a816b159fcc227792c" +components = [] +extensions = [] + +[pkg.rust-analysis.target.sparcv9-sun-solaris] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-sparcv9-sun-solaris.tar.gz" +hash = "1bf8f826cd090181df8a50b29a509cac87a110b02b91f587ebb84cc3a82c6295" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-sparcv9-sun-solaris.tar.xz" +xz_hash = "083dcc869e14851bbc692b059f9fe82f3ed6ca1f00ace00641e9201f4a3d844e" +components = [] +extensions = [] + +[pkg.rust-analysis.target.thumbv6m-none-eabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-thumbv6m-none-eabi.tar.gz" +hash = "3489c80749c1bbf02f0660684bcfff3c8785849f50b0f6bd359339978876ef10" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-thumbv6m-none-eabi.tar.xz" +xz_hash = "f69ee804451428197e6c8472ee537112c1e8e671178c63e2a1fd83116082412e" +components = [] +extensions = [] + +[pkg.rust-analysis.target.thumbv7a-none-eabi] +available = false +components = [] +extensions = [] + +[pkg.rust-analysis.target.thumbv7a-none-eabihf] +available = false +components = [] +extensions = [] + +[pkg.rust-analysis.target.thumbv7em-none-eabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-thumbv7em-none-eabi.tar.gz" +hash = "db3c75a40784384f570337f4dd3ca9ae20af07996d841e7c7f8608c9807ee687" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-thumbv7em-none-eabi.tar.xz" +xz_hash = "51ab8b478b99226ae73a59e173f1f67da76e0624d2b36db91567bfb524daee59" +components = [] +extensions = [] + +[pkg.rust-analysis.target.thumbv7em-none-eabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-thumbv7em-none-eabihf.tar.gz" +hash = "3d15b39f4ca7b0bc06a3b4a9e6c6487575da285a8857ba2eb110e164a94f216e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-thumbv7em-none-eabihf.tar.xz" +xz_hash = "d7e5ed8bc37cdb67194e1901031ca3a84d2e7daa957de7aa616194196c0c5283" +components = [] +extensions = [] + +[pkg.rust-analysis.target.thumbv7m-none-eabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-thumbv7m-none-eabi.tar.gz" +hash = "d48a671e74a8939fa76a6748b880579ccc03580f0661456bc58dc64175fd0363" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-thumbv7m-none-eabi.tar.xz" +xz_hash = "ed8dc6043127602e4115c132ab81065c62852d55354c0b647d19f49c6239e326" +components = [] +extensions = [] + +[pkg.rust-analysis.target.thumbv7neon-linux-androideabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-thumbv7neon-linux-androideabi.tar.gz" +hash = "4f190bf944fdd37e5c057dba2ef2ea5cb74bd4daa5131ec312e4a5448072734e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-thumbv7neon-linux-androideabi.tar.xz" +xz_hash = "1e88bc72571e0feb16d0e5df6053619476acb2b418ad049685aa36ea501c0590" +components = [] +extensions = [] + +[pkg.rust-analysis.target.thumbv7neon-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-thumbv7neon-unknown-linux-gnueabihf.tar.gz" +hash = "036be3f3ee9999d50673989f403f2c4453bc9cb0f23c295de83e338301760544" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-thumbv7neon-unknown-linux-gnueabihf.tar.xz" +xz_hash = "4a632b747874e4e66dc15a8235f3d0495d105c952d35b98111ed9d2e5fd907a7" +components = [] +extensions = [] + +[pkg.rust-analysis.target.thumbv7r-none-eabi] +available = false +components = [] +extensions = [] + +[pkg.rust-analysis.target.thumbv7r-none-eabihf] +available = false +components = [] +extensions = [] + +[pkg.rust-analysis.target."thumbv8m.base-none-eabi"] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-thumbv8m.base-none-eabi.tar.gz" +hash = "ef1ece76cd5741407e05a324f430a6bad7dc798ff9fc4a66cedf80f80c8bd832" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-thumbv8m.base-none-eabi.tar.xz" +xz_hash = "76991bcb99642c0cde77209b45d4f82b7d1a7625287a5fac0dc398a2d878b58a" +components = [] +extensions = [] + +[pkg.rust-analysis.target."thumbv8m.main-none-eabi"] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-thumbv8m.main-none-eabi.tar.gz" +hash = "a2a8eb8971c75bb6350c4522d7280c51781ffd31e8bad4563080af694595ae1a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-thumbv8m.main-none-eabi.tar.xz" +xz_hash = "70c6628d511ce1b245870f6b63891fafa3095809978304a3f69f9b7dc66328bb" +components = [] +extensions = [] + +[pkg.rust-analysis.target."thumbv8m.main-none-eabihf"] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-thumbv8m.main-none-eabihf.tar.gz" +hash = "4ac6b0c504ebf9482ccea9d13b5883de13bbfe83f8a107ad6289f5feac76c014" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-thumbv8m.main-none-eabihf.tar.xz" +xz_hash = "37efda026ff566cf2eb3cb35783883328f1d0a07f88f8413eb27f60ac27568c2" +components = [] +extensions = [] + +[pkg.rust-analysis.target.thumbv8r-none-eabihf] +available = false +components = [] +extensions = [] + +[pkg.rust-analysis.target.wasm32-unknown-emscripten] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-wasm32-unknown-emscripten.tar.gz" +hash = "bb5b07726fd1263fa49520a1e05d7cf66aecc427ebcb2c7f3b2754b0bf95c5d6" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-wasm32-unknown-emscripten.tar.xz" +xz_hash = "16b24bd7330fcb6a91599275c20b7be6b313a5eadc5a704bc515191e7c2a5036" +components = [] +extensions = [] + +[pkg.rust-analysis.target.wasm32-unknown-unknown] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-wasm32-unknown-unknown.tar.gz" +hash = "50a9481bbddf6fded19121c0860e6fd379d1b086d0f8b91b212df27d7a4d598e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-wasm32-unknown-unknown.tar.xz" +xz_hash = "6871f2df09ffb45ae2e1b101c12599d71851dd77a49eb35e8737f07a4741d29a" +components = [] +extensions = [] + +[pkg.rust-analysis.target.wasm32-wasip1] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-wasm32-wasip1.tar.gz" +hash = "3dc6322740b51e33707b35315ef43006229b110d7df94f0b723126e896847dda" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-wasm32-wasip1.tar.xz" +xz_hash = "aeeb59126e935101267e16fab3e480d724bd58705f2875c0367e97314ad945e4" +components = [] +extensions = [] + +[pkg.rust-analysis.target.wasm32-wasip1-threads] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-wasm32-wasip1-threads.tar.gz" +hash = "f2c3664789debcdd965f91d2bab1fc9dea98165f0c68abfdc9204b26f8afb470" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-wasm32-wasip1-threads.tar.xz" +xz_hash = "1c1c75ec87963ce21153a8aea0fdf304576b8368b7e0476b860f1936ba5cb930" +components = [] +extensions = [] + +[pkg.rust-analysis.target.wasm32-wasip2] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-wasm32-wasip2.tar.gz" +hash = "f686b09f842404785ea9c1f617e4ed3436172133f51d2806be9abf59123c685a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-wasm32-wasip2.tar.xz" +xz_hash = "b256f00b6b245a07fee4a5ce5ea36a7e571467d434373218216752cb583db353" +components = [] +extensions = [] + +[pkg.rust-analysis.target.wasm32v1-none] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-wasm32v1-none.tar.gz" +hash = "c4f51458cb900b50578c99d28e9370f045ed74e5941f8b676f1b57e4d183a3f5" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-wasm32v1-none.tar.xz" +xz_hash = "297f1e3ca8c9a5f441bce7ee3dee5fcc9d295f731d18d962b3910970b114d7fa" +components = [] +extensions = [] + +[pkg.rust-analysis.target.x86_64-apple-darwin] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-apple-darwin.tar.gz" +hash = "a1038118a16f09c5f8cef612ba04a6427d60ea7390afcc1ca0bafe562f5341bd" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-apple-darwin.tar.xz" +xz_hash = "736f1a783c0c589030cc80de72eea19f5b4de37198b06e8bb7f52f3f0bde150a" +components = [] +extensions = [] + +[pkg.rust-analysis.target.x86_64-apple-ios] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-apple-ios.tar.gz" +hash = "ae18d71a4385ad0ee20ed1e23e9bc96e11ec84e0b1ce21f2ab0a914f24abf096" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-apple-ios.tar.xz" +xz_hash = "79b0f2484ce75ec9729ad946dda8776fe4c7d78f6b9b5e9aa401b7a7f67d5c49" +components = [] +extensions = [] + +[pkg.rust-analysis.target.x86_64-apple-ios-macabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-apple-ios-macabi.tar.gz" +hash = "4a308d141811ac95b18ad970d949df59c622856fe613a16b0f6bea2880bf6c32" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-apple-ios-macabi.tar.xz" +xz_hash = "76c20a741e5a9389ae9ba4eda76733ef3fd4f1b6bbdd1d9f27de923a8dbe6964" +components = [] +extensions = [] + +[pkg.rust-analysis.target.x86_64-fortanix-unknown-sgx] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-fortanix-unknown-sgx.tar.gz" +hash = "530ba6d36e87710ed6f7996fb86ecb1b603bbadeb23ce1c4e2619ff0c9fd924f" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-fortanix-unknown-sgx.tar.xz" +xz_hash = "3028026a83dbfd750df7434e0607aa8f69cdfb0f27e39482f8475f20a0ca319f" +components = [] +extensions = [] + +[pkg.rust-analysis.target.x86_64-linux-android] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-linux-android.tar.gz" +hash = "3e9753c9956c8cb5dbd308832e0e7039cec299d0f510c877c497e07893e88919" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-linux-android.tar.xz" +xz_hash = "d4d308546e66f8f51eeac28a10537b1a51505fef714f696b40785f5e0fb8e9d7" +components = [] +extensions = [] + +[pkg.rust-analysis.target.x86_64-pc-solaris] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-pc-solaris.tar.gz" +hash = "0f150a0577623fb33f091cc1537af3d5d7bc2b698b0e9278440c27d185d1002b" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-pc-solaris.tar.xz" +xz_hash = "9f83cc143bc6a26bf786f672bfd35df746f9609bbf9b964046967a25af12a112" +components = [] +extensions = [] + +[pkg.rust-analysis.target.x86_64-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-pc-windows-gnu.tar.gz" +hash = "5ea50d2dbf631dd02d2482783dc74e1126cde5de0e03d63c01881068d5ecea0a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-pc-windows-gnu.tar.xz" +xz_hash = "923e39949f7a5f553f4c7c628be8dc9de03fdb7ebd722d00de09800bf6548d34" +components = [] +extensions = [] + +[pkg.rust-analysis.target.x86_64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-pc-windows-gnullvm.tar.gz" +hash = "a3c73b5281e0035439173843e97db5b4b3f5da7ba9ae145f52ca2505ff30f399" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-pc-windows-gnullvm.tar.xz" +xz_hash = "df83518f3d029ffade75beb448a35ccd03082f5ec4932ad0b364411bac4a7dc3" +components = [] +extensions = [] + +[pkg.rust-analysis.target.x86_64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-pc-windows-msvc.tar.gz" +hash = "19551c9109bf1e5bde632b8eaba71d6b5955443365277f4d32bfa2512a609aca" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-pc-windows-msvc.tar.xz" +xz_hash = "c5a6d6ff6b5fa6133a742662c1f69e57812f2146100f68e09c480da7c52459b3" +components = [] +extensions = [] + +[pkg.rust-analysis.target.x86_64-unknown-freebsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-unknown-freebsd.tar.gz" +hash = "fa766a446b93df1486a8cad21f059fd000c08792f84af9493b1109410293ddcc" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-unknown-freebsd.tar.xz" +xz_hash = "ab4af0f2becaf9e5761949d4cea27b45588871c61e3bec6492c0cf80ce5e2f7b" +components = [] +extensions = [] + +[pkg.rust-analysis.target.x86_64-unknown-fuchsia] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-unknown-fuchsia.tar.gz" +hash = "3da1eb934c15e975c0ca6446b197347b1ffb4e49029160516cd8cdcd75af0cae" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-unknown-fuchsia.tar.xz" +xz_hash = "36c51f7b3b486ad4b0ddc5fc0a5050cf7222e1e6b85d1046df353e09f7fe5361" +components = [] +extensions = [] + +[pkg.rust-analysis.target.x86_64-unknown-illumos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-unknown-illumos.tar.gz" +hash = "ab9d8d0acf51abeb1df64c9d8387daa3f3dcaf6141e7480f60214bb287b1f89a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-unknown-illumos.tar.xz" +xz_hash = "f040cc587d99e6c0c5d049006d1a90c20b471f715fcd033b425dd4393ed44d26" +components = [] +extensions = [] + +[pkg.rust-analysis.target.x86_64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "7fcd4c215b7154c8e8e834bbe17f15e25761d8ee14bfdfed94bf0269ef57a01f" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "a5e4dbc82dc00af5b95d9d1ca1b623dfbb645852a99e1e81f06705ed5a648beb" +components = [] +extensions = [] + +[pkg.rust-analysis.target.x86_64-unknown-linux-gnuasan] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-unknown-linux-gnuasan.tar.gz" +hash = "a2339092fcb0918edb22b5fd6f56e4b123f70448be68868a4b863348fa4ef5f7" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-unknown-linux-gnuasan.tar.xz" +xz_hash = "5221021607bc0f953c71d1f6f686536bc8611042daf5c3df7a778013b4189211" +components = [] +extensions = [] + +[pkg.rust-analysis.target.x86_64-unknown-linux-gnux32] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-unknown-linux-gnux32.tar.gz" +hash = "fa3db28ef9e925e50d7ebc492f8f3112fc5f6706331296c8ba97bd258213c356" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-unknown-linux-gnux32.tar.xz" +xz_hash = "5c942c66775996792147e0edb7f028f192c4a0612fd03bfdc583400e6e67c56b" +components = [] +extensions = [] + +[pkg.rust-analysis.target.x86_64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-unknown-linux-musl.tar.gz" +hash = "7033fbbf3ca3a80564221dcf3a72a3b020259f788833e3e0dfbd82531ec6c801" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-unknown-linux-musl.tar.xz" +xz_hash = "92724f4ac3fa80c874b043fb552a55e2deb599ce8171551f6211fd226cc4a8ef" +components = [] +extensions = [] + +[pkg.rust-analysis.target.x86_64-unknown-linux-ohos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-unknown-linux-ohos.tar.gz" +hash = "0e5d018d152152eded63cf1cb83680194d461cc36c0f517f20ec42a08e57a5b2" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-unknown-linux-ohos.tar.xz" +xz_hash = "3fbfa66a3b4958db109e2222469ed49a9600559420d808b94ed8b1d8d9ad060e" +components = [] +extensions = [] + +[pkg.rust-analysis.target.x86_64-unknown-netbsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-unknown-netbsd.tar.gz" +hash = "76ec72e4fed882eb833b22c26d056da6ae2a665be615bae8839185806e23cc04" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-unknown-netbsd.tar.xz" +xz_hash = "63dd6129cafaccd9bf954d51793b19c82e267f237074be1cba1287c15cf9e6f8" +components = [] +extensions = [] + +[pkg.rust-analysis.target.x86_64-unknown-none] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-unknown-none.tar.gz" +hash = "1427cdd8e055f3b7840499b1e2d76bd460e22ae14264772e3d23b20cd3831b65" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-unknown-none.tar.xz" +xz_hash = "640d99823fb93a005c71d62e1437bd972b215070a46acbb31861edfb45a09d68" +components = [] +extensions = [] + +[pkg.rust-analysis.target.x86_64-unknown-redox] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-unknown-redox.tar.gz" +hash = "b936dad7f80c8d9870d956f6e6c71b0882eb46fa7428c5a3b16c70dc8972dd2c" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-unknown-redox.tar.xz" +xz_hash = "aae04a52a460bf4bb12c4ea14a9da75c7960b1741bf8b69be425eac7ede80465" +components = [] +extensions = [] + +[pkg.rust-analysis.target.x86_64-unknown-uefi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-unknown-uefi.tar.gz" +hash = "02e615ae5c7a19d56277a805e75ef6ccb2500ab7cbfde50dd36b53458d63b42e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analysis-1.95.0-x86_64-unknown-uefi.tar.xz" +xz_hash = "31bffcf747d8ce134a9140b3a3d50f74280277f4cdc59812815839c26e0d4a6e" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview] +version = "0.0.0" + +[pkg.rust-analyzer-preview.target.aarch64-apple-darwin] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-aarch64-apple-darwin.tar.gz" +hash = "6c542f287a5df660daa445ee5b51811b8b99c5d040bd1155aa56de6eff283f50" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-aarch64-apple-darwin.tar.xz" +xz_hash = "11231fc6574301b94bd379af4ef409caef7c65b877bcecf2b227dc0d74aa0ec7" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.aarch64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-aarch64-pc-windows-gnullvm.tar.gz" +hash = "c5ea22c877c9608fa8d4b5b6677fd6d7360ff9233a41bed0c782aaf354115a41" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-aarch64-pc-windows-gnullvm.tar.xz" +xz_hash = "6b2c0820957fdf0e3026f51fe85ad3cef94d5948e29cc83d2221f65dafc7a16b" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.aarch64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-aarch64-pc-windows-msvc.tar.gz" +hash = "994271d822605d6409ec28c16aa674503e4267281a79cf13d2d7fb51e09accc7" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-aarch64-pc-windows-msvc.tar.xz" +xz_hash = "92958624f23d4b0980748ac9e6d67f6f67a868f8224e8c6240e3f84145e2d805" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.aarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-aarch64-unknown-linux-gnu.tar.gz" +hash = "48a652548372f911c24cc08dcc29bde022043bef645f606a7cb55ea764d40bcc" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-aarch64-unknown-linux-gnu.tar.xz" +xz_hash = "b37e5b9aad624e54228254f98a710ee19ad464fe7ada93ef12e20c87886a0047" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.aarch64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-aarch64-unknown-linux-musl.tar.gz" +hash = "a46ca8f325ee557ba43ca15f1f3f65a0eab3104c676f202cf60a93328e5c3f8a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-aarch64-unknown-linux-musl.tar.xz" +xz_hash = "0113a0a5df57c375684c68b625b8399a74e372bc45c11b7ec05d7b47f42be638" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.aarch64-unknown-linux-ohos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-aarch64-unknown-linux-ohos.tar.gz" +hash = "76ee4e79e11c318831dcd563f1d4378de5f29ec8bc9cd88a73a5f966c8171780" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-aarch64-unknown-linux-ohos.tar.xz" +xz_hash = "37c9a1c00a9be12a6a159b64e46b8f8ddd74464141b2bd0004a95e3c6a4ffe38" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.arm-unknown-linux-gnueabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-arm-unknown-linux-gnueabi.tar.gz" +hash = "d446a2948cff10622739524a76d6fc3d289d5a3bbaec2a999b70f9a8c5bb5588" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-arm-unknown-linux-gnueabi.tar.xz" +xz_hash = "c295a1059003834624eaf1b57b71d445fab07a1c99827cabe4c8401a22b0e48a" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.arm-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-arm-unknown-linux-gnueabihf.tar.gz" +hash = "0af18ae6c9a2417dd0b63aa19bf80db1615e1a15d751564d7d6e41f5bd0f44c3" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-arm-unknown-linux-gnueabihf.tar.xz" +xz_hash = "3e0b7c6cbef93de77ed0288b3d2021239af5ba18b568b336691e46aecb87ba8d" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.armv7-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-armv7-unknown-linux-gnueabihf.tar.gz" +hash = "39a07afbb59fcdd4de9e8399c8abb0fec9cdf7b5f574ca36f730e07b0c2c1ea8" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-armv7-unknown-linux-gnueabihf.tar.xz" +xz_hash = "bc963892847b92952ec5a6a68d1e0f3d6408eeb832c0acdcc8087d0b1d2ff85e" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.i686-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-i686-pc-windows-gnu.tar.gz" +hash = "dd7767821fce9022e43486e182d8294dae76033052653bebb2ce2e530952e48b" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-i686-pc-windows-gnu.tar.xz" +xz_hash = "95b932e46456bd6c3b35e0dadeac5323dd54f66c07ee37282d7d1d50e4c3078b" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.i686-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-i686-pc-windows-msvc.tar.gz" +hash = "73d043478ccf4c29f34c5b0e80e98d1e86a3a4993594d4933ecd8717c404b622" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-i686-pc-windows-msvc.tar.xz" +xz_hash = "997e078607f4b704bab14be1b6ea877cdb69fc6cadb00c6e4c1624323e603076" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.i686-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-i686-unknown-linux-gnu.tar.gz" +hash = "46794716f16d8a13f214e0d7a15277e89d749d3ace543b87216c47a5eb9104cc" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-i686-unknown-linux-gnu.tar.xz" +xz_hash = "e653e1583d631141a55e7a436dacd1daf021f0392e8ab8ab885754632856068c" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.loongarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-loongarch64-unknown-linux-gnu.tar.gz" +hash = "f63edecf108b847b53b1e211ba5d5a1ec1762f8d94117c1aeecbd99404ff3da1" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-loongarch64-unknown-linux-gnu.tar.xz" +xz_hash = "261572bb13794dde1f2e086f97ebfc4b3c258fe43e24e51cb7320cd7e3a4fb80" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.loongarch64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-loongarch64-unknown-linux-musl.tar.gz" +hash = "f5f738ebaab659df6a995529e233bd759a6f1e75f0eae9223950cc5d6dac46f4" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-loongarch64-unknown-linux-musl.tar.xz" +xz_hash = "e4b4b3ea839318f0a6e3c6631b8d69aafe04bc14755780899689dbf664d214ff" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.powerpc-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-powerpc-unknown-linux-gnu.tar.gz" +hash = "406a4d117d7d977578137d891961ff6f3f08f472e97dc73426125774dd679430" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-powerpc-unknown-linux-gnu.tar.xz" +xz_hash = "06310a4098779582988730df328b964739561c547bcaa9c8b8f60c8541f9394d" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.powerpc64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-powerpc64-unknown-linux-gnu.tar.gz" +hash = "b86872d705878569f6ffc014ad89357507f3d496ba98543d4f76d0c7d13a244f" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-powerpc64-unknown-linux-gnu.tar.xz" +xz_hash = "fd169336e83a85df354f6e3087b95c9b1695956bc1f29d552989d89e30df7d80" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.powerpc64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-powerpc64-unknown-linux-musl.tar.gz" +hash = "a1e82db93c20a93160915d4d3e0732c41f19729d32987877eb80f1573fb8d2c5" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-powerpc64-unknown-linux-musl.tar.xz" +xz_hash = "f3b7ea3dff7cb7beb1ec68dfca197d831c4ed5f7a84d2df2869d01374ee3a241" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.powerpc64le-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-powerpc64le-unknown-linux-gnu.tar.gz" +hash = "d85b7c6c79edc4d0d107532ccb2a8d23819b1b68b30c24373439a1fcab810407" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-powerpc64le-unknown-linux-gnu.tar.xz" +xz_hash = "d5b776bc97376ce1ffdb50f1dc69cca5c3d96fee953ba1b705d3a31b09469fba" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.powerpc64le-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-powerpc64le-unknown-linux-musl.tar.gz" +hash = "5f5c32a949227a1f7f243a299000b42309a221a7c884f54dde599eef6aee9eba" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-powerpc64le-unknown-linux-musl.tar.xz" +xz_hash = "b198b9dc0540345a1d32cf3343ef19b1aacfd7342cbcc64df67f348dd4929678" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.riscv64gc-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-riscv64gc-unknown-linux-gnu.tar.gz" +hash = "98b2726e24f9c5808e1d45270b50b1d1d0ed936ef169996fccce783429a9064a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-riscv64gc-unknown-linux-gnu.tar.xz" +xz_hash = "8dccf7e8f812abd9799b0ce69a9438c22068b1d834218e327fdcdd5bb9f0cc81" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.s390x-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-s390x-unknown-linux-gnu.tar.gz" +hash = "341f583dfdc76d204160a943d5e120f8432506225ea55928f98e5e26612eefa5" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-s390x-unknown-linux-gnu.tar.xz" +xz_hash = "ab285e4835ef4be32b7557147964558e2dc2107acb5e977d3ccfb23661d05012" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.sparcv9-sun-solaris] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-sparcv9-sun-solaris.tar.gz" +hash = "892b71657562c4da9dc1cb11a704a072c33b9aa092dfdd03d730f1f86c6c30d4" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-sparcv9-sun-solaris.tar.xz" +xz_hash = "ec647220a4bcee50c206af545c0a891b7c1634661d6bd79bd462fb47a8a42409" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.x86_64-apple-darwin] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-x86_64-apple-darwin.tar.gz" +hash = "eb60e7dea4ce460f1643f44a0013193a0c71f085a31f41f946604e0e99692eb3" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-x86_64-apple-darwin.tar.xz" +xz_hash = "6cd111900e13fd19b188c5d8844b34136af3967066c0ea2914ce5c3508296c85" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.x86_64-pc-solaris] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-x86_64-pc-solaris.tar.gz" +hash = "a6522935a87d11bbb977fb626fe72c81c5b39609ce569f62dc2c70bf9e629191" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-x86_64-pc-solaris.tar.xz" +xz_hash = "6a19f023199b1c0f10c7c95623ec4108c4148b5c034dcc0862a6e993c8fdc102" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.x86_64-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-x86_64-pc-windows-gnu.tar.gz" +hash = "865962891f8876bffac183b19cdd51bc7b48960173710430601ae2ec94c396c6" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-x86_64-pc-windows-gnu.tar.xz" +xz_hash = "c2aa2e5f9de4763fdc59830cf7a74f6931044d5881fde22fc34a603b92b9b24c" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.x86_64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-x86_64-pc-windows-gnullvm.tar.gz" +hash = "26bc80fff7afa9373b29971b8e1f0e7cc9a27ae723cdfbbd5ca45355abdb8f49" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-x86_64-pc-windows-gnullvm.tar.xz" +xz_hash = "01bd05a6b990ad37907ff26e8c285c5ba8b7e674fabd0e264fc7f7aa04d963c5" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.x86_64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-x86_64-pc-windows-msvc.tar.gz" +hash = "fdacaed9619904ad500dfba43eaefa0f60e76246319ff69ce297c29982757c38" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-x86_64-pc-windows-msvc.tar.xz" +xz_hash = "ba58e349f5e8b0ef13735c48d4ad8d8c7664472f8403f3c9d97b291bd54a7638" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.x86_64-unknown-freebsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-x86_64-unknown-freebsd.tar.gz" +hash = "c9fb77aa022b46c5c5084cdad4884cff52bab128e9f1c3464b79505e5538ac10" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-x86_64-unknown-freebsd.tar.xz" +xz_hash = "bca91ccd4d7d8a3785d3f13e4dcbabab2800241bf4e15b6cb1081d4d065968c7" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.x86_64-unknown-illumos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-x86_64-unknown-illumos.tar.gz" +hash = "d732a2108d88fce699361f59600845b21f92c5ca87a79b78d16a003cc520adbb" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-x86_64-unknown-illumos.tar.xz" +xz_hash = "22f00df94e9845e8169665a1deabc28c909fea415a79a098953d2771e7905bdc" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.x86_64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "7809a7f622bda16abe6e18cbaf94bd98d5c496ec25b8c5ec93e4bdfb80ca5f54" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "a9d71c6e7427c45afcd846a8b34a3e3301ae7a0e91a2bcf929326af77a7dc68e" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.x86_64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-x86_64-unknown-linux-musl.tar.gz" +hash = "81037c0b56b08faecdb50ac07aeec92eb6e53a1cd85d43c5e27079369355adf1" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-x86_64-unknown-linux-musl.tar.xz" +xz_hash = "13bc939bd61ded56fef5dc741a247294d4bdaaf1cbae9439d446a0d95931084d" +components = [] +extensions = [] + +[pkg.rust-analyzer-preview.target.x86_64-unknown-netbsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-x86_64-unknown-netbsd.tar.gz" +hash = "7061d48e705c61ba5cd7ded2aeb2dc2a324f7b0d26157c3bd48c0fe1a388e0b6" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-analyzer-1.95.0-x86_64-unknown-netbsd.tar.xz" +xz_hash = "e9d9131b61e78b8943dea949ca3ae983d9e9a88b33191b52c0988735597fe793" +components = [] +extensions = [] + +[pkg.rust-docs] +version = "1.95.0 (59807616e 2026-04-14)" + +[pkg.rust-docs.target.aarch64-apple-darwin] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-aarch64-apple-darwin.tar.gz" +hash = "fb9d61f732b81ef60c773523a673997e0524603aa478e822e6042de8916ad2fb" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-aarch64-apple-darwin.tar.xz" +xz_hash = "0539e1378560f2e64fd88f69d712d555d7b8c42ee0420e2436b2c1e0aa2ad343" +components = [] +extensions = [] + +[pkg.rust-docs.target.aarch64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-aarch64-pc-windows-gnullvm.tar.gz" +hash = "90c0315ca879ee63182a805a85af7f38fa9433965a7db90f148543721fc98e2e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-aarch64-pc-windows-gnullvm.tar.xz" +xz_hash = "2d6292af0ef147f72fb5d86d5c753930e6fb8875e56f59d8db2e084bc467cf00" +components = [] +extensions = [] + +[pkg.rust-docs.target.aarch64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-aarch64-pc-windows-msvc.tar.gz" +hash = "23f11f58aaf1d8f251500ca20ad68e34005884477593a0514c0d8991d7d852d8" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-aarch64-pc-windows-msvc.tar.xz" +xz_hash = "815d5905d5f1824133a69200403af842a8ef59d955962b0d70e1c8025a22f58a" +components = [] +extensions = [] + +[pkg.rust-docs.target.aarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-aarch64-unknown-linux-gnu.tar.gz" +hash = "6836a327fea7e7c399e57f62f2db24a967ab51d3b23a00eb3b8eb4fde1abc137" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-aarch64-unknown-linux-gnu.tar.xz" +xz_hash = "30ef25da7f1bb1953aeb28b152a03cb22d29f597796cc1b7fbca2f61e5930121" +components = [] +extensions = [] + +[pkg.rust-docs.target.aarch64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-aarch64-unknown-linux-gnu.tar.gz" +hash = "6836a327fea7e7c399e57f62f2db24a967ab51d3b23a00eb3b8eb4fde1abc137" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-aarch64-unknown-linux-gnu.tar.xz" +xz_hash = "30ef25da7f1bb1953aeb28b152a03cb22d29f597796cc1b7fbca2f61e5930121" +components = [] +extensions = [] + +[pkg.rust-docs.target.aarch64-unknown-linux-ohos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-aarch64-unknown-linux-gnu.tar.gz" +hash = "6836a327fea7e7c399e57f62f2db24a967ab51d3b23a00eb3b8eb4fde1abc137" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-aarch64-unknown-linux-gnu.tar.xz" +xz_hash = "30ef25da7f1bb1953aeb28b152a03cb22d29f597796cc1b7fbca2f61e5930121" +components = [] +extensions = [] + +[pkg.rust-docs.target.arm-unknown-linux-gnueabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-aarch64-unknown-linux-gnu.tar.gz" +hash = "6836a327fea7e7c399e57f62f2db24a967ab51d3b23a00eb3b8eb4fde1abc137" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-aarch64-unknown-linux-gnu.tar.xz" +xz_hash = "30ef25da7f1bb1953aeb28b152a03cb22d29f597796cc1b7fbca2f61e5930121" +components = [] +extensions = [] + +[pkg.rust-docs.target.arm-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-aarch64-unknown-linux-gnu.tar.gz" +hash = "6836a327fea7e7c399e57f62f2db24a967ab51d3b23a00eb3b8eb4fde1abc137" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-aarch64-unknown-linux-gnu.tar.xz" +xz_hash = "30ef25da7f1bb1953aeb28b152a03cb22d29f597796cc1b7fbca2f61e5930121" +components = [] +extensions = [] + +[pkg.rust-docs.target.armv7-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "026de3915db2f8784d4b991c135f797dec2fd5cde89dffb3e5af87700ed57476" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "0f472fe2a1f8195610dd587ac7ce507d33a4b64eaed06e7b92d3bd12ba13745f" +components = [] +extensions = [] + +[pkg.rust-docs.target.i686-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-i686-pc-windows-gnu.tar.gz" +hash = "bd49cd14eb07ce120211da875056b7720e26f774b2c2c2ea7a9c1996a12449ad" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-i686-pc-windows-gnu.tar.xz" +xz_hash = "3f7efb9d1891831ff0daa50f003ed30dca0fd1102b5f85a3ef2de42015cd50ef" +components = [] +extensions = [] + +[pkg.rust-docs.target.i686-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-i686-pc-windows-msvc.tar.gz" +hash = "8d82187fef15c77c9bced354360b416ed570f8a55fc383a85b8a3632e99e6b3d" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-i686-pc-windows-msvc.tar.xz" +xz_hash = "1ae76ae07a6ffcd15f6dfdca78bf8864cc3b9c9b4525efc64e482809dc23df82" +components = [] +extensions = [] + +[pkg.rust-docs.target.i686-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-i686-unknown-linux-gnu.tar.gz" +hash = "1b930505e430dbdd0e8b8191abfc05b5d06f8260141fa3b3184874ea193b8e40" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-i686-unknown-linux-gnu.tar.xz" +xz_hash = "1441fba0eefca2e14e588fbe6cc772c7636ff7c0ce45fc56328790cbdf640aaa" +components = [] +extensions = [] + +[pkg.rust-docs.target.loongarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "026de3915db2f8784d4b991c135f797dec2fd5cde89dffb3e5af87700ed57476" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "0f472fe2a1f8195610dd587ac7ce507d33a4b64eaed06e7b92d3bd12ba13745f" +components = [] +extensions = [] + +[pkg.rust-docs.target.loongarch64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "026de3915db2f8784d4b991c135f797dec2fd5cde89dffb3e5af87700ed57476" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "0f472fe2a1f8195610dd587ac7ce507d33a4b64eaed06e7b92d3bd12ba13745f" +components = [] +extensions = [] + +[pkg.rust-docs.target.powerpc-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "026de3915db2f8784d4b991c135f797dec2fd5cde89dffb3e5af87700ed57476" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "0f472fe2a1f8195610dd587ac7ce507d33a4b64eaed06e7b92d3bd12ba13745f" +components = [] +extensions = [] + +[pkg.rust-docs.target.powerpc64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "026de3915db2f8784d4b991c135f797dec2fd5cde89dffb3e5af87700ed57476" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "0f472fe2a1f8195610dd587ac7ce507d33a4b64eaed06e7b92d3bd12ba13745f" +components = [] +extensions = [] + +[pkg.rust-docs.target.powerpc64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "026de3915db2f8784d4b991c135f797dec2fd5cde89dffb3e5af87700ed57476" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "0f472fe2a1f8195610dd587ac7ce507d33a4b64eaed06e7b92d3bd12ba13745f" +components = [] +extensions = [] + +[pkg.rust-docs.target.powerpc64le-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "026de3915db2f8784d4b991c135f797dec2fd5cde89dffb3e5af87700ed57476" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "0f472fe2a1f8195610dd587ac7ce507d33a4b64eaed06e7b92d3bd12ba13745f" +components = [] +extensions = [] + +[pkg.rust-docs.target.powerpc64le-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "026de3915db2f8784d4b991c135f797dec2fd5cde89dffb3e5af87700ed57476" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "0f472fe2a1f8195610dd587ac7ce507d33a4b64eaed06e7b92d3bd12ba13745f" +components = [] +extensions = [] + +[pkg.rust-docs.target.riscv64gc-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "026de3915db2f8784d4b991c135f797dec2fd5cde89dffb3e5af87700ed57476" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "0f472fe2a1f8195610dd587ac7ce507d33a4b64eaed06e7b92d3bd12ba13745f" +components = [] +extensions = [] + +[pkg.rust-docs.target.s390x-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "026de3915db2f8784d4b991c135f797dec2fd5cde89dffb3e5af87700ed57476" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "0f472fe2a1f8195610dd587ac7ce507d33a4b64eaed06e7b92d3bd12ba13745f" +components = [] +extensions = [] + +[pkg.rust-docs.target.sparcv9-sun-solaris] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "026de3915db2f8784d4b991c135f797dec2fd5cde89dffb3e5af87700ed57476" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "0f472fe2a1f8195610dd587ac7ce507d33a4b64eaed06e7b92d3bd12ba13745f" +components = [] +extensions = [] + +[pkg.rust-docs.target.x86_64-apple-darwin] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-aarch64-apple-darwin.tar.gz" +hash = "fb9d61f732b81ef60c773523a673997e0524603aa478e822e6042de8916ad2fb" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-aarch64-apple-darwin.tar.xz" +xz_hash = "0539e1378560f2e64fd88f69d712d555d7b8c42ee0420e2436b2c1e0aa2ad343" +components = [] +extensions = [] + +[pkg.rust-docs.target.x86_64-pc-solaris] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "026de3915db2f8784d4b991c135f797dec2fd5cde89dffb3e5af87700ed57476" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "0f472fe2a1f8195610dd587ac7ce507d33a4b64eaed06e7b92d3bd12ba13745f" +components = [] +extensions = [] + +[pkg.rust-docs.target.x86_64-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-pc-windows-gnu.tar.gz" +hash = "5620afe22a6ba5167c1023313cddda3859f184614a345102fb6eb24f430f4c9a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-pc-windows-gnu.tar.xz" +xz_hash = "8487b74e0a9e348779dd4fb2aed2fdb1834ba1fd5c2a95dfd117d10c5f543525" +components = [] +extensions = [] + +[pkg.rust-docs.target.x86_64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-pc-windows-gnullvm.tar.gz" +hash = "400b300a0bde0c49ec79d313599ba71910fd09f7e56fbb57d4d4bed926eab91c" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-pc-windows-gnullvm.tar.xz" +xz_hash = "5cafcd12d1011de3f1a9d4f414e00de06b56090e69227db491db5eeb8fc57f02" +components = [] +extensions = [] + +[pkg.rust-docs.target.x86_64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-pc-windows-msvc.tar.gz" +hash = "d8b1973b966fff6876d96bbebd5b910508bc5b1bc8b739bdc096658568a05d5c" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-pc-windows-msvc.tar.xz" +xz_hash = "7ac544e0acd8acabd3bb2ff7536f496a60b6eabaf74f2d2ef1cf27c54e6a5138" +components = [] +extensions = [] + +[pkg.rust-docs.target.x86_64-unknown-freebsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "026de3915db2f8784d4b991c135f797dec2fd5cde89dffb3e5af87700ed57476" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "0f472fe2a1f8195610dd587ac7ce507d33a4b64eaed06e7b92d3bd12ba13745f" +components = [] +extensions = [] + +[pkg.rust-docs.target.x86_64-unknown-illumos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "026de3915db2f8784d4b991c135f797dec2fd5cde89dffb3e5af87700ed57476" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "0f472fe2a1f8195610dd587ac7ce507d33a4b64eaed06e7b92d3bd12ba13745f" +components = [] +extensions = [] + +[pkg.rust-docs.target.x86_64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "026de3915db2f8784d4b991c135f797dec2fd5cde89dffb3e5af87700ed57476" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "0f472fe2a1f8195610dd587ac7ce507d33a4b64eaed06e7b92d3bd12ba13745f" +components = [] +extensions = [] + +[pkg.rust-docs.target.x86_64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-musl.tar.gz" +hash = "c5e4b3ece49d48fa7b36cdbf22e4279459208db3b967f3f13f793b00f2d0e0b4" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-musl.tar.xz" +xz_hash = "5e793e9e804f214df5979d9a7d7b1bc484bf52cf3c84deee4e3f1e21df4199ef" +components = [] +extensions = [] + +[pkg.rust-docs.target.x86_64-unknown-netbsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "026de3915db2f8784d4b991c135f797dec2fd5cde89dffb3e5af87700ed57476" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "0f472fe2a1f8195610dd587ac7ce507d33a4b64eaed06e7b92d3bd12ba13745f" +components = [] +extensions = [] + +[pkg.rust-docs-json-preview] +version = "1.95.0 (59807616e 2026-04-14)" + +[pkg.rust-docs-json-preview.target.aarch64-apple-darwin] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.aarch64-pc-windows-gnullvm] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.aarch64-pc-windows-msvc] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.aarch64-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.aarch64-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.aarch64-unknown-linux-ohos] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.arm-unknown-linux-gnueabi] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.arm-unknown-linux-gnueabihf] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.armv7-unknown-linux-gnueabihf] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.i686-pc-windows-gnu] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.i686-pc-windows-msvc] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.i686-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.loongarch64-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.loongarch64-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.powerpc-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.powerpc64-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.powerpc64-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.powerpc64le-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.powerpc64le-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.riscv64gc-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.s390x-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.sparcv9-sun-solaris] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.x86_64-apple-darwin] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.x86_64-pc-solaris] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.x86_64-pc-windows-gnu] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.x86_64-pc-windows-gnullvm] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.x86_64-pc-windows-msvc] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.x86_64-unknown-freebsd] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.x86_64-unknown-illumos] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.x86_64-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.x86_64-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.rust-docs-json-preview.target.x86_64-unknown-netbsd] +available = false +components = [] +extensions = [] + +[pkg.rust-mingw] +version = "1.95.0 (59807616e 2026-04-14)" + +[pkg.rust-mingw.target.aarch64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-mingw-1.95.0-aarch64-pc-windows-gnullvm.tar.gz" +hash = "9f050858d5045f41686de8af228ff87d110856951fcb517c26b00e66fc47e835" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-mingw-1.95.0-aarch64-pc-windows-gnullvm.tar.xz" +xz_hash = "aa23be98b7ad4278d9e20f4eb0d776d5639f59e5508ad99fbcece2b139648575" +components = [] +extensions = [] + +[pkg.rust-mingw.target.i686-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-mingw-1.95.0-i686-pc-windows-gnu.tar.gz" +hash = "86436eaf3c9a6f078b8a114693e1fd919143c7e80fb34df3eaef2c54f1d648c6" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-mingw-1.95.0-i686-pc-windows-gnu.tar.xz" +xz_hash = "7f5a279a7d2fa5f8f48199d54596a7b7e83a500c1e96cb2e9cbd15bbc73cf1d3" +components = [] +extensions = [] + +[pkg.rust-mingw.target.x86_64-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-mingw-1.95.0-x86_64-pc-windows-gnu.tar.gz" +hash = "5401f801ac9947512c6175c770608a926e306cdc0eaf2e99a5ff513f5d3d7a31" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-mingw-1.95.0-x86_64-pc-windows-gnu.tar.xz" +xz_hash = "ac0b67b7ee8a35045c26b8e39a524f171b2dc4a18838bb15844308e4442802f2" +components = [] +extensions = [] + +[pkg.rust-mingw.target.x86_64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-mingw-1.95.0-x86_64-pc-windows-gnullvm.tar.gz" +hash = "4d8e98596f69a8cdbe7e5c57c5363812f2fe39f1a44a29e5a5a5cd5b6a98913c" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-mingw-1.95.0-x86_64-pc-windows-gnullvm.tar.xz" +xz_hash = "347dc2a13616efb6b9730a201e89611855e5b70a5c0f94e4c814784c8ea71051" +components = [] +extensions = [] + +[pkg.rust-src] +version = "1.95.0 (59807616e 2026-04-14)" + +[pkg.rust-src.target."*"] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-src-1.95.0.tar.gz" +hash = "98548815569318eb60afe7189ace6bca4ba6e4ae59a54f111d276ab78d6ddd10" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-src-1.95.0.tar.xz" +xz_hash = "67b09138c8db96afc4bbfc69ea771ac9a091fd777698acb43f6dfd9fb7dea363" +components = [] +extensions = [] + +[pkg.rust-std] +version = "1.95.0 (59807616e 2026-04-14)" + +[pkg.rust-std.target.aarch64-apple-darwin] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-apple-darwin.tar.gz" +hash = "c64f139c2a4f973b3d8b26482673909043545db14f0b1255ed743844e9f9ce99" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-apple-darwin.tar.xz" +xz_hash = "9b30089b0f767cb91b2190ffec55a9beeb2a21a1405d8da0f664d7e09d08e6d8" +components = [] +extensions = [] + +[pkg.rust-std.target.aarch64-apple-ios] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-apple-ios.tar.gz" +hash = "844b6efe5b084b765933936c5f4b9aafad2a76e034ced0b20e4446f266bc53f4" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-apple-ios.tar.xz" +xz_hash = "6fcc42d8dbba4910a128ffa32d62a730339a7e3882a90341a881f2edf66ff55a" +components = [] +extensions = [] + +[pkg.rust-std.target.aarch64-apple-ios-macabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-apple-ios-macabi.tar.gz" +hash = "f633849645b9cd7aa6115a4a22da47a13d31941d58de410d4129b9ac58657b80" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-apple-ios-macabi.tar.xz" +xz_hash = "0e1760828f4e0fa1cde0061ba5680619dcc1cdcafec9242cc18dc4547c73b1cd" +components = [] +extensions = [] + +[pkg.rust-std.target.aarch64-apple-ios-sim] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-apple-ios-sim.tar.gz" +hash = "6db116bc71f137f385764d900fac1ac3d29cbed521439e1b81b4c55e44628597" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-apple-ios-sim.tar.xz" +xz_hash = "4bfe5b0c74c10d121a8ac60f1833c7714b963f9130f6256ca313d94405267deb" +components = [] +extensions = [] + +[pkg.rust-std.target.aarch64-apple-tvos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-apple-tvos.tar.gz" +hash = "1cdd6006715b0d86df1755860b2154a38e0c83bf38a8a2e83c8d30d044d14f4c" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-apple-tvos.tar.xz" +xz_hash = "74d6c2e5cd7a02a6e652ba2c42554e1430e25ae7cfe2c810070db8b12de599f1" +components = [] +extensions = [] + +[pkg.rust-std.target.aarch64-apple-tvos-sim] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-apple-tvos-sim.tar.gz" +hash = "b91172d7f62f6a9594f2aa4fec2cee6a7a782b818de24fb890ac2d4af3891e41" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-apple-tvos-sim.tar.xz" +xz_hash = "342ea035a453a58b94b2f75448621c1cfc1561d65c90912ce353730b3222e717" +components = [] +extensions = [] + +[pkg.rust-std.target.aarch64-apple-visionos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-apple-visionos.tar.gz" +hash = "7146ab705b3dfd4584edffbeb74a6b4235dacc125410bee2834755ab580e73c5" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-apple-visionos.tar.xz" +xz_hash = "f21bec718d1c6f4a7995bec3a3c40249360f88b4cf76feb69cd11565f4bd89c0" +components = [] +extensions = [] + +[pkg.rust-std.target.aarch64-apple-visionos-sim] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-apple-visionos-sim.tar.gz" +hash = "51c7d02a166a17a8f20bae3be6b6a9a3f43576de3c44d54ba1e71a4e8db4274f" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-apple-visionos-sim.tar.xz" +xz_hash = "79f3a2ba17415949fd47046bb08b9a95a48eabddbacda69188f15700b5348200" +components = [] +extensions = [] + +[pkg.rust-std.target.aarch64-apple-watchos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-apple-watchos.tar.gz" +hash = "d5ccdcae03253a8a6474f2ea23f20193556e49fbef97ffcf8a2d6ccd1f27e425" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-apple-watchos.tar.xz" +xz_hash = "fe6ca37d4104a8564d66844ed3271c3149ef3706e73343a60476742b6dd9b653" +components = [] +extensions = [] + +[pkg.rust-std.target.aarch64-apple-watchos-sim] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-apple-watchos-sim.tar.gz" +hash = "70b7b9542f6d3a588cea6b57ecb9ef391c2afd1aa7ed763c7442b70b980b7e6e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-apple-watchos-sim.tar.xz" +xz_hash = "22ef9925425faab0135ef919fa16446b64d0ca6ff2474f64793c86da26d28c5f" +components = [] +extensions = [] + +[pkg.rust-std.target.aarch64-linux-android] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-linux-android.tar.gz" +hash = "90de6cc98ec27a824429bf8b9140ced0dfa9947d69b0ae0d20f4700e0b437c5e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-linux-android.tar.xz" +xz_hash = "de5e8fa5d955809891eea77682811fc90be705f78883bd94071e98f5a738d05b" +components = [] +extensions = [] + +[pkg.rust-std.target.aarch64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-pc-windows-gnullvm.tar.gz" +hash = "48a758c153f2a4b64ba629d87e8038045663f7c0a137e1299002f8d1466d1428" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-pc-windows-gnullvm.tar.xz" +xz_hash = "93d810b8872771afe04f66aa30a4eee48736aca693186e4c7cc2766e1a82e340" +components = [] +extensions = [] + +[pkg.rust-std.target.aarch64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-pc-windows-msvc.tar.gz" +hash = "7128eca09a6a537463a217146aea1a4a71cc04611a14dae883b073e810f67888" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-pc-windows-msvc.tar.xz" +xz_hash = "be21b5a8a71c49b4dcbc19956233b0de7bfda3ee3c8a199148299f867e95cb42" +components = [] +extensions = [] + +[pkg.rust-std.target.aarch64-unknown-fuchsia] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-unknown-fuchsia.tar.gz" +hash = "a8d90f7ac3e8011cb605a68f68af0376218155dafa33d5a18b539c6f4bba0ff2" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-unknown-fuchsia.tar.xz" +xz_hash = "b311a0523f75e031d683d983515edb9baaf22a843dbd44ce2a30a3204752f592" +components = [] +extensions = [] + +[pkg.rust-std.target.aarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-unknown-linux-gnu.tar.gz" +hash = "a68e71b09f4e09f7071c650ec38ee1845ddfe66c46917c0ccf0b1636994b01c6" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-unknown-linux-gnu.tar.xz" +xz_hash = "3a21b271b1ff973b94d69b25e7a39992f9fbcae1ab6d9475844a23e6ad3908ac" +components = [] +extensions = [] + +[pkg.rust-std.target.aarch64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-unknown-linux-musl.tar.gz" +hash = "03fd4be4c4a504cc7d14482b1f1563807b08dfb037f776526d58be7f5dca4b59" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-unknown-linux-musl.tar.xz" +xz_hash = "f6710416ed9a7d5cf2a15efa761eb79a1deeb43f9961bbe05cc97bec4ef9064a" +components = [] +extensions = [] + +[pkg.rust-std.target.aarch64-unknown-linux-ohos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-unknown-linux-ohos.tar.gz" +hash = "a19fe76054791bd07ce5d46c444587f4f3142cbbce5d162fd061c8ca921f87e7" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-unknown-linux-ohos.tar.xz" +xz_hash = "b0db83f71e055acd6b54376262ed13e2dd50d4862b9364a5469885800ee1076a" +components = [] +extensions = [] + +[pkg.rust-std.target.aarch64-unknown-none] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-unknown-none.tar.gz" +hash = "df5e310119d62f76501bebe7901e46b4a18a661c2bc9e57a71c470757ff12599" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-unknown-none.tar.xz" +xz_hash = "2b0c986dc9902866311f1fe2d44bc2bd84479d2ac84ed7ada76a5eb7ba37080f" +components = [] +extensions = [] + +[pkg.rust-std.target.aarch64-unknown-none-softfloat] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-unknown-none-softfloat.tar.gz" +hash = "b8be47fab3a7f1e36b1d500727e742b3b527851d6a34df297f0867bd82cca275" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-unknown-none-softfloat.tar.xz" +xz_hash = "54d691468e25e7989b022a171337beadf78b5202877b312b75182b7f93efbb8b" +components = [] +extensions = [] + +[pkg.rust-std.target.aarch64-unknown-uefi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-unknown-uefi.tar.gz" +hash = "8355f6f4e32262380e50e29bf5bd9f6370c5c0b82dc990c50210d53cb8558a73" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-aarch64-unknown-uefi.tar.xz" +xz_hash = "ca657564103024d345ca32e8e4ade7ebb395a51163d2897d9e5f8373c025e49e" +components = [] +extensions = [] + +[pkg.rust-std.target.arm-linux-androideabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-arm-linux-androideabi.tar.gz" +hash = "58bfc7cd4545cc63774c5a6d6f6db71f8c60e26d915e5f53eaf911c1e83b8946" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-arm-linux-androideabi.tar.xz" +xz_hash = "12a9c5fa24608159c2b2bd50abc0c6d0add407c0258cee894c2f61c07051a9c4" +components = [] +extensions = [] + +[pkg.rust-std.target.arm-unknown-linux-gnueabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-arm-unknown-linux-gnueabi.tar.gz" +hash = "382d10cc35dcc9a2d45c40f8ab7256767a26316ac389bfeff10bb8a377425348" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-arm-unknown-linux-gnueabi.tar.xz" +xz_hash = "f6cd592dacdf41f724ee90a2f34db028e37ca2a7fb26fa86e93e8fd68e24d066" +components = [] +extensions = [] + +[pkg.rust-std.target.arm-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-arm-unknown-linux-gnueabihf.tar.gz" +hash = "300587db786165462a27ff9dacd47ff5909b0de4aacb53799c4e3e0821312ef3" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-arm-unknown-linux-gnueabihf.tar.xz" +xz_hash = "fda8408ea17881c6529e27e58672d6c628f786cad557fac92856077e7a610239" +components = [] +extensions = [] + +[pkg.rust-std.target.arm-unknown-linux-musleabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-arm-unknown-linux-musleabi.tar.gz" +hash = "c7da30aae20822a0fc0511ea207fcb1d883dab915f2c02cac1101bddc9ff8147" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-arm-unknown-linux-musleabi.tar.xz" +xz_hash = "62f21fabc209fd0de53156764fc426da74c59525bb60cb4c1c3ffd1be0bbe00b" +components = [] +extensions = [] + +[pkg.rust-std.target.arm-unknown-linux-musleabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-arm-unknown-linux-musleabihf.tar.gz" +hash = "88b1e8a199d0002b3a44b23a18180ef946456adff8e470b6d0725b4ee0780d55" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-arm-unknown-linux-musleabihf.tar.xz" +xz_hash = "2842ce67f7a4c68c6e8b30ad3bb36484fb745edcc2694b2a36bf0609cf758044" +components = [] +extensions = [] + +[pkg.rust-std.target.arm64ec-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-arm64ec-pc-windows-msvc.tar.gz" +hash = "1f4b03795d2437174a381f7481ff413ddbeb756da7ebf9c13fe30e1b566d7e7c" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-arm64ec-pc-windows-msvc.tar.xz" +xz_hash = "66aa198e5aecffb9eb9d36e277406b756c8f38f1e9f7d5d09174a686dc32367d" +components = [] +extensions = [] + +[pkg.rust-std.target.armv5te-unknown-linux-gnueabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-armv5te-unknown-linux-gnueabi.tar.gz" +hash = "3bd33dcd1a750219d0c66aca965cc903b553e3b0737273ebca03d57ec647fb0e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-armv5te-unknown-linux-gnueabi.tar.xz" +xz_hash = "5b2c1ba1e35f7ecac1ab7d7a6ffbe6da466d244bba747e64547eeb57c3b07715" +components = [] +extensions = [] + +[pkg.rust-std.target.armv5te-unknown-linux-musleabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-armv5te-unknown-linux-musleabi.tar.gz" +hash = "8a54a68b59cd63dbecbf71364b3f58fe580145985812595bc5bdbe3c50ce02e7" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-armv5te-unknown-linux-musleabi.tar.xz" +xz_hash = "4c23aa73d76c0c5f52283c739f197a4f757926079983ab10d914544de47a5dea" +components = [] +extensions = [] + +[pkg.rust-std.target.armv7-linux-androideabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-armv7-linux-androideabi.tar.gz" +hash = "855d613ed0bd9e4385f06cf6caa420de162cb9ca500575f8c56df6f3c8f0081d" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-armv7-linux-androideabi.tar.xz" +xz_hash = "61e95e144986c52ff9fa2fe3c249a68b2bf268adb2a2eeb81d80c180e43027f1" +components = [] +extensions = [] + +[pkg.rust-std.target.armv7-unknown-linux-gnueabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-armv7-unknown-linux-gnueabi.tar.gz" +hash = "6a53a95e1e816a3ecc32b4b16fa1f32036f689245af2752578ae142b63f75e1b" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-armv7-unknown-linux-gnueabi.tar.xz" +xz_hash = "e23454d6ca7fc3f5eb7cf9241572765176d86e9f45d4f394de31a5fd794e523f" +components = [] +extensions = [] + +[pkg.rust-std.target.armv7-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-armv7-unknown-linux-gnueabihf.tar.gz" +hash = "3f03927f49a6cd086830bedcd8c0f4d755e6225dad27fe24475318a7d8db3421" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-armv7-unknown-linux-gnueabihf.tar.xz" +xz_hash = "bd319e18ca2dad0450f76277874d56356330da536be8cf271509f8e6f28ac6de" +components = [] +extensions = [] + +[pkg.rust-std.target.armv7-unknown-linux-musleabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-armv7-unknown-linux-musleabi.tar.gz" +hash = "02c2507ce9f536ef6b39bbba9bdec4ad7cc763dd000d90dc0b6df396298084ea" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-armv7-unknown-linux-musleabi.tar.xz" +xz_hash = "a49bc987e0531800f92825ce61402b5734ea747caa8970d3373506742ed7daa6" +components = [] +extensions = [] + +[pkg.rust-std.target.armv7-unknown-linux-musleabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-armv7-unknown-linux-musleabihf.tar.gz" +hash = "d0873f1a39cab1ab1c96ce8bfd9accfbddf85e38dfaf321d5705851d2d76a46a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-armv7-unknown-linux-musleabihf.tar.xz" +xz_hash = "77f9aaff4669c076edc96cdb99dc21749d2c692c862232b52176572c289fe671" +components = [] +extensions = [] + +[pkg.rust-std.target.armv7-unknown-linux-ohos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-armv7-unknown-linux-ohos.tar.gz" +hash = "421f06dde8d1641f1ee0e7d3ad5df052b8e8d0df754f9cc4c0ea0f6d4f33992c" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-armv7-unknown-linux-ohos.tar.xz" +xz_hash = "1bee2cdbda6d265959f09c75d561a74080633d986c35acfffbc7e29dbd9e8883" +components = [] +extensions = [] + +[pkg.rust-std.target.armv7a-none-eabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-armv7a-none-eabi.tar.gz" +hash = "f3ffc578bf749b4f7c83efe77eacd63dc885c450eb43045a246d91e9ae6efa0d" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-armv7a-none-eabi.tar.xz" +xz_hash = "343e36ec267ad977e738dc0b14d2771f8c0b638a4613cc8962375e93ce432de1" +components = [] +extensions = [] + +[pkg.rust-std.target.armv7a-none-eabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-armv7a-none-eabihf.tar.gz" +hash = "54fdc18e13f8d7f821c49691658f365d6611ddd4c4dd109833b00c1f1c6a3473" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-armv7a-none-eabihf.tar.xz" +xz_hash = "fd2fc3f6e6543aedc8f03e5f4c491ddafcb6b8068444adbd1e64d21439bb0de1" +components = [] +extensions = [] + +[pkg.rust-std.target.armv7r-none-eabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-armv7r-none-eabi.tar.gz" +hash = "55712c227f7a210656ae07ce7bc4a4ae23db4c146d029e87cde3796052cce13e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-armv7r-none-eabi.tar.xz" +xz_hash = "562fc664b934464c8a5209f8774bb25d14601d75294a3847e60812da174a544a" +components = [] +extensions = [] + +[pkg.rust-std.target.armv7r-none-eabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-armv7r-none-eabihf.tar.gz" +hash = "c11e2c5b5a4c1b6872014e04fe5688b86ec233066587a0b79cfade37b8a67134" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-armv7r-none-eabihf.tar.xz" +xz_hash = "0140ed422a8365e6426065d3074e15b143d20bf95989eef6e1c3313a59e85e48" +components = [] +extensions = [] + +[pkg.rust-std.target.armv8r-none-eabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-armv8r-none-eabihf.tar.gz" +hash = "41c6a089f63095bca298e1e60ec1c44e6887dfe79ac7bb6881cf629a314c9e24" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-armv8r-none-eabihf.tar.xz" +xz_hash = "05b4dce96e0e8bba4344ae659eeb073671af371257556edbefbf4327bdaf86bb" +components = [] +extensions = [] + +[pkg.rust-std.target.i586-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-i586-unknown-linux-gnu.tar.gz" +hash = "23798e163c68e1cd8287a29e0a09f16971ed8903c702bdee5f980e239c6ce02e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-i586-unknown-linux-gnu.tar.xz" +xz_hash = "dc5187f4062d617561e0d7885ecd4d4d3f995435b38d8c53d6451b56808946b8" +components = [] +extensions = [] + +[pkg.rust-std.target.i586-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-i586-unknown-linux-musl.tar.gz" +hash = "3d9e81608b03ad277c16f60a0dbaff8067c940177d393ef7c00f0de687c9f9fb" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-i586-unknown-linux-musl.tar.xz" +xz_hash = "acbdc18dea9bc942a1872cf8c85b0ed353323f6a9c6757e04f837dd9cefb6094" +components = [] +extensions = [] + +[pkg.rust-std.target.i686-linux-android] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-i686-linux-android.tar.gz" +hash = "32e373b4b1692b8fd7f20fb6384668ddf0b0d27a3f0a88aa1bd8996a1bb0816d" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-i686-linux-android.tar.xz" +xz_hash = "e7b5e18d1d4119c7c1454ee8427933f27aeff9e81a22248c2829f5f299d3a937" +components = [] +extensions = [] + +[pkg.rust-std.target.i686-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-i686-pc-windows-gnu.tar.gz" +hash = "d117d64c18733eae230f1afaa2c8acb3db0a6857842cb9f36dbe0bd08d9f1cbf" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-i686-pc-windows-gnu.tar.xz" +xz_hash = "2e98fb94fc500690d7e72e071ce29dd98790ff518163963f5c82c32afba9231d" +components = [] +extensions = [] + +[pkg.rust-std.target.i686-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-i686-pc-windows-gnullvm.tar.gz" +hash = "b1ef6f1f17446e087c2147799e1b8d860cb631373c1a5a9885d0713796555157" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-i686-pc-windows-gnullvm.tar.xz" +xz_hash = "b429a8c456d6a1815ece064102bd6a25f67d46db4f6d7b79dbe7d1b9d1f78e0f" +components = [] +extensions = [] + +[pkg.rust-std.target.i686-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-i686-pc-windows-msvc.tar.gz" +hash = "ab7bf4aebc09fa13dc5c0ba0d6c1c7517e872b37dbe6cad8063fd3e049e998c8" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-i686-pc-windows-msvc.tar.xz" +xz_hash = "6206fd7e8bd119e9d1ba1c425ad25c282512eb0d5659f2dcb4be224b84715706" +components = [] +extensions = [] + +[pkg.rust-std.target.i686-unknown-freebsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-i686-unknown-freebsd.tar.gz" +hash = "926aa3aea77fffae347aeb3913035f3e928bc26fe25a79e852204dd1839e0da5" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-i686-unknown-freebsd.tar.xz" +xz_hash = "3b13b3ccecf482c0da3e94f19e0aa5e8e375622f4e09b30e6dae2b7638bee63f" +components = [] +extensions = [] + +[pkg.rust-std.target.i686-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-i686-unknown-linux-gnu.tar.gz" +hash = "f815d8fad4586cb93a4cd0d186c9fa2fd3af74d8cf6b1383bbb913ccc0086a05" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-i686-unknown-linux-gnu.tar.xz" +xz_hash = "527c5d5249a7f77b48d3c9da3ac512d27b47f43d08dbe3c6f82a3d5b35d8aa27" +components = [] +extensions = [] + +[pkg.rust-std.target.i686-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-i686-unknown-linux-musl.tar.gz" +hash = "f759507238827dee07090228561eb35f0b80e4ed0cbe65af41d459068a93d2c2" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-i686-unknown-linux-musl.tar.xz" +xz_hash = "af4d3e7aabb63d39a7a2ff5435cc993b65ff38a2d2e23f1967e519037a1b0455" +components = [] +extensions = [] + +[pkg.rust-std.target.i686-unknown-uefi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-i686-unknown-uefi.tar.gz" +hash = "97430fd66f568b8290277cf2491b9cc17846f2c3c290ee9fdf3ca5726e08a042" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-i686-unknown-uefi.tar.xz" +xz_hash = "3233985273616ec36861f2d50b4a025c903b2bb8c45b171c0ae9e2de8342125b" +components = [] +extensions = [] + +[pkg.rust-std.target.loongarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-loongarch64-unknown-linux-gnu.tar.gz" +hash = "5f69bc6daf51124198f4988d0b5c96fae85c94aa8a4297a8ac1a896d4c0532e0" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-loongarch64-unknown-linux-gnu.tar.xz" +xz_hash = "eaf2c37c3293eea742e7ab20f25718ab19c93bd381df8823113fce70460c19c3" +components = [] +extensions = [] + +[pkg.rust-std.target.loongarch64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-loongarch64-unknown-linux-musl.tar.gz" +hash = "c405e5ad6600b1a5c7ed642e0209b6799c99cc469896cb2c7632d09976761b98" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-loongarch64-unknown-linux-musl.tar.xz" +xz_hash = "959b1bf99bc724c87bc4f2c0d184eb0554c134885c05c90d060eb572838924fd" +components = [] +extensions = [] + +[pkg.rust-std.target.loongarch64-unknown-none] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-loongarch64-unknown-none.tar.gz" +hash = "923aa6aa71c497ed2243273952fa14acbfb23f523953dcccfd07196ba918002c" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-loongarch64-unknown-none.tar.xz" +xz_hash = "139e8bdc86cbc21e149a2229c092f74741c907ef6424fa8ce8d435db47895cb6" +components = [] +extensions = [] + +[pkg.rust-std.target.loongarch64-unknown-none-softfloat] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-loongarch64-unknown-none-softfloat.tar.gz" +hash = "1edaeb7b827f4ec094f45e9ed8c2519bb871f9a21e0c391e61c96de1a2ae43f9" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-loongarch64-unknown-none-softfloat.tar.xz" +xz_hash = "bd030153abbdf0abb3321480047770424cf3cea1bbef984729b963047ff104a8" +components = [] +extensions = [] + +[pkg.rust-std.target.nvptx64-nvidia-cuda] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-nvptx64-nvidia-cuda.tar.gz" +hash = "3c4c87c704f9336947532d530ca17e020fdc403cacb325a11cfb2652efe75a5e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-nvptx64-nvidia-cuda.tar.xz" +xz_hash = "52393e76d762a0de16106cce151507f4b511984b36c7c8fe0e02c5a1cb1735df" +components = [] +extensions = [] + +[pkg.rust-std.target.powerpc-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-powerpc-unknown-linux-gnu.tar.gz" +hash = "691c50c614f35e70d8d470c16a2a67190b5bd20d5013d3ad7d45d65f93a72638" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-powerpc-unknown-linux-gnu.tar.xz" +xz_hash = "59e0abbaa246502521e37c55b8d6cf88d5b8a697b0c70c61ec189937308f7246" +components = [] +extensions = [] + +[pkg.rust-std.target.powerpc64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-powerpc64-unknown-linux-gnu.tar.gz" +hash = "3412c8f0059a6402934c107a71688a52db7194659fcc930c2eece88f28c2c60c" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-powerpc64-unknown-linux-gnu.tar.xz" +xz_hash = "cc7fb9aa289ff1756502ae16a05e2885289165f01ed94a7c2db6576b3dae74a6" +components = [] +extensions = [] + +[pkg.rust-std.target.powerpc64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-powerpc64-unknown-linux-musl.tar.gz" +hash = "7286c8ee774d05a4d2bdebb59196f2fd93042900c3b287284b3d51160d0a7d0a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-powerpc64-unknown-linux-musl.tar.xz" +xz_hash = "0f501f41d71414106760bb49d880173b9814e623180ae741705170de2da33aab" +components = [] +extensions = [] + +[pkg.rust-std.target.powerpc64le-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-powerpc64le-unknown-linux-gnu.tar.gz" +hash = "f06680f2729cbc75a7a8582dc64c060c80944d752ab3065af0cdf0cfe3ce482d" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-powerpc64le-unknown-linux-gnu.tar.xz" +xz_hash = "2370d9266051a0b23346d42e43a00f91b2daff22a963fb03e28ae50cb0b76c50" +components = [] +extensions = [] + +[pkg.rust-std.target.powerpc64le-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-powerpc64le-unknown-linux-musl.tar.gz" +hash = "681ede6ac29dbf9b299a00289017e9709504b1e5bd49e662de593114ad2e46f1" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-powerpc64le-unknown-linux-musl.tar.xz" +xz_hash = "0362ba4ecfe0bb508f0d2b064c6fbbfe72604d5ae1989d6a8a7b4fe5ff1889f1" +components = [] +extensions = [] + +[pkg.rust-std.target.riscv32i-unknown-none-elf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-riscv32i-unknown-none-elf.tar.gz" +hash = "7492177ea638dac71956a709981ffa206e659a8863135bd32a3e6412d12a59ff" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-riscv32i-unknown-none-elf.tar.xz" +xz_hash = "c80aa8bb94f48b242bb3cbd9da12e4b43e8ed470fed5d0f04868dbd6b604d7df" +components = [] +extensions = [] + +[pkg.rust-std.target.riscv32im-unknown-none-elf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-riscv32im-unknown-none-elf.tar.gz" +hash = "12d87da304b9d987e3af37cbf684dac1a50400bda7a91d0d9387e84544191c0e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-riscv32im-unknown-none-elf.tar.xz" +xz_hash = "c2db872515edea2fe5ab6b16c34e75a8274ae03cacc19ab9f57cb6cdf601564a" +components = [] +extensions = [] + +[pkg.rust-std.target.riscv32imac-unknown-none-elf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-riscv32imac-unknown-none-elf.tar.gz" +hash = "d849f86e42107687893db2d64aa252753137eafe0a4ac572b7cfe5ab94a18964" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-riscv32imac-unknown-none-elf.tar.xz" +xz_hash = "09d568f3f445670917ee9aeb3a86374dae760da8a92d4bfecde88af7fe0bd6ad" +components = [] +extensions = [] + +[pkg.rust-std.target.riscv32imafc-unknown-none-elf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-riscv32imafc-unknown-none-elf.tar.gz" +hash = "c1ea40764cc8e062f57b245038278717f62e5fbacca93888d342197a40d58ace" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-riscv32imafc-unknown-none-elf.tar.xz" +xz_hash = "de1286d35d63ddcf7d74879b64bd308771cfe0b262d46d620c6f7ebc373bf9db" +components = [] +extensions = [] + +[pkg.rust-std.target.riscv32imc-unknown-none-elf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-riscv32imc-unknown-none-elf.tar.gz" +hash = "e75c0f3f97b7787a0cf240f32d9f54e6431822dafa1bf61399ad1009541f2f8d" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-riscv32imc-unknown-none-elf.tar.xz" +xz_hash = "04befebf3b15372dacb7e6c0fcdab842c17a63ea58bf2f4cdccd7182ae9195c6" +components = [] +extensions = [] + +[pkg.rust-std.target.riscv64a23-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-riscv64a23-unknown-linux-gnu.tar.gz" +hash = "76994cce754bc52241192d1ac2d12757f537082b086c40dd3c59285f78a8f6fc" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-riscv64a23-unknown-linux-gnu.tar.xz" +xz_hash = "87f3cee68f0522e0c2b755d3f9683473a3f51064e58d9b02f21350d5fa7af9cf" +components = [] +extensions = [] + +[pkg.rust-std.target.riscv64gc-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-riscv64gc-unknown-linux-gnu.tar.gz" +hash = "dcd25892fbe4b28857bd2d4753dd3e449ef7bcbf52ccece33646dfad5bd73b05" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-riscv64gc-unknown-linux-gnu.tar.xz" +xz_hash = "50fe7869e166bb4c990a0e1664366b1ffdbe669664b7663cd03c079bd0efdcac" +components = [] +extensions = [] + +[pkg.rust-std.target.riscv64gc-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-riscv64gc-unknown-linux-musl.tar.gz" +hash = "9023abf9c37dcd9b55660f65c6d8781b2e3df35b32e1fd6419c9b829614bf981" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-riscv64gc-unknown-linux-musl.tar.xz" +xz_hash = "e01bdbf5d6fa3e529671d49e87ba81dc9612101144f3ee5a0e1de3c48f27b47c" +components = [] +extensions = [] + +[pkg.rust-std.target.riscv64gc-unknown-none-elf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-riscv64gc-unknown-none-elf.tar.gz" +hash = "91c390ffbbcbaf4b4489394c8e70176a85dc2828504873c9eb1dc0c56172f150" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-riscv64gc-unknown-none-elf.tar.xz" +xz_hash = "a4cb7a1527f3b56a39464e5ca2b174a27b708b26d78e604735eb5ffd9ee4d20b" +components = [] +extensions = [] + +[pkg.rust-std.target.riscv64imac-unknown-none-elf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-riscv64imac-unknown-none-elf.tar.gz" +hash = "5f1a9e4e9e07aefe237ecf6f0fd439c1185887446a17dbf2312d16b5e67f0fd5" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-riscv64imac-unknown-none-elf.tar.xz" +xz_hash = "e1d1864842da27baae17d561baf568e963df3e7e8df5f2f8262053ad79c1fc57" +components = [] +extensions = [] + +[pkg.rust-std.target.s390x-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-s390x-unknown-linux-gnu.tar.gz" +hash = "c4fe9ebd09d054470481602dbee2ced8fc2e082953a6a13cb3f7180efefca7ed" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-s390x-unknown-linux-gnu.tar.xz" +xz_hash = "31978c1286afff9a0bb7f01c2ae4a39f40727b6100a82b6d934f146b06cde510" +components = [] +extensions = [] + +[pkg.rust-std.target.s390x-unknown-none-softfloat] +available = false +components = [] +extensions = [] + +[pkg.rust-std.target.sparc64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-sparc64-unknown-linux-gnu.tar.gz" +hash = "25de3e5c9575686c07d266430da1862f8c222a0b94b4d3b7904e68d0335e1584" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-sparc64-unknown-linux-gnu.tar.xz" +xz_hash = "88619b2413d218c119a2060e583a9e835fa5f9cf6ac038070eec10b02c191056" +components = [] +extensions = [] + +[pkg.rust-std.target.sparcv9-sun-solaris] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-sparcv9-sun-solaris.tar.gz" +hash = "e207f83fb317119a4805e8614ea198376f200467682b47030d593ad987e76c2e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-sparcv9-sun-solaris.tar.xz" +xz_hash = "0678ab79ea22c24afd16933d0859a40e7f14e66f11cb291fa5906a82134724f4" +components = [] +extensions = [] + +[pkg.rust-std.target.thumbv6m-none-eabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-thumbv6m-none-eabi.tar.gz" +hash = "2c935e1e52b2759059a935817f34edf3eb3d9f17fcff56784c9b78affe9301cc" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-thumbv6m-none-eabi.tar.xz" +xz_hash = "602ec023c4615fc1c2d78b688554d42fa525e07e861c052f406fd7a607e5d5ee" +components = [] +extensions = [] + +[pkg.rust-std.target.thumbv7a-none-eabi] +available = false +components = [] +extensions = [] + +[pkg.rust-std.target.thumbv7a-none-eabihf] +available = false +components = [] +extensions = [] + +[pkg.rust-std.target.thumbv7em-none-eabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-thumbv7em-none-eabi.tar.gz" +hash = "976e349485ab2a2c8c22abac4137fa2c5a1eff9b35092c690a1219b2af66f6b1" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-thumbv7em-none-eabi.tar.xz" +xz_hash = "fb671966ba9aede333956ed43fcfe114ec890ca6e70369c9f3219871ee3ae8ae" +components = [] +extensions = [] + +[pkg.rust-std.target.thumbv7em-none-eabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-thumbv7em-none-eabihf.tar.gz" +hash = "0d1af288c477c429c78134e34fbef9e8f21dde5cc06e8b9e9a85bb8d5ba4c087" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-thumbv7em-none-eabihf.tar.xz" +xz_hash = "fa3d189c09b64d818ad65a3fec1ce1c7d7b3908aea6fc4607a3fcc05067cad81" +components = [] +extensions = [] + +[pkg.rust-std.target.thumbv7m-none-eabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-thumbv7m-none-eabi.tar.gz" +hash = "b42c92e5350c7e2b2cf2393222d2a36fa305bdcbaac6fc036bd7096c969a858c" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-thumbv7m-none-eabi.tar.xz" +xz_hash = "e9e39f483ad4c1ce55fa4f508009e8d7d7ef25efe6592f7bfbabc159a24658ff" +components = [] +extensions = [] + +[pkg.rust-std.target.thumbv7neon-linux-androideabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-thumbv7neon-linux-androideabi.tar.gz" +hash = "ebe2aa4cff509d8787af1a4769969b2aa4ba65e2bd234dde967bb98a573fc116" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-thumbv7neon-linux-androideabi.tar.xz" +xz_hash = "4803534e2d4be7742b4c1aa2d35d97d4f28d2c730373c69dfdbfe027d62a6e61" +components = [] +extensions = [] + +[pkg.rust-std.target.thumbv7neon-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-thumbv7neon-unknown-linux-gnueabihf.tar.gz" +hash = "0bb9598190044a502630c53eeed5bfd7b04078d42309a3716cef0e810b0bda8e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-thumbv7neon-unknown-linux-gnueabihf.tar.xz" +xz_hash = "60241f4d49b5c302122692fda2a47c9d6805aa89b629230369480e7ff9974dd1" +components = [] +extensions = [] + +[pkg.rust-std.target.thumbv7r-none-eabi] +available = false +components = [] +extensions = [] + +[pkg.rust-std.target.thumbv7r-none-eabihf] +available = false +components = [] +extensions = [] + +[pkg.rust-std.target."thumbv8m.base-none-eabi"] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-thumbv8m.base-none-eabi.tar.gz" +hash = "999fd507b9d8794650698a1a42ae261d147ca311bdec8532f536df490d2d466b" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-thumbv8m.base-none-eabi.tar.xz" +xz_hash = "f9610b84cfc9c29f7c292e816bfb368ac681fa87102049f7a235454cfb6de5cb" +components = [] +extensions = [] + +[pkg.rust-std.target."thumbv8m.main-none-eabi"] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-thumbv8m.main-none-eabi.tar.gz" +hash = "b30226e34de9b9b29c793a9ad6229d50ed82faecb3844d9c6debdded3f9ca350" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-thumbv8m.main-none-eabi.tar.xz" +xz_hash = "3b64bffb193b37e83dc7b169add55f0ef3298220f8475468be4bb87276a68105" +components = [] +extensions = [] + +[pkg.rust-std.target."thumbv8m.main-none-eabihf"] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-thumbv8m.main-none-eabihf.tar.gz" +hash = "6aac873e65ef3ce0b1ee13b806e34a40d0b89973d90ed285c6226208dd10e82e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-thumbv8m.main-none-eabihf.tar.xz" +xz_hash = "25ec92187d3a45fb1e397b0ba6000341d872523925a99a48b1978bdf1e6038cb" +components = [] +extensions = [] + +[pkg.rust-std.target.thumbv8r-none-eabihf] +available = false +components = [] +extensions = [] + +[pkg.rust-std.target.wasm32-unknown-emscripten] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-wasm32-unknown-emscripten.tar.gz" +hash = "4d7d5a8bea9d3a6784bf7bc9ad166614a1de2d6b9d1dc6dba96ee6e2938ae9fa" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-wasm32-unknown-emscripten.tar.xz" +xz_hash = "967b92a8682e8b8a1a459d776b36e41c906cdcac1008fef70e4800fec40d6864" +components = [] +extensions = [] + +[pkg.rust-std.target.wasm32-unknown-unknown] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-wasm32-unknown-unknown.tar.gz" +hash = "e9cef38014dddbe22495e5b5729949c032dea8b0a00d4ce8e9e53de311db6ff9" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-wasm32-unknown-unknown.tar.xz" +xz_hash = "5587b89ff69623d09e476439d44a24453b4e4ea3d5e0b53a5c0a935151ff3fd1" +components = [] +extensions = [] + +[pkg.rust-std.target.wasm32-wasip1] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-wasm32-wasip1.tar.gz" +hash = "ddee2aad61c73cededcaef2a8063dd8727074e0f4980d6f3a01e8cdba1bb5d3b" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-wasm32-wasip1.tar.xz" +xz_hash = "86e5b6d98c7520bb9c3ad4f8cbbbf14beaf230b0f06b437db398e3c4f7dae43e" +components = [] +extensions = [] + +[pkg.rust-std.target.wasm32-wasip1-threads] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-wasm32-wasip1-threads.tar.gz" +hash = "9743aa2aed0ab6291261962c0622ce9abee34e472e37be39408af59586441d89" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-wasm32-wasip1-threads.tar.xz" +xz_hash = "9079935a00a3c3aaf284957bbe82972983ce2708019687cec1f4988c30c1e0f3" +components = [] +extensions = [] + +[pkg.rust-std.target.wasm32-wasip2] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-wasm32-wasip2.tar.gz" +hash = "3e92aa22b6862374701fef4e74ac21897cef4021267bfd9f59b70385cbe3ac26" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-wasm32-wasip2.tar.xz" +xz_hash = "68146eb4c887431379966efa21d75dc957f18bd1166239c1deaa53fe38cb9ab4" +components = [] +extensions = [] + +[pkg.rust-std.target.wasm32v1-none] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-wasm32v1-none.tar.gz" +hash = "8b7a8cfdcd6121450cba9c27418085f9a616292710b27144fe05578657b65286" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-wasm32v1-none.tar.xz" +xz_hash = "2d58ffe94dcaa041643ab59a98da0ac7d22c1f410636e2b4a66b114ef970df07" +components = [] +extensions = [] + +[pkg.rust-std.target.x86_64-apple-darwin] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-apple-darwin.tar.gz" +hash = "7c4812011f7b454344b62ded344b9b24102c15636c1d6aada6e5d5fcb4c4caa9" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-apple-darwin.tar.xz" +xz_hash = "2be13c14122b8d4d09b7f7c434fca9ae7215ec72049944189c88c4d9128ce504" +components = [] +extensions = [] + +[pkg.rust-std.target.x86_64-apple-ios] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-apple-ios.tar.gz" +hash = "abada6fd0a18539d650a7db8ee03bea6ef4c5528ad56570e4d76f713e62ecf38" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-apple-ios.tar.xz" +xz_hash = "11abb7b1c92b5a88b8c3ba21ee596a1be7dee5e817b336f26b4968d8ed5513ad" +components = [] +extensions = [] + +[pkg.rust-std.target.x86_64-apple-ios-macabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-apple-ios-macabi.tar.gz" +hash = "5fbeebfd4d3765f2b8f62b865ae2cfda9d91401d08290d8648a097e609826486" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-apple-ios-macabi.tar.xz" +xz_hash = "60b92e51e87f84046e0b19ccedc88c45b4b62c3ab10351f8473453f341c894f1" +components = [] +extensions = [] + +[pkg.rust-std.target.x86_64-fortanix-unknown-sgx] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-fortanix-unknown-sgx.tar.gz" +hash = "7c48a19c6245b47abd289b0b0d0f713bebe859de1c4909e02b6cc35e1c03513a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-fortanix-unknown-sgx.tar.xz" +xz_hash = "ebfe4a226d7a258607e13c8601e6ab19effd1c4c34e015b7fe4c4887eaad9e2a" +components = [] +extensions = [] + +[pkg.rust-std.target.x86_64-linux-android] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-linux-android.tar.gz" +hash = "5860d104fa4963366ee559c454e9e8edbebcf317bd8e13b0e0e5525fec3f6b1e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-linux-android.tar.xz" +xz_hash = "77b8e2be4a6e784a63cd77de944864c8044ddf4d5c7d56f663ada8a38a8319c4" +components = [] +extensions = [] + +[pkg.rust-std.target.x86_64-pc-solaris] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-pc-solaris.tar.gz" +hash = "fcaa7fdf9902a95f414562ffb7c14ec9ba04b915f184c40b32540126edf9509f" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-pc-solaris.tar.xz" +xz_hash = "e50da2b85c3034ff67cbc02bccde4f54ec08df5d9adfe25be1c73c44fd484117" +components = [] +extensions = [] + +[pkg.rust-std.target.x86_64-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-pc-windows-gnu.tar.gz" +hash = "a547ac6b2643922a2aed753fbd09fb416a2de59436acdbd16edd64d7290b0881" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-pc-windows-gnu.tar.xz" +xz_hash = "f57e045016a04130125fb43295d95f9ad2bebc296150eadb031dbf5167ad12bd" +components = [] +extensions = [] + +[pkg.rust-std.target.x86_64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-pc-windows-gnullvm.tar.gz" +hash = "98e54d3c36a945e4eb507cf1420b4a74cdd7e2be07c00b5755040e704d1c186a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-pc-windows-gnullvm.tar.xz" +xz_hash = "3c52a0e34e0b4abe4439cabd77383408f5f9c80b6e249fbc0855df424b45008d" +components = [] +extensions = [] + +[pkg.rust-std.target.x86_64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-pc-windows-msvc.tar.gz" +hash = "aa56f95b4817f562c0ada0abee3511a802a948303404e8fc872d0371ae0693fc" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-pc-windows-msvc.tar.xz" +xz_hash = "7c659bdc88646e7e1befa370881bd311be87b26f006933a28b40dcab2f7cc832" +components = [] +extensions = [] + +[pkg.rust-std.target.x86_64-unknown-freebsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-unknown-freebsd.tar.gz" +hash = "841b9bc890aec786665cafdf212bba0ad842c0c83e118af26de95c517fd52727" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-unknown-freebsd.tar.xz" +xz_hash = "dfe913c2f477172db10d3723d9f5c536d8b6f42776c979cc855820d8249adec3" +components = [] +extensions = [] + +[pkg.rust-std.target.x86_64-unknown-fuchsia] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-unknown-fuchsia.tar.gz" +hash = "1a9c770a19fc389b7aa503536d6af25cafd81805e130b8545694937af66a39b8" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-unknown-fuchsia.tar.xz" +xz_hash = "faa2bc09a3992f1d81b538121d64a3a396f4ec666e665c79d2ab47461c2d3206" +components = [] +extensions = [] + +[pkg.rust-std.target.x86_64-unknown-illumos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-unknown-illumos.tar.gz" +hash = "22bc07ece9cf4bf2096e27a1025a8292b624b3295112185f74e3caa32a6b8747" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-unknown-illumos.tar.xz" +xz_hash = "6848a2673bb68c2f6dae8aa5f738bc9f6ce3eda88fff4433b2f79202b2cbb95f" +components = [] +extensions = [] + +[pkg.rust-std.target.x86_64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "edbd20f8fc0a617f85ffb79fa6c22aa6def0e570de3f94be1a6e5ab1f77f763c" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "047ea7098803d3500fa1072e9cee5392697e21525559e4458128a2bf874aa382" +components = [] +extensions = [] + +[pkg.rust-std.target.x86_64-unknown-linux-gnuasan] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-unknown-linux-gnuasan.tar.gz" +hash = "619bffe074170674178b622ddea0a39e17c27197eb81752c865a494214c6417e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-unknown-linux-gnuasan.tar.xz" +xz_hash = "5e6bcc5692e02ba623cd7861696ea442b97ee92728788de83ebc29af5a6436da" +components = [] +extensions = [] + +[pkg.rust-std.target.x86_64-unknown-linux-gnux32] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-unknown-linux-gnux32.tar.gz" +hash = "4b61544e10a967a9a77efc70391a5ea9daeb714dba3d0827cb3a1c201386cc18" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-unknown-linux-gnux32.tar.xz" +xz_hash = "554494f4d75d8e42e27458ba2b88ec822495df9b2fdcb9122acffc17727073de" +components = [] +extensions = [] + +[pkg.rust-std.target.x86_64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-unknown-linux-musl.tar.gz" +hash = "ff2564c0a8d85ae355ee9aa4b3e0378e19f82e2407ed3c19480dab7714842364" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-unknown-linux-musl.tar.xz" +xz_hash = "aee540abf132920f791ef781489851a078d69dff493fb628d49c1d573f92bb3a" +components = [] +extensions = [] + +[pkg.rust-std.target.x86_64-unknown-linux-ohos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-unknown-linux-ohos.tar.gz" +hash = "d7626ae8a10010433d3e3ed51ba0b5156953291285d5874cd823618765ca53e4" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-unknown-linux-ohos.tar.xz" +xz_hash = "e60d6c574b12b1e18f6d7d97b74525aa405d58d35196119ca9031bfe10ff4db3" +components = [] +extensions = [] + +[pkg.rust-std.target.x86_64-unknown-netbsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-unknown-netbsd.tar.gz" +hash = "cc204ebd2f47f128827c83504a9cc3e5a37bff60f5eb416a24d968824220efd0" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-unknown-netbsd.tar.xz" +xz_hash = "7a82b71c53f20cb147a340819fcab645da220b312a96194531e631ee99783a7d" +components = [] +extensions = [] + +[pkg.rust-std.target.x86_64-unknown-none] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-unknown-none.tar.gz" +hash = "21c90b4ba267ccace196c6659e52dad5bcd059bfd1db01e341d16d06bbd7ada3" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-unknown-none.tar.xz" +xz_hash = "7c151c0e7bf3b0b4d7136774cd3686e5f691b761b648b17e83af58e7669d3e01" +components = [] +extensions = [] + +[pkg.rust-std.target.x86_64-unknown-redox] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-unknown-redox.tar.gz" +hash = "5c28f6c49d2b42dffa59b1892e9dc63fdd3f633dddad4331e951f9158b6caf24" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-unknown-redox.tar.xz" +xz_hash = "4436400be26683dcbc5dae349bd3bbbef649d1d11bc38f582417f446a7dfbe33" +components = [] +extensions = [] + +[pkg.rust-std.target.x86_64-unknown-uefi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-unknown-uefi.tar.gz" +hash = "4e06fcd50adf5114cb29c2f2896b4ed4276549ebd46c0fa7ef29f4f264c4a685" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rust-std-1.95.0-x86_64-unknown-uefi.tar.xz" +xz_hash = "4cc55629480aa8ab5b39eb6b7458433b48461d6626fdea0330fb88e23af818ea" +components = [] +extensions = [] + +[pkg.rustc] +version = "1.95.0 (59807616e 2026-04-14)" + +[pkg.rustc.target.aarch64-apple-darwin] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-aarch64-apple-darwin.tar.gz" +hash = "64f20ce6864040b822b8fbdb7dbfd892e5b04828ca8cbd1e6accef9694da3ebb" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-aarch64-apple-darwin.tar.xz" +xz_hash = "149e85a285b6eba58eb6c8bdf7deb1b93763890598e62cb635a712e3a8454f04" +components = [] +extensions = [] + +[pkg.rustc.target.aarch64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-aarch64-pc-windows-gnullvm.tar.gz" +hash = "bbe34868ce3b85564fefaf867d692d85370bb941a5f83afc8e25ff43c3bff014" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-aarch64-pc-windows-gnullvm.tar.xz" +xz_hash = "758e729faabd8dabfab584d2bead59ca4fbcf1125ffc3c43a69332d6d9f2316b" +components = [] +extensions = [] + +[pkg.rustc.target.aarch64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-aarch64-pc-windows-msvc.tar.gz" +hash = "af1788bfb5b09b489e8581056158e7175be41100965846984fcdafa2698b3cfd" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-aarch64-pc-windows-msvc.tar.xz" +xz_hash = "0dbec9739b93427ccdd3948c3b1f83cec42e4c9545d930a8d1e1464ff4092c5f" +components = [] +extensions = [] + +[pkg.rustc.target.aarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-aarch64-unknown-linux-gnu.tar.gz" +hash = "f488f7eced24d2fed2e4745f3dbccf1ffe24bfe02720e5415406195ceaf45f7a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-aarch64-unknown-linux-gnu.tar.xz" +xz_hash = "0fe3689eeaed603e5ef24572d11597d3edadaefd2cb181674ad621260f2501d2" +components = [] +extensions = [] + +[pkg.rustc.target.aarch64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-aarch64-unknown-linux-musl.tar.gz" +hash = "814dc90c81c33e76ac4dd061520b8d7de749e4b3348cdd5305494e596d1b3e2c" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-aarch64-unknown-linux-musl.tar.xz" +xz_hash = "8d05ce001477dec7cfee8e778e15883a9b3a73a061d63e491f08429c3c2a5235" +components = [] +extensions = [] + +[pkg.rustc.target.aarch64-unknown-linux-ohos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-aarch64-unknown-linux-ohos.tar.gz" +hash = "d1afdea8963e55832fddc2625e98fc7e8b9e4b9c1df82b9f9e89d9e111507579" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-aarch64-unknown-linux-ohos.tar.xz" +xz_hash = "832d7e0ac5baaacfd3ff1b1f056cc05ec13f0665372eeb42a65efd8f868e9855" +components = [] +extensions = [] + +[pkg.rustc.target.arm-unknown-linux-gnueabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-arm-unknown-linux-gnueabi.tar.gz" +hash = "c71495b99d0a7a3cb2461c1473f50a7c7af715c47fa496b61902f8915b304bba" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-arm-unknown-linux-gnueabi.tar.xz" +xz_hash = "c473f1a8e68a5cf46813b15e81403bbaa360c8191e5e67dd1dd569bbdf0790a5" +components = [] +extensions = [] + +[pkg.rustc.target.arm-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-arm-unknown-linux-gnueabihf.tar.gz" +hash = "0f0952590a56982baa65507259dbbe54d59f7c0a5f37bc4f0e0a2b16e5c66839" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-arm-unknown-linux-gnueabihf.tar.xz" +xz_hash = "4cf73cefec9ac6725bb43493d62893aeff75e6856af668b82002516433c11984" +components = [] +extensions = [] + +[pkg.rustc.target.armv7-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-armv7-unknown-linux-gnueabihf.tar.gz" +hash = "73c361855d1652bf731fb9deffa81e17ef68b0fa960f5909e24749ce809a5e50" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-armv7-unknown-linux-gnueabihf.tar.xz" +xz_hash = "ee144b962859c8b619e074eed95e9a46faeb2cf85ec8af6d75ae26bd3f52760c" +components = [] +extensions = [] + +[pkg.rustc.target.i686-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-i686-pc-windows-gnu.tar.gz" +hash = "97e8c28d88986a527614b03ab156e832b1d22797ae7166bb9829931a4e3f7200" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-i686-pc-windows-gnu.tar.xz" +xz_hash = "d1875bc41e17d98e6a74b63fbe772ad6fdeabd509c1159491b5e6bd500b4eb71" +components = [] +extensions = [] + +[pkg.rustc.target.i686-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-i686-pc-windows-msvc.tar.gz" +hash = "9b2cb8ec33a6b9b58d3120c54611648733e808f9205e527edf3c2e3668ab5428" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-i686-pc-windows-msvc.tar.xz" +xz_hash = "1d72388a6f3438c7830c48a6b5c844428e46e1e03600d5ed57a471b458c184c7" +components = [] +extensions = [] + +[pkg.rustc.target.i686-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-i686-unknown-linux-gnu.tar.gz" +hash = "e61233f2bcde223b43fe93f1d23db6724bc16bde74f1cd84acff269f151cf654" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-i686-unknown-linux-gnu.tar.xz" +xz_hash = "420f8fe21a8f668112d452b9d9533591c7dbb534fb13bcde9d5c8e56131b4456" +components = [] +extensions = [] + +[pkg.rustc.target.loongarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-loongarch64-unknown-linux-gnu.tar.gz" +hash = "8fc003452d5e8f1690367f78740e56d951b96deef120253ce15bfe5ca734b097" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-loongarch64-unknown-linux-gnu.tar.xz" +xz_hash = "b1d248bcccbaf5a53a335c8882022af4f40879ac11ea85c1bac0500ed010fe33" +components = [] +extensions = [] + +[pkg.rustc.target.loongarch64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-loongarch64-unknown-linux-musl.tar.gz" +hash = "cb6bc84a3e0aaa13ce88e8f3ef47d1aee933dba379a2ce66959ff1a7ca7bfdd8" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-loongarch64-unknown-linux-musl.tar.xz" +xz_hash = "076e6771bb85f2cd0180a8e46316b67408fde0baca9e811238d1cf05a7a6a4c5" +components = [] +extensions = [] + +[pkg.rustc.target.powerpc-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-powerpc-unknown-linux-gnu.tar.gz" +hash = "3fc47803f2b82b4e1720259938efdb4a0cfb92ef2df7ee1ec69b857d6f8a40ae" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-powerpc-unknown-linux-gnu.tar.xz" +xz_hash = "a0c42a1dc1aa7e06db4f17cdcce6a150c803e99118923ccddf88d66677acf48e" +components = [] +extensions = [] + +[pkg.rustc.target.powerpc64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-powerpc64-unknown-linux-gnu.tar.gz" +hash = "c168037ce13eb3acf5ea362d5eeab82281f6aa674a77739143d4d036fce25170" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-powerpc64-unknown-linux-gnu.tar.xz" +xz_hash = "946a84e6e9d6e13df5d6361578d9202714c08c2ebd3e09734df7cf4afaec60fd" +components = [] +extensions = [] + +[pkg.rustc.target.powerpc64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-powerpc64-unknown-linux-musl.tar.gz" +hash = "e8d425e61afd378e27102d75231b4dfedfadffe5e16e9255167ef723d4457c73" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-powerpc64-unknown-linux-musl.tar.xz" +xz_hash = "4fc5a10b0ab9a96d5d2d119cd7397ff8ee1459afe3d71a4e21564c1d8d563f08" +components = [] +extensions = [] + +[pkg.rustc.target.powerpc64le-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-powerpc64le-unknown-linux-gnu.tar.gz" +hash = "5cbd4f5f12bf76c145ba0db5390c6805cf7e2dbb911f279d257b7978ffe6e86e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-powerpc64le-unknown-linux-gnu.tar.xz" +xz_hash = "5333b31e79482c71337cae23074483cb392e708528e383d587a9cd160bfb63fa" +components = [] +extensions = [] + +[pkg.rustc.target.powerpc64le-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-powerpc64le-unknown-linux-musl.tar.gz" +hash = "705b35964433667e903c0880363ebd06970443695cc7ce7252188ba2a839fbb7" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-powerpc64le-unknown-linux-musl.tar.xz" +xz_hash = "d39a6cb201a098a1a6104eda0f7aa4dac13bd5af92a98ad693bee4e74953d236" +components = [] +extensions = [] + +[pkg.rustc.target.riscv64gc-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-riscv64gc-unknown-linux-gnu.tar.gz" +hash = "4a4c03e2e483cede9e78509ec79fe0a3b4d5dd73c50e2ba8e4751ecb24550a24" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-riscv64gc-unknown-linux-gnu.tar.xz" +xz_hash = "04752f3ad26bf07ddbe70b1dc759aafde75226dabd4fc6cff3d0b016e293b990" +components = [] +extensions = [] + +[pkg.rustc.target.s390x-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-s390x-unknown-linux-gnu.tar.gz" +hash = "765c809642677a2de97dbd85773f3be5734d455a060a556ae976631eb3194117" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-s390x-unknown-linux-gnu.tar.xz" +xz_hash = "4f3812e0371d8eea904b0fbb08b94043d2ba7227632239e94ce7b35ef5285c2e" +components = [] +extensions = [] + +[pkg.rustc.target.sparcv9-sun-solaris] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-sparcv9-sun-solaris.tar.gz" +hash = "79d9fd03409e6fd7f69912574fa78cb99d8a6b1789527bc710f05df01d7ff128" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-sparcv9-sun-solaris.tar.xz" +xz_hash = "1c98534c0a35d1e11a8c643966dcf6bf4f5642a4392a1c6c0984f07f41bf9739" +components = [] +extensions = [] + +[pkg.rustc.target.x86_64-apple-darwin] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-x86_64-apple-darwin.tar.gz" +hash = "fc42cfed68f510ac1f251dbfcf66d7f95097a9d25ff462186da58148616066d3" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-x86_64-apple-darwin.tar.xz" +xz_hash = "33db457715446a69ed6f69f78f5fbb9ca8e17a16585d1d7a0060479bfe4c7afc" +components = [] +extensions = [] + +[pkg.rustc.target.x86_64-pc-solaris] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-x86_64-pc-solaris.tar.gz" +hash = "e7f9bb9bd8cc8b32a6153d5fc88289a9799f0264a7ad3baa7f3d321104ebf0a4" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-x86_64-pc-solaris.tar.xz" +xz_hash = "8ec672761cb430ca6b3cfde1daf3cdab17b651fa738853b985b5e7e53ffb3783" +components = [] +extensions = [] + +[pkg.rustc.target.x86_64-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-x86_64-pc-windows-gnu.tar.gz" +hash = "719f89a7825f437f1c06cfa13b4c0088bc02cffd8481c391c3e32cc264eabd25" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-x86_64-pc-windows-gnu.tar.xz" +xz_hash = "735c4b5c1459f82a8a1a5251f5899a958c4cf0d92ed3c992691cfff083d22623" +components = [] +extensions = [] + +[pkg.rustc.target.x86_64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-x86_64-pc-windows-gnullvm.tar.gz" +hash = "f36c14ab7bdd62a5e4b4aaed0c557ffff143d1b35c0ac9ac1fe55a113221563e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-x86_64-pc-windows-gnullvm.tar.xz" +xz_hash = "44ffbe057bb8f967087a1ad549a7139e9e5017d3aab396f42a6393f897e39531" +components = [] +extensions = [] + +[pkg.rustc.target.x86_64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-x86_64-pc-windows-msvc.tar.gz" +hash = "b1101cba184fda0da47658772d04423fdb86cc9ed888cac3b29d0e9f55faec53" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-x86_64-pc-windows-msvc.tar.xz" +xz_hash = "4cb1f3b578adc6541cbe13a6f85f1fd8c0ce643d90b506a36dee24c680864c67" +components = [] +extensions = [] + +[pkg.rustc.target.x86_64-unknown-freebsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-x86_64-unknown-freebsd.tar.gz" +hash = "b9dfb85422bd75df8eb2b628715a1aef299696c8cf0ab1880b5a781b24624e89" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-x86_64-unknown-freebsd.tar.xz" +xz_hash = "0c6377140a5c265f3148b24ec57dad2f2bb97fd92b7d9bcb85d503f12c4a917e" +components = [] +extensions = [] + +[pkg.rustc.target.x86_64-unknown-illumos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-x86_64-unknown-illumos.tar.gz" +hash = "cf78e250b8526369e492ccb98d8d07d3a0d5405ef4233872962444cc8692af65" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-x86_64-unknown-illumos.tar.xz" +xz_hash = "23de4d6a40ab1051623ec4abfc84061d38dcf8c373c7006548f4d1fb1b5df728" +components = [] +extensions = [] + +[pkg.rustc.target.x86_64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "fef749c4abb4b4bde5ebf773bec550003ce5b4410579cecd69a365e5c0c5106a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "8426a3d170a5879f5682f5fbdd024a1779b3951e7baba685af2d6dc32a6dfc15" +components = [] +extensions = [] + +[pkg.rustc.target.x86_64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-x86_64-unknown-linux-musl.tar.gz" +hash = "85d4124c63e5875d93e427df58ab6979d524bc885ac725f18a8d052f891ca279" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-x86_64-unknown-linux-musl.tar.xz" +xz_hash = "1a18aabec47fd0ada35f82a8864d6319471cbc7cdf7e84e53fed1941018af92d" +components = [] +extensions = [] + +[pkg.rustc.target.x86_64-unknown-netbsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-x86_64-unknown-netbsd.tar.gz" +hash = "2fe2ad628ead916e29e730d5093e95c3fcafb596c8c410ce93ec1e7b933424ad" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-1.95.0-x86_64-unknown-netbsd.tar.xz" +xz_hash = "9458bcd6170dc82f03ad84b88bbf3e96a226a91581fcd82ac68956f7cf85efd7" +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview] +version = "" + +[pkg.rustc-codegen-cranelift-preview.target.aarch64-apple-darwin] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.aarch64-pc-windows-gnullvm] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.aarch64-pc-windows-msvc] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.aarch64-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.aarch64-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.aarch64-unknown-linux-ohos] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.arm-unknown-linux-gnueabi] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.arm-unknown-linux-gnueabihf] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.armv7-unknown-linux-gnueabihf] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.i686-pc-windows-gnu] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.i686-pc-windows-msvc] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.i686-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.loongarch64-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.loongarch64-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.powerpc-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.powerpc64-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.powerpc64-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.powerpc64le-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.powerpc64le-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.riscv64gc-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.s390x-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.sparcv9-sun-solaris] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.x86_64-apple-darwin] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.x86_64-pc-solaris] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.x86_64-pc-windows-gnu] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.x86_64-pc-windows-gnullvm] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.x86_64-pc-windows-msvc] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.x86_64-unknown-freebsd] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.x86_64-unknown-illumos] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.x86_64-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.x86_64-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-cranelift-preview.target.x86_64-unknown-netbsd] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview] +version = "" + +[pkg.rustc-codegen-gcc-preview.target.aarch64-apple-darwin] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.aarch64-pc-windows-gnullvm] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.aarch64-pc-windows-msvc] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.aarch64-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.aarch64-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.aarch64-unknown-linux-ohos] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.arm-unknown-linux-gnueabi] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.arm-unknown-linux-gnueabihf] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.armv7-unknown-linux-gnueabihf] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.i686-pc-windows-gnu] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.i686-pc-windows-msvc] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.i686-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.loongarch64-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.loongarch64-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.powerpc-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.powerpc64-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.powerpc64-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.powerpc64le-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.powerpc64le-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.riscv64gc-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.s390x-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.sparcv9-sun-solaris] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.x86_64-apple-darwin] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.x86_64-pc-solaris] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.x86_64-pc-windows-gnu] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.x86_64-pc-windows-gnullvm] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.x86_64-pc-windows-msvc] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.x86_64-unknown-freebsd] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.x86_64-unknown-illumos] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.x86_64-unknown-linux-gnu] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.x86_64-unknown-linux-musl] +available = false +components = [] +extensions = [] + +[pkg.rustc-codegen-gcc-preview.target.x86_64-unknown-netbsd] +available = false +components = [] +extensions = [] + +[pkg.rustc-dev] +version = "1.95.0 (59807616e 2026-04-14)" + +[pkg.rustc-dev.target.aarch64-apple-darwin] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-aarch64-apple-darwin.tar.gz" +hash = "2db782a344496d8332b850399e37d194cb476610f5747c2ded953547f28641b7" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-aarch64-apple-darwin.tar.xz" +xz_hash = "c9f65810f625b8435c2d4e8486340f93f03f3d7393b4ee2c22865f2444298e48" +components = [] +extensions = [] + +[pkg.rustc-dev.target.aarch64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-aarch64-pc-windows-gnullvm.tar.gz" +hash = "d3604a0bcdf8fa09400adfc617c67cdf1688f6684ab4453d28515bcc0ba4dece" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-aarch64-pc-windows-gnullvm.tar.xz" +xz_hash = "106cf398e04fd7841f3979278920abb8c2f3862a911a7242e21a8203b38a2a55" +components = [] +extensions = [] + +[pkg.rustc-dev.target.aarch64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-aarch64-pc-windows-msvc.tar.gz" +hash = "a5c0dbc650c9bdf4d04287a14645e838beef271d9c6ef9c30e1821338013ca96" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-aarch64-pc-windows-msvc.tar.xz" +xz_hash = "c3646567687b2e97a67de005069dbb081138073f2243e1e0f244142dfb15d51d" +components = [] +extensions = [] + +[pkg.rustc-dev.target.aarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-aarch64-unknown-linux-gnu.tar.gz" +hash = "cf2eab6a65cdaaf39e2eb652ac317fe50a1fb9e9f1e9053f680abaf0fc32ef28" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-aarch64-unknown-linux-gnu.tar.xz" +xz_hash = "f37c033f2a1c74c1397af2d35451f85c887799ab4974892c5b925ef7ff4eea09" +components = [] +extensions = [] + +[pkg.rustc-dev.target.aarch64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-aarch64-unknown-linux-musl.tar.gz" +hash = "bcfe5b4c28a1b71cb5bbe4c2dd75080329d75f1e14958f88b167a8ae3103d6c9" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-aarch64-unknown-linux-musl.tar.xz" +xz_hash = "de6912e50c41abd11970d9581d37a20c632585d3006b33d16132c540a6ce30ba" +components = [] +extensions = [] + +[pkg.rustc-dev.target.aarch64-unknown-linux-ohos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-aarch64-unknown-linux-ohos.tar.gz" +hash = "596dc2cc65a905e3643732df5647bf133ef023077bee38dff9dcea8e8d4ad54f" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-aarch64-unknown-linux-ohos.tar.xz" +xz_hash = "19a809525292c67ba4c1f8e35f608dc9e224768f06657a0891147a3c9f34010d" +components = [] +extensions = [] + +[pkg.rustc-dev.target.arm-unknown-linux-gnueabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-arm-unknown-linux-gnueabi.tar.gz" +hash = "e7d53f409be896ca12d9ae65c65791f252b65a89df5009396441e724a7f14b01" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-arm-unknown-linux-gnueabi.tar.xz" +xz_hash = "a688fbc5d25dbf0afc44ece304dd1cfa8ebd7ffb2957bb0c2a57a7da2a8237a3" +components = [] +extensions = [] + +[pkg.rustc-dev.target.arm-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-arm-unknown-linux-gnueabihf.tar.gz" +hash = "23fc97218146d6b8b5529a1facf42ee0d869e46a268a62fdf99536f9c2aebb8a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-arm-unknown-linux-gnueabihf.tar.xz" +xz_hash = "016d917172189b7e77fe6af1c738c1eacacad19095906be8e5684e020929eef7" +components = [] +extensions = [] + +[pkg.rustc-dev.target.armv7-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-armv7-unknown-linux-gnueabihf.tar.gz" +hash = "9e8af1d95caa1856998181861e33960990684424ed110e0580783540d5104992" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-armv7-unknown-linux-gnueabihf.tar.xz" +xz_hash = "2b5886f533cdacc4984899bff405850f027d00907e936928ff6647613ab48f5a" +components = [] +extensions = [] + +[pkg.rustc-dev.target.i686-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-i686-pc-windows-gnu.tar.gz" +hash = "ed8c86a790d3fb203144094115777be2513481efb6c76e1609233a3128688417" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-i686-pc-windows-gnu.tar.xz" +xz_hash = "d9b23a69a76082eecfafb16793705e590f7d80ffa5336e3ea4c4c0b8fa0bc75e" +components = [] +extensions = [] + +[pkg.rustc-dev.target.i686-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-i686-pc-windows-msvc.tar.gz" +hash = "1685414d789d06accea464be0daa24b3ade21eca2b82438c3a74475e01c7638d" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-i686-pc-windows-msvc.tar.xz" +xz_hash = "adfc993c506ada9ec3338b801113ea13ba3d71d8e4be948e4f293b8ada1d08fd" +components = [] +extensions = [] + +[pkg.rustc-dev.target.i686-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-i686-unknown-linux-gnu.tar.gz" +hash = "b00e051b49f80c651997e539c084845ce04af16529d78c1727641bb46a18a2c4" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-i686-unknown-linux-gnu.tar.xz" +xz_hash = "0beaf767d053d0089d3827dbf9ca5ea96cf963241012648923d09d038ce93a9b" +components = [] +extensions = [] + +[pkg.rustc-dev.target.loongarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-loongarch64-unknown-linux-gnu.tar.gz" +hash = "7ab2cbe8c6dcbe97bcd3d29585ee28f229cc0079603003d21e74f2abcbd109ef" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-loongarch64-unknown-linux-gnu.tar.xz" +xz_hash = "5d465df34817665e9c4b074f843bf37e49bcc0f0cdde2c77258d694106630cf6" +components = [] +extensions = [] + +[pkg.rustc-dev.target.loongarch64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-loongarch64-unknown-linux-musl.tar.gz" +hash = "364ac0af2b2cdd87364edeca1b5cd4ad75bac5ff968233db6833b9af7499ac5f" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-loongarch64-unknown-linux-musl.tar.xz" +xz_hash = "948bd1713c3c76297cc21c8e2950366a9e46026006c5a505a4ec9eff4f1e8773" +components = [] +extensions = [] + +[pkg.rustc-dev.target.powerpc-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-powerpc-unknown-linux-gnu.tar.gz" +hash = "beb58e4f72776ee5ee22e229f1b292ebf68874c6234eb9ee4562e165f89312bf" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-powerpc-unknown-linux-gnu.tar.xz" +xz_hash = "d1244b7c377026c622c916e416a59783c86e1592407264468bdbb21ab54cfa4b" +components = [] +extensions = [] + +[pkg.rustc-dev.target.powerpc64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-powerpc64-unknown-linux-gnu.tar.gz" +hash = "b6a240a4b9e58e8d75842b5eb7741d57c706cd6d74f04ea9adb64c02c51ca428" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-powerpc64-unknown-linux-gnu.tar.xz" +xz_hash = "33dfbce648ed0d92d334d6ddeccdef87b4d1b00fa58515725ebb6ea6670a8271" +components = [] +extensions = [] + +[pkg.rustc-dev.target.powerpc64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-powerpc64-unknown-linux-musl.tar.gz" +hash = "d510486a8f51d244abcdc4e9cfd3b7f402ef447923e4d97658e5cd838fc8db5e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-powerpc64-unknown-linux-musl.tar.xz" +xz_hash = "0c41ce4c228a410832181114665c8cf6280affcf47477a84f2efe65383a76d61" +components = [] +extensions = [] + +[pkg.rustc-dev.target.powerpc64le-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-powerpc64le-unknown-linux-gnu.tar.gz" +hash = "05fa3afad4a0e5410ea56d4f75e72ec5ed73dfae25960ccd049dbfdc38af79ba" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-powerpc64le-unknown-linux-gnu.tar.xz" +xz_hash = "fe2bf80306bde07c4862b34264f017964296e83ce0fa13d04fe036ce6a662d36" +components = [] +extensions = [] + +[pkg.rustc-dev.target.powerpc64le-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-powerpc64le-unknown-linux-musl.tar.gz" +hash = "470a0905027d25e6808689321a5e78b7c7c2af585032b21f5014c5081c5910cc" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-powerpc64le-unknown-linux-musl.tar.xz" +xz_hash = "9db8a03884be1cb21ae5ebfced3ea516ea240618edafc0219ed323382b4812ba" +components = [] +extensions = [] + +[pkg.rustc-dev.target.riscv64gc-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-riscv64gc-unknown-linux-gnu.tar.gz" +hash = "7d02912c133217e14d0a538d13b24dc7e7e7d4bb11cf584e5bddd287739f7748" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-riscv64gc-unknown-linux-gnu.tar.xz" +xz_hash = "caa41746ac7e9be453b6d5a62acf284a2d19b76280ccd356b0546c90523c296b" +components = [] +extensions = [] + +[pkg.rustc-dev.target.s390x-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-s390x-unknown-linux-gnu.tar.gz" +hash = "1c4b75daece15f78b7c8aa8490858d79b78d6f89dfeeb55e6688122317d8cc13" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-s390x-unknown-linux-gnu.tar.xz" +xz_hash = "64835e3a092e88ce5148541cdc6f6f1f6ec611c499662a16ad2975e95b72d341" +components = [] +extensions = [] + +[pkg.rustc-dev.target.sparcv9-sun-solaris] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-sparcv9-sun-solaris.tar.gz" +hash = "9ab8ccb6dda32f4cd0e4ec2b2fa8b7a9ed4f2de120db45b437c992610023e863" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-sparcv9-sun-solaris.tar.xz" +xz_hash = "12a9582709c0b3b6ea70cf207779734d13bb05315858b001c7662c0870242cda" +components = [] +extensions = [] + +[pkg.rustc-dev.target.x86_64-apple-darwin] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-x86_64-apple-darwin.tar.gz" +hash = "750a8db9cdb63a98c068b945da9327d7fd9d502ed360e25b53afdebfde62b997" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-x86_64-apple-darwin.tar.xz" +xz_hash = "80d0edf5b9480fc73e0488964ec73562e8da4246da88eddf9342f796c331a37c" +components = [] +extensions = [] + +[pkg.rustc-dev.target.x86_64-pc-solaris] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-x86_64-pc-solaris.tar.gz" +hash = "013cd0340469d9e748ec7efd065b80661b57d7da57e6d397f7c99c6602304001" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-x86_64-pc-solaris.tar.xz" +xz_hash = "94902ff8f5e192f068fafe1d29fceacdfb87b91ea577ddaf9c303c58e9296477" +components = [] +extensions = [] + +[pkg.rustc-dev.target.x86_64-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-x86_64-pc-windows-gnu.tar.gz" +hash = "c672b5db82dd46624ea332b8c65bee862ad4521633781bcbb1449b8cdf1bfe81" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-x86_64-pc-windows-gnu.tar.xz" +xz_hash = "f28f9c8ef869ae725bb1ef5d756cc89d71a230ace1da431c9c5ab2d93e7969b7" +components = [] +extensions = [] + +[pkg.rustc-dev.target.x86_64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-x86_64-pc-windows-gnullvm.tar.gz" +hash = "201c01c50cb7ff6686bc39c5ac75bf5e60c5e4c97edd688c53129f9e4cd231cb" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-x86_64-pc-windows-gnullvm.tar.xz" +xz_hash = "a18cb23c0a6f9991974c46126808b43fe91d8e5b288dbacce698cbe165cebb77" +components = [] +extensions = [] + +[pkg.rustc-dev.target.x86_64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-x86_64-pc-windows-msvc.tar.gz" +hash = "ab34add3d4079db49d1b5c531d4aed689bba9563a869aa3a3c0ecb2dd699e667" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-x86_64-pc-windows-msvc.tar.xz" +xz_hash = "90402276ff8efb55c21a3dba3dec5d82d3d68fe62fccc04787acf77401c3ed82" +components = [] +extensions = [] + +[pkg.rustc-dev.target.x86_64-unknown-freebsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-x86_64-unknown-freebsd.tar.gz" +hash = "da3ab8107944ec4a898fb38de33b4d74842939bcd74baac8afa4fe4bab9ad328" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-x86_64-unknown-freebsd.tar.xz" +xz_hash = "01208ada9643bf0cf49482ffc02c90c82ab00642ed8872c0ff5b64c55ef005cc" +components = [] +extensions = [] + +[pkg.rustc-dev.target.x86_64-unknown-illumos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-x86_64-unknown-illumos.tar.gz" +hash = "c4cd0d15aca3ab0e33a68e46a3e85af5c811e4b2e121d0c23e8a383fc50f297a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-x86_64-unknown-illumos.tar.xz" +xz_hash = "a5b8bfecfaf8e91a133b378caba79f3bad2ca510ea4bbe31bb23a49814b9ed64" +components = [] +extensions = [] + +[pkg.rustc-dev.target.x86_64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "106b286c2409469048f88576c69b05e5a34b3209cef158b71dbb5d4649ed7cfd" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "9bd4dcaaa1956507032ba3a8231a74d37b92e70efbc4ca618b14dc23b6cc9738" +components = [] +extensions = [] + +[pkg.rustc-dev.target.x86_64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-x86_64-unknown-linux-musl.tar.gz" +hash = "d843b695a80ef69e2428d0616b434464ee691d41c5ab6d8b57253e0fbaf5e8d3" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-x86_64-unknown-linux-musl.tar.xz" +xz_hash = "d1f1d44b7105649c480e1fda592ee15ba5701d53f351d1b229065813818db7ae" +components = [] +extensions = [] + +[pkg.rustc-dev.target.x86_64-unknown-netbsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-x86_64-unknown-netbsd.tar.gz" +hash = "6660f91844754553a046fe58c1b3a01f473370b9a9bf9362fd7923720ca15ddd" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-dev-1.95.0-x86_64-unknown-netbsd.tar.xz" +xz_hash = "19a24370ea5c8396b5c9033e33bd613727e2d8a50532d9d69b8d8ef3b8c9c2b1" +components = [] +extensions = [] + +[pkg.rustc-docs] +version = "1.95.0 (59807616e 2026-04-14)" + +[pkg.rustc-docs.target.aarch64-apple-darwin] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-aarch64-unknown-linux-gnu.tar.gz" +hash = "7847b945f8bae0f6ba0db519130e649a32776e3c524b67182216401bc925b893" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-aarch64-unknown-linux-gnu.tar.xz" +xz_hash = "6a120a0d7bf85fb698e9a969a4d9feee7d4737743d3a75a27e3b5bbb22471919" +components = [] +extensions = [] + +[pkg.rustc-docs.target.aarch64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-aarch64-unknown-linux-gnu.tar.gz" +hash = "7847b945f8bae0f6ba0db519130e649a32776e3c524b67182216401bc925b893" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-aarch64-unknown-linux-gnu.tar.xz" +xz_hash = "6a120a0d7bf85fb698e9a969a4d9feee7d4737743d3a75a27e3b5bbb22471919" +components = [] +extensions = [] + +[pkg.rustc-docs.target.aarch64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-aarch64-unknown-linux-gnu.tar.gz" +hash = "7847b945f8bae0f6ba0db519130e649a32776e3c524b67182216401bc925b893" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-aarch64-unknown-linux-gnu.tar.xz" +xz_hash = "6a120a0d7bf85fb698e9a969a4d9feee7d4737743d3a75a27e3b5bbb22471919" +components = [] +extensions = [] + +[pkg.rustc-docs.target.aarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-aarch64-unknown-linux-gnu.tar.gz" +hash = "7847b945f8bae0f6ba0db519130e649a32776e3c524b67182216401bc925b893" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-aarch64-unknown-linux-gnu.tar.xz" +xz_hash = "6a120a0d7bf85fb698e9a969a4d9feee7d4737743d3a75a27e3b5bbb22471919" +components = [] +extensions = [] + +[pkg.rustc-docs.target.aarch64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-aarch64-unknown-linux-gnu.tar.gz" +hash = "7847b945f8bae0f6ba0db519130e649a32776e3c524b67182216401bc925b893" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-aarch64-unknown-linux-gnu.tar.xz" +xz_hash = "6a120a0d7bf85fb698e9a969a4d9feee7d4737743d3a75a27e3b5bbb22471919" +components = [] +extensions = [] + +[pkg.rustc-docs.target.aarch64-unknown-linux-ohos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-aarch64-unknown-linux-gnu.tar.gz" +hash = "7847b945f8bae0f6ba0db519130e649a32776e3c524b67182216401bc925b893" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-aarch64-unknown-linux-gnu.tar.xz" +xz_hash = "6a120a0d7bf85fb698e9a969a4d9feee7d4737743d3a75a27e3b5bbb22471919" +components = [] +extensions = [] + +[pkg.rustc-docs.target.arm-unknown-linux-gnueabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-aarch64-unknown-linux-gnu.tar.gz" +hash = "7847b945f8bae0f6ba0db519130e649a32776e3c524b67182216401bc925b893" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-aarch64-unknown-linux-gnu.tar.xz" +xz_hash = "6a120a0d7bf85fb698e9a969a4d9feee7d4737743d3a75a27e3b5bbb22471919" +components = [] +extensions = [] + +[pkg.rustc-docs.target.arm-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-aarch64-unknown-linux-gnu.tar.gz" +hash = "7847b945f8bae0f6ba0db519130e649a32776e3c524b67182216401bc925b893" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-aarch64-unknown-linux-gnu.tar.xz" +xz_hash = "6a120a0d7bf85fb698e9a969a4d9feee7d4737743d3a75a27e3b5bbb22471919" +components = [] +extensions = [] + +[pkg.rustc-docs.target.armv7-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "791238bd09fc1f844d400fbf808566738809116bf60a94152282f894b26c6488" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "c69d835e9a9f70224a0f1e198876757fd86f9921ff38e60b4d0d30369d60d5db" +components = [] +extensions = [] + +[pkg.rustc-docs.target.i686-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "791238bd09fc1f844d400fbf808566738809116bf60a94152282f894b26c6488" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "c69d835e9a9f70224a0f1e198876757fd86f9921ff38e60b4d0d30369d60d5db" +components = [] +extensions = [] + +[pkg.rustc-docs.target.i686-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "791238bd09fc1f844d400fbf808566738809116bf60a94152282f894b26c6488" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "c69d835e9a9f70224a0f1e198876757fd86f9921ff38e60b4d0d30369d60d5db" +components = [] +extensions = [] + +[pkg.rustc-docs.target.i686-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "791238bd09fc1f844d400fbf808566738809116bf60a94152282f894b26c6488" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "c69d835e9a9f70224a0f1e198876757fd86f9921ff38e60b4d0d30369d60d5db" +components = [] +extensions = [] + +[pkg.rustc-docs.target.loongarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "791238bd09fc1f844d400fbf808566738809116bf60a94152282f894b26c6488" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "c69d835e9a9f70224a0f1e198876757fd86f9921ff38e60b4d0d30369d60d5db" +components = [] +extensions = [] + +[pkg.rustc-docs.target.loongarch64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "791238bd09fc1f844d400fbf808566738809116bf60a94152282f894b26c6488" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "c69d835e9a9f70224a0f1e198876757fd86f9921ff38e60b4d0d30369d60d5db" +components = [] +extensions = [] + +[pkg.rustc-docs.target.powerpc-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "791238bd09fc1f844d400fbf808566738809116bf60a94152282f894b26c6488" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "c69d835e9a9f70224a0f1e198876757fd86f9921ff38e60b4d0d30369d60d5db" +components = [] +extensions = [] + +[pkg.rustc-docs.target.powerpc64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "791238bd09fc1f844d400fbf808566738809116bf60a94152282f894b26c6488" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "c69d835e9a9f70224a0f1e198876757fd86f9921ff38e60b4d0d30369d60d5db" +components = [] +extensions = [] + +[pkg.rustc-docs.target.powerpc64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "791238bd09fc1f844d400fbf808566738809116bf60a94152282f894b26c6488" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "c69d835e9a9f70224a0f1e198876757fd86f9921ff38e60b4d0d30369d60d5db" +components = [] +extensions = [] + +[pkg.rustc-docs.target.powerpc64le-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "791238bd09fc1f844d400fbf808566738809116bf60a94152282f894b26c6488" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "c69d835e9a9f70224a0f1e198876757fd86f9921ff38e60b4d0d30369d60d5db" +components = [] +extensions = [] + +[pkg.rustc-docs.target.powerpc64le-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "791238bd09fc1f844d400fbf808566738809116bf60a94152282f894b26c6488" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "c69d835e9a9f70224a0f1e198876757fd86f9921ff38e60b4d0d30369d60d5db" +components = [] +extensions = [] + +[pkg.rustc-docs.target.riscv64gc-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "791238bd09fc1f844d400fbf808566738809116bf60a94152282f894b26c6488" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "c69d835e9a9f70224a0f1e198876757fd86f9921ff38e60b4d0d30369d60d5db" +components = [] +extensions = [] + +[pkg.rustc-docs.target.s390x-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "791238bd09fc1f844d400fbf808566738809116bf60a94152282f894b26c6488" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "c69d835e9a9f70224a0f1e198876757fd86f9921ff38e60b4d0d30369d60d5db" +components = [] +extensions = [] + +[pkg.rustc-docs.target.sparcv9-sun-solaris] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "791238bd09fc1f844d400fbf808566738809116bf60a94152282f894b26c6488" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "c69d835e9a9f70224a0f1e198876757fd86f9921ff38e60b4d0d30369d60d5db" +components = [] +extensions = [] + +[pkg.rustc-docs.target.x86_64-apple-darwin] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "791238bd09fc1f844d400fbf808566738809116bf60a94152282f894b26c6488" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "c69d835e9a9f70224a0f1e198876757fd86f9921ff38e60b4d0d30369d60d5db" +components = [] +extensions = [] + +[pkg.rustc-docs.target.x86_64-pc-solaris] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "791238bd09fc1f844d400fbf808566738809116bf60a94152282f894b26c6488" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "c69d835e9a9f70224a0f1e198876757fd86f9921ff38e60b4d0d30369d60d5db" +components = [] +extensions = [] + +[pkg.rustc-docs.target.x86_64-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "791238bd09fc1f844d400fbf808566738809116bf60a94152282f894b26c6488" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "c69d835e9a9f70224a0f1e198876757fd86f9921ff38e60b4d0d30369d60d5db" +components = [] +extensions = [] + +[pkg.rustc-docs.target.x86_64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "791238bd09fc1f844d400fbf808566738809116bf60a94152282f894b26c6488" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "c69d835e9a9f70224a0f1e198876757fd86f9921ff38e60b4d0d30369d60d5db" +components = [] +extensions = [] + +[pkg.rustc-docs.target.x86_64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "791238bd09fc1f844d400fbf808566738809116bf60a94152282f894b26c6488" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "c69d835e9a9f70224a0f1e198876757fd86f9921ff38e60b4d0d30369d60d5db" +components = [] +extensions = [] + +[pkg.rustc-docs.target.x86_64-unknown-freebsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "791238bd09fc1f844d400fbf808566738809116bf60a94152282f894b26c6488" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "c69d835e9a9f70224a0f1e198876757fd86f9921ff38e60b4d0d30369d60d5db" +components = [] +extensions = [] + +[pkg.rustc-docs.target.x86_64-unknown-illumos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "791238bd09fc1f844d400fbf808566738809116bf60a94152282f894b26c6488" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "c69d835e9a9f70224a0f1e198876757fd86f9921ff38e60b4d0d30369d60d5db" +components = [] +extensions = [] + +[pkg.rustc-docs.target.x86_64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "791238bd09fc1f844d400fbf808566738809116bf60a94152282f894b26c6488" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "c69d835e9a9f70224a0f1e198876757fd86f9921ff38e60b4d0d30369d60d5db" +components = [] +extensions = [] + +[pkg.rustc-docs.target.x86_64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "791238bd09fc1f844d400fbf808566738809116bf60a94152282f894b26c6488" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "c69d835e9a9f70224a0f1e198876757fd86f9921ff38e60b4d0d30369d60d5db" +components = [] +extensions = [] + +[pkg.rustc-docs.target.x86_64-unknown-netbsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "791238bd09fc1f844d400fbf808566738809116bf60a94152282f894b26c6488" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustc-docs-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "c69d835e9a9f70224a0f1e198876757fd86f9921ff38e60b4d0d30369d60d5db" +components = [] +extensions = [] + +[pkg.rustfmt-preview] +version = "1.9.0" + +[pkg.rustfmt-preview.target.aarch64-apple-darwin] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-aarch64-apple-darwin.tar.gz" +hash = "f2717da6e862eb570a0b973eeb1034a3b3bb6610e4a8e6da52ce6d256eb2c109" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-aarch64-apple-darwin.tar.xz" +xz_hash = "c54af79adfdc790d27fc56e24407e370c80be5a89ad537eef9fbd45d3c3e28e8" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.aarch64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-aarch64-pc-windows-gnullvm.tar.gz" +hash = "5689a6b6086ad84667c41bc4d6a5fbd818763e650d97b7f2e0b937bb3cc25659" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-aarch64-pc-windows-gnullvm.tar.xz" +xz_hash = "85b690b664ee4f03521c6bc3f1af8fd7e6efae5851a8a7ff18965594484688e2" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.aarch64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-aarch64-pc-windows-msvc.tar.gz" +hash = "22fe60d2841786251f99a031f2f64ea18a4bc4eef66aafe0b73cdc5b69f4b7fb" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-aarch64-pc-windows-msvc.tar.xz" +xz_hash = "a873c048743e6da29e09a8b55c774ee113f8f6ae4fd57d988d304a6453801b34" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.aarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-aarch64-unknown-linux-gnu.tar.gz" +hash = "ee169a16fb2a415aef71fba78fb279b7e0bb875dfecd56cdb80bdb95ba29a559" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-aarch64-unknown-linux-gnu.tar.xz" +xz_hash = "64cce868f0f3d29f1524e11e9bab01ac9d538a31665fea1cd6b78af46a1c0a41" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.aarch64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-aarch64-unknown-linux-musl.tar.gz" +hash = "6b5efbd0cea54ecfafc9cc829f3e845b0c68ba091116be465e44f16d7b12a220" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-aarch64-unknown-linux-musl.tar.xz" +xz_hash = "6d7fcf812467871c05bb356e01c6eb3cbccdc593372396a34c8c0ff5befe196f" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.aarch64-unknown-linux-ohos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-aarch64-unknown-linux-ohos.tar.gz" +hash = "43c17835242627490157929e83fb5f70ea070a509d6e6860281c070f227edb24" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-aarch64-unknown-linux-ohos.tar.xz" +xz_hash = "adef59415077666ca4b14fd6ba80b288fe3c590f1b58ba8e602f0ceb7659264f" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.arm-unknown-linux-gnueabi] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-arm-unknown-linux-gnueabi.tar.gz" +hash = "f6baed68b5c429a69530ce37808dee0f94feebc75e2dadea4f3d51b85a0bb5a5" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-arm-unknown-linux-gnueabi.tar.xz" +xz_hash = "8ed8f46e41709fb326b24a5f688b818c36903a7b197e6f48cb33f6e53fa4dada" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.arm-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-arm-unknown-linux-gnueabihf.tar.gz" +hash = "747c2e3c953f966a1d24afc8d8046e6f5c4665184df14b819d8e7081e20a8fd8" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-arm-unknown-linux-gnueabihf.tar.xz" +xz_hash = "0d9194de96e70dc50463a58d051e08b88202cced7651f168a34d85760865d68f" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.armv7-unknown-linux-gnueabihf] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-armv7-unknown-linux-gnueabihf.tar.gz" +hash = "9b39779bed6466ff5daf3da99e01b2f8aef10e9a00af7342b720163c63a78b4f" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-armv7-unknown-linux-gnueabihf.tar.xz" +xz_hash = "0e898f718b5ac4a69d2a3a0126f7b7e6ac479437b83f6853140d42dcedf537a4" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.i686-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-i686-pc-windows-gnu.tar.gz" +hash = "808bf2139661c84f0d536a20e30cb7125e1a3121cf3ce160be906ddbc5e7767e" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-i686-pc-windows-gnu.tar.xz" +xz_hash = "8c3741a126309d60d5780a7eb5769a6f908786d4ffdd97bfb2dd10b5bd847613" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.i686-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-i686-pc-windows-msvc.tar.gz" +hash = "75f378b3491e1e603ecccef35adda39d5e7828444c568a132ea078eeb7e45d23" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-i686-pc-windows-msvc.tar.xz" +xz_hash = "40dc4d8b2a446e799fe65563806f3723cde118752e21cbec7c2d55c32d9f1455" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.i686-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-i686-unknown-linux-gnu.tar.gz" +hash = "9a0930b23533252702bd0297192a425e033f87ec8b7b5a4f305a829aa4314f6f" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-i686-unknown-linux-gnu.tar.xz" +xz_hash = "b220ed1c96237a2eae53ca654979676fa0c6077c8a200a9f5bd18257e1e233ce" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.loongarch64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-loongarch64-unknown-linux-gnu.tar.gz" +hash = "bba043aeb38ab0f68e82839bde2298a2aa78cf205aab03a7201b1ee48e43de35" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-loongarch64-unknown-linux-gnu.tar.xz" +xz_hash = "0870adb59ee8a1e287c8eb369bb34f8fdb114f038324954fa6a2785f35bcc2d1" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.loongarch64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-loongarch64-unknown-linux-musl.tar.gz" +hash = "3cb1c84b0607dd40f82490751c8b1ece40608163d16ccdcb11b02ccb4179623a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-loongarch64-unknown-linux-musl.tar.xz" +xz_hash = "9f84911053c41d8367a3108ff04e7a806eff15404bc7fbb925fb819d5947b40b" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.powerpc-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-powerpc-unknown-linux-gnu.tar.gz" +hash = "bc3660ce86eb8e9988fd2065371457bf9c91d3f2d17df6b01fee0bd6e09acc7d" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-powerpc-unknown-linux-gnu.tar.xz" +xz_hash = "1e293a1bad7b29fb327fda6f5217c91bc7ff5854810e2a6469a9c16ea69c0f92" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.powerpc64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-powerpc64-unknown-linux-gnu.tar.gz" +hash = "89ca896ef6e8af276fdb5ddc3b0a4d08c6dc80d007a44a9a2788037af6a1f942" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-powerpc64-unknown-linux-gnu.tar.xz" +xz_hash = "d0b3ef198cd2a71fcf43c573e06e9e5b9ccacd8e51ae31b136bc15185de70b35" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.powerpc64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-powerpc64-unknown-linux-musl.tar.gz" +hash = "6e232b822fbf7e8b4af0ce7658e92310fb6c3f47d2e83cef4972073550e7ac24" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-powerpc64-unknown-linux-musl.tar.xz" +xz_hash = "a6ab10f7cd849393c35516415ba5b5f3b7136906809235f88d5bedf62eaf0e22" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.powerpc64le-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-powerpc64le-unknown-linux-gnu.tar.gz" +hash = "7e2ff5e8dd873954c5193b7eb9ae88aa1d09adc7035fc5583817ff89df356492" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-powerpc64le-unknown-linux-gnu.tar.xz" +xz_hash = "81cadcbd680ed31fa7f2b825e4a1167b9c59b02d7cc0707093c6ae6692b9578b" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.powerpc64le-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-powerpc64le-unknown-linux-musl.tar.gz" +hash = "7fe3cc90b8bc1667edc4d821e16a85a43c6cbc1d45492c3ac8d4375cf8060c98" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-powerpc64le-unknown-linux-musl.tar.xz" +xz_hash = "d0c085fa0f33977c22a89891e00dc94ac676c459a2117a4584e114663b89bacc" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.riscv64gc-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-riscv64gc-unknown-linux-gnu.tar.gz" +hash = "e176de1137b11904c6865517bc565a66c7f956edec891f5d162bf7cc381701ad" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-riscv64gc-unknown-linux-gnu.tar.xz" +xz_hash = "fd21b65503e5296d3292da1b276499277e939cd27339fbd4694efcd93f712356" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.s390x-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-s390x-unknown-linux-gnu.tar.gz" +hash = "4e364ba7521d4b9aff688c21b61f40a1cce318d756ad3dfb34af6f589bd60f97" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-s390x-unknown-linux-gnu.tar.xz" +xz_hash = "4a014f2971ab8803ea636bbf5aa6cc98c8b5ec1ddd94798b1542fda41bedaad1" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.sparcv9-sun-solaris] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-sparcv9-sun-solaris.tar.gz" +hash = "b44c7644eaa4f21c62a52518d7a6e28eea30462837a261a0419bc6cc7593d0a1" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-sparcv9-sun-solaris.tar.xz" +xz_hash = "4bacb35f50a8d30c9d7c8159beb271e62c65c5741bb00e64639e80f41bd654f0" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.x86_64-apple-darwin] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-x86_64-apple-darwin.tar.gz" +hash = "a95f4711a89367815834f5bb5b799ad1673c1ed15b8cc2b3dacad21e8cb5fc21" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-x86_64-apple-darwin.tar.xz" +xz_hash = "5f7228f40a160e80d260e74e068d6fec8627aa02f1f5ae29d2019b9347076401" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.x86_64-pc-solaris] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-x86_64-pc-solaris.tar.gz" +hash = "ec80ad2cd351ecbef3e9d2f874e88ec9c22610d047ad1eb308e6f36488675f31" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-x86_64-pc-solaris.tar.xz" +xz_hash = "a7c99958d11690c5a0468a975155cc2b404fa13c6be927c808b4247ff3861d53" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.x86_64-pc-windows-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-x86_64-pc-windows-gnu.tar.gz" +hash = "204ded25b53fce978a0eca5432bb2fd0146b4b230ec2faa34c2a695aa25e5576" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-x86_64-pc-windows-gnu.tar.xz" +xz_hash = "10adca16ab047fade3d39d594fe0b212e40e1edcea40d9acc8d153e56d2ad111" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.x86_64-pc-windows-gnullvm] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-x86_64-pc-windows-gnullvm.tar.gz" +hash = "2043b0ff0b514e8f4b28cba4be56ab0093872580a8cffcf7136e5b8d1c29c1b6" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-x86_64-pc-windows-gnullvm.tar.xz" +xz_hash = "74eb0bb0227af0df81a5df9cbf8384e5e038c4cd575152ecc27dfa891ff3756a" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.x86_64-pc-windows-msvc] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-x86_64-pc-windows-msvc.tar.gz" +hash = "e9fcfc3cf5185a20c7a2bafc4d9a4ddd8dbf779e89640098f39e87e297fa3959" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-x86_64-pc-windows-msvc.tar.xz" +xz_hash = "8bcf91606e36b8a0164efafde50709cd7a3c02143a2edaa81dbf3dccd6ed8f4c" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.x86_64-unknown-freebsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-x86_64-unknown-freebsd.tar.gz" +hash = "6924e033e697c7886120c2a62d06d898f3e02f07fa6b50cb64d3d3d2610639ea" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-x86_64-unknown-freebsd.tar.xz" +xz_hash = "5bee4f7d99fb2de374c8bddf6ce400dc107604ce4ba23530e4ce4744e7bcbecf" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.x86_64-unknown-illumos] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-x86_64-unknown-illumos.tar.gz" +hash = "01afa24dc7081404661df31a6a1298a0348620d38aeee612789aced121b59747" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-x86_64-unknown-illumos.tar.xz" +xz_hash = "b002bd428a96ba955b1ca2e89debb109eef24e1abc5c6d3824a891c235aa2e83" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.x86_64-unknown-linux-gnu] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-x86_64-unknown-linux-gnu.tar.gz" +hash = "6d3e64adc505ad4bef6935f6e6f5e4c6956d9782607fb8394df3a5d2b30d2733" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-x86_64-unknown-linux-gnu.tar.xz" +xz_hash = "f1b2a7301513ffdd95ebf22ebbdd932e4d17fc806f748d93924740d0297b1396" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.x86_64-unknown-linux-musl] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-x86_64-unknown-linux-musl.tar.gz" +hash = "688a9ba3b40e9fd360dc083ff28b7ae43c110f2919ee939bb788a46a1e579a84" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-x86_64-unknown-linux-musl.tar.xz" +xz_hash = "e2d34ff930a6a5ffc8a475f3d663b2d065fb90dbcbff40f69c0e50eac5d5e8e3" +components = [] +extensions = [] + +[pkg.rustfmt-preview.target.x86_64-unknown-netbsd] +available = true +url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-x86_64-unknown-netbsd.tar.gz" +hash = "ca0c9b6d992691396be01513b22ab3b9d1cd5e3a5587a2824c608b2c47af1d6a" +xz_url = "https://static.rust-lang.org/dist/2026-04-16/rustfmt-1.95.0-x86_64-unknown-netbsd.tar.xz" +xz_hash = "2ec7345acc5d169c8d665252a6c3741087dee09acf329dfa8cdf7076f5cbc693" +components = [] +extensions = [] + +[renames.clippy] +to = "clippy-preview" + +[renames.gcc-x86_64-unknown-linux-gnu] +to = "gcc-x86_64-unknown-linux-gnu-preview" + +[renames.llvm-bitcode-linker] +to = "llvm-bitcode-linker-preview" + +[renames.llvm-tools] +to = "llvm-tools-preview" + +[renames.miri] +to = "miri-preview" + +[renames.rust-analyzer] +to = "rust-analyzer-preview" + +[renames.rust-docs-json] +to = "rust-docs-json-preview" + +[renames.rustc-codegen-cranelift] +to = "rustc-codegen-cranelift-preview" + +[renames.rustc-codegen-gcc] +to = "rustc-codegen-gcc-preview" + +[renames.rustfmt] +to = "rustfmt-preview" + +[profiles] +minimal = ["rustc", "cargo", "rust-std", "rust-mingw"] +default = ["rustc", "cargo", "rust-std", "rust-mingw", "rust-docs", "rustfmt-preview", "clippy-preview"] +complete = ["rustc", "cargo", "rust-std", "rust-mingw", "rust-docs", "rustfmt-preview", "clippy-preview", "rust-analyzer-preview", "rust-src", "llvm-tools-preview", "rust-analysis", "miri-preview", "rustc-codegen-cranelift-preview"] diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/multirust-config.toml b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/multirust-config.toml new file mode 100644 index 0000000000000000000000000000000000000000..1cb2074f8181ee0a869e06bff6d4da699cc946dc --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/multirust-config.toml @@ -0,0 +1,36 @@ +config_version = "1" + +[[components]] +pkg = "clippy-preview" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[components]] +pkg = "rustfmt-preview" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[components]] +pkg = "rust-analyzer-preview" +target = "x86_64-pc-windows-msvc" +is_extension = true + +[[components]] +pkg = "rust-src" +target = "*" +is_extension = true + +[[components]] +pkg = "cargo" +target = "x86_64-pc-windows-msvc" +is_extension = false + +[[components]] +pkg = "rust-std" +target = "x86_64-pc-windows-msvc" +is_extension = false + +[[components]] +pkg = "rustc" +target = "x86_64-pc-windows-msvc" +is_extension = false diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/rust-installer-version b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/rust-installer-version new file mode 100644 index 0000000000000000000000000000000000000000..e440e5c842586965a7fb77deda2eca68612b1f53 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/rust-installer-version @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/library/Cargo.lock b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/library/Cargo.lock new file mode 100644 index 0000000000000000000000000000000000000000..4801f92c63e5a9103f078c09b8f1fa9f49e94ffa --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/library/Cargo.lock @@ -0,0 +1,522 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "addr2line" +version = "0.25.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b" +dependencies = [ + "gimli", + "rustc-std-workspace-alloc", + "rustc-std-workspace-core", +] + +[[package]] +name = "adler2" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" +dependencies = [ + "rustc-std-workspace-core", +] + +[[package]] +name = "alloc" +version = "0.0.0" +dependencies = [ + "compiler_builtins", + "core", +] + +[[package]] +name = "alloctests" +version = "0.0.0" +dependencies = [ + "rand", + "rand_xorshift", +] + +[[package]] +name = "cc" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1aeb932158bd710538c73702db6945cb68a8fb08c519e6e12706b94263b36db8" +dependencies = [ + "shlex", +] + +[[package]] +name = "cfg-if" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" +dependencies = [ + "rustc-std-workspace-core", +] + +[[package]] +name = "compiler_builtins" +version = "0.1.160" +dependencies = [ + "cc", + "core", +] + +[[package]] +name = "core" +version = "0.0.0" + +[[package]] +name = "coretests" +version = "0.0.0" +dependencies = [ + "rand", + "rand_xorshift", +] + +[[package]] +name = "dlmalloc" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06cdfe340b16dd990c54cce79743613fa09fbb16774f33a77c9fd196f8f3fa30" +dependencies = [ + "cfg-if", + "libc", + "rustc-std-workspace-core", + "windows-sys", +] + +[[package]] +name = "foldhash" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" + +[[package]] +name = "fortanix-sgx-abi" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5efc85edd5b83e8394f4371dd0da6859dff63dd387dab8568fece6af4cde6f84" +dependencies = [ + "rustc-std-workspace-core", +] + +[[package]] +name = "getopts" +version = "0.2.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df" +dependencies = [ + "rustc-std-workspace-core", + "rustc-std-workspace-std", +] + +[[package]] +name = "gimli" +version = "0.32.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7" +dependencies = [ + "rustc-std-workspace-alloc", + "rustc-std-workspace-core", +] + +[[package]] +name = "hashbrown" +version = "0.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" +dependencies = [ + "foldhash", + "rustc-std-workspace-alloc", + "rustc-std-workspace-core", +] + +[[package]] +name = "hermit-abi" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" +dependencies = [ + "rustc-std-workspace-alloc", + "rustc-std-workspace-core", +] + +[[package]] +name = "libc" +version = "0.2.178" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091" +dependencies = [ + "rustc-std-workspace-core", +] + +[[package]] +name = "memchr" +version = "2.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" +dependencies = [ + "rustc-std-workspace-core", +] + +[[package]] +name = "miniz_oxide" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" +dependencies = [ + "adler2", + "rustc-std-workspace-alloc", + "rustc-std-workspace-core", +] + +[[package]] +name = "moto-rt" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29aea9f7dfeb258e030a84e0ec38a9c2ec2063d4f45eb2db31445cfc40b3dba1" +dependencies = [ + "rustc-std-workspace-alloc", + "rustc-std-workspace-core", +] + +[[package]] +name = "object" +version = "0.37.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe" +dependencies = [ + "memchr", + "rustc-std-workspace-alloc", + "rustc-std-workspace-core", +] + +[[package]] +name = "panic_abort" +version = "0.0.0" +dependencies = [ + "alloc", + "libc", + "rustc-std-workspace-core", +] + +[[package]] +name = "panic_unwind" +version = "0.0.0" +dependencies = [ + "alloc", + "libc", + "rustc-std-workspace-core", + "unwind", +] + +[[package]] +name = "proc_macro" +version = "0.0.0" +dependencies = [ + "core", + "rustc-literal-escaper", + "std", +] + +[[package]] +name = "profiler_builtins" +version = "0.0.0" +dependencies = [ + "cc", +] + +[[package]] +name = "r-efi" +version = "5.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" +dependencies = [ + "rustc-std-workspace-core", +] + +[[package]] +name = "r-efi-alloc" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc2f58ef3ca9bb0f9c44d9aa8537601bcd3df94cc9314a40178cadf7d4466354" +dependencies = [ + "r-efi", + "rustc-std-workspace-core", +] + +[[package]] +name = "rand" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" +dependencies = [ + "rand_core", +] + +[[package]] +name = "rand_core" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" + +[[package]] +name = "rand_xorshift" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a" +dependencies = [ + "rand_core", +] + +[[package]] +name = "rustc-demangle" +version = "0.1.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d" +dependencies = [ + "rustc-std-workspace-core", +] + +[[package]] +name = "rustc-literal-escaper" +version = "0.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8be87abb9e40db7466e0681dc8ecd9dcfd40360cb10b4c8fe24a7c4c3669b198" +dependencies = [ + "rustc-std-workspace-core", +] + +[[package]] +name = "rustc-std-workspace-alloc" +version = "1.99.0" +dependencies = [ + "alloc", +] + +[[package]] +name = "rustc-std-workspace-core" +version = "1.99.0" +dependencies = [ + "compiler_builtins", + "core", +] + +[[package]] +name = "rustc-std-workspace-std" +version = "1.99.0" +dependencies = [ + "std", +] + +[[package]] +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + +[[package]] +name = "std" +version = "0.0.0" +dependencies = [ + "addr2line", + "alloc", + "cfg-if", + "core", + "dlmalloc", + "fortanix-sgx-abi", + "hashbrown", + "hermit-abi", + "libc", + "miniz_oxide", + "moto-rt", + "object", + "panic_abort", + "panic_unwind", + "r-efi", + "r-efi-alloc", + "rand", + "rand_xorshift", + "rustc-demangle", + "std_detect", + "unwind", + "vex-sdk", + "wasi 0.11.1+wasi-snapshot-preview1", + "wasi 0.14.4+wasi-0.2.4", + "windows-link 0.0.0", +] + +[[package]] +name = "std_detect" +version = "0.1.5" +dependencies = [ + "libc", + "rustc-std-workspace-alloc", + "rustc-std-workspace-core", +] + +[[package]] +name = "sysroot" +version = "0.0.0" +dependencies = [ + "proc_macro", + "profiler_builtins", + "std", + "test", +] + +[[package]] +name = "test" +version = "0.0.0" +dependencies = [ + "core", + "getopts", + "libc", + "std", +] + +[[package]] +name = "unwind" +version = "0.0.0" +dependencies = [ + "libc", + "rustc-std-workspace-core", + "unwinding", +] + +[[package]] +name = "unwinding" +version = "0.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60612c845ef41699f39dc8c5391f252942c0a88b7d15da672eff0d14101bbd6d" +dependencies = [ + "gimli", + "rustc-std-workspace-core", +] + +[[package]] +name = "vex-sdk" +version = "0.27.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79e5fe15afde1305478b35e2cb717fff59f485428534cf49cfdbfa4723379bf6" +dependencies = [ + "rustc-std-workspace-core", +] + +[[package]] +name = "wasi" +version = "0.11.1+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" +dependencies = [ + "rustc-std-workspace-alloc", + "rustc-std-workspace-core", +] + +[[package]] +name = "wasi" +version = "0.14.4+wasi-0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88a5f4a424faf49c3c2c344f166f0662341d470ea185e939657aaff130f0ec4a" +dependencies = [ + "rustc-std-workspace-alloc", + "rustc-std-workspace-core", + "wit-bindgen", +] + +[[package]] +name = "windows-link" +version = "0.0.0" + +[[package]] +name = "windows-link" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" + +[[package]] +name = "windows-sys" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" +dependencies = [ + "windows-targets", +] + +[[package]] +name = "windows-targets" +version = "0.53.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" +dependencies = [ + "windows-link 0.2.1", + "windows_aarch64_gnullvm", + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_gnullvm", + "windows_i686_msvc", + "windows_x86_64_gnu", + "windows_x86_64_gnullvm", + "windows_x86_64_msvc", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" + +[[package]] +name = "windows_i686_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" + +[[package]] +name = "windows_i686_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" + +[[package]] +name = "wit-bindgen" +version = "0.45.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c573471f125075647d03df72e026074b7203790d41351cd6edc96f46bcccd36" +dependencies = [ + "rustc-std-workspace-alloc", + "rustc-std-workspace-core", +] diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/library/Cargo.toml b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/library/Cargo.toml new file mode 100644 index 0000000000000000000000000000000000000000..87df966bb6b874faa0358c6d626954d76b384890 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/library/Cargo.toml @@ -0,0 +1,87 @@ +cargo-features = ["profile-rustflags"] + +[workspace] +resolver = "1" +members = [ + "std", + "sysroot", + "coretests", + "alloctests", +] + +exclude = [ + # stdarch has its own Cargo workspace + "stdarch", + "windows_link" +] + +[profile.release.package.compiler_builtins] +# For compiler-builtins we always use a high number of codegen units. +# The goal here is to place every single intrinsic into its own object +# file to avoid symbol clashes with the system libgcc if possible. Note +# that this number doesn't actually produce this many object files, we +# just don't create more than this number of object files. +# +# It's a bit of a bummer that we have to pass this here, unfortunately. +# Ideally this would be specified through an env var to Cargo so Cargo +# knows how many CGUs are for this specific crate, but for now +# per-crate configuration isn't specifiable in the environment. +codegen-units = 10000 + +# These dependencies of the standard library implement symbolication for +# backtraces on most platforms. Their debuginfo causes both linking to be slower +# (more data to chew through) and binaries to be larger without really all that +# much benefit. This section turns them all to down to have no debuginfo which +# helps to improve link times a little bit. +[profile.release.package] +addr2line.debug = 0 +addr2line.opt-level = "s" +adler2.debug = 0 +gimli.debug = 0 +gimli.opt-level = "s" +miniz_oxide.debug = 0 +miniz_oxide.opt-level = "s" +# `opt-level = "s"` for `object` led to a size regression when tried previously +object.debug = 0 +rustc-demangle.debug = 0 +rustc-demangle.opt-level = "s" + +# panic_abort must always be compiled with panic=abort, even when the rest of the +# sysroot is panic=unwind. +[profile.dev.package.panic_abort] +rustflags = ["-Cpanic=abort"] + +[profile.release.package.panic_abort] +rustflags = ["-Cpanic=abort"] + +# The "dist" profile is used by bootstrap for prebuilt libstd artifacts +# These settings ensure that the prebuilt artifacts support a variety of features +# in the user's profile. +[profile.dist] +inherits = "release" +codegen-units = 1 +debug = 1 # "limited" +rustflags = [ + # `profile.lto=off` implies `-Cembed-bitcode=no`, but unconditionally embedding + # bitcode is necessary for when users enable LTO. + # Required until Cargo can re-build the standard library based on the value + # of `profile.lto` in the user's profile. + "-Cembed-bitcode=yes", + # Enable frame pointers + "-Zunstable-options", + "-Cforce-frame-pointers=non-leaf", +] + +[profile.dist.package.panic_abort] +rustflags = [ + "-Cpanic=abort", + "-Cembed-bitcode=yes", + "-Zunstable-options", + "-Cforce-frame-pointers=non-leaf", +] + +[patch.crates-io] +# See comments in `library/rustc-std-workspace-core/README.md` for what's going on here +rustc-std-workspace-core = { path = 'rustc-std-workspace-core' } +rustc-std-workspace-alloc = { path = 'rustc-std-workspace-alloc' } +rustc-std-workspace-std = { path = 'rustc-std-workspace-std' } diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/.clang-format b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/.clang-format new file mode 100644 index 0000000000000000000000000000000000000000..5bead5f39dd3c5841f615beb6472c4c504d407af --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/.clang-format @@ -0,0 +1,2 @@ +BasedOnStyle: LLVM + diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/CMakeLists.txt b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a98b1e1b95139011582bb40a1f9c8564eb625b0 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/CMakeLists.txt @@ -0,0 +1,356 @@ +#=============================================================================== +# Setup Project +#=============================================================================== + +cmake_minimum_required(VERSION 3.20.0) +set(LLVM_SUBPROJECT_TITLE "libunwind") + +set(LLVM_COMMON_CMAKE_UTILS "${CMAKE_CURRENT_SOURCE_DIR}/../cmake") + +# Add path for custom modules +list(INSERT CMAKE_MODULE_PATH 0 + "${CMAKE_CURRENT_SOURCE_DIR}/cmake" + "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules" + "${CMAKE_CURRENT_SOURCE_DIR}/../runtimes/cmake/Modules" + "${LLVM_COMMON_CMAKE_UTILS}" + "${LLVM_COMMON_CMAKE_UTILS}/Modules" + ) + +set(LIBUNWIND_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}) +set(LIBUNWIND_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}) +set(LIBUNWIND_LIBCXX_PATH "${CMAKE_CURRENT_LIST_DIR}/../libcxx" CACHE PATH + "Specify path to libc++ source.") + +include(GNUInstallDirs) +include(CheckSymbolExists) + +if (MSVC) + message(FATAL_ERROR "Libunwind doesn't build for MSVC targets, and that is almost certainly not what you want to do " + "anyway since libunwind is tied to the Itanium C++ ABI, and MSVC targets must use the MS C++ ABI.") +endif() + +#=============================================================================== +# Setup CMake Options +#=============================================================================== +include(CMakeDependentOption) +include(HandleCompilerRT) + +# Define options. +option(LIBUNWIND_ENABLE_CET "Build libunwind with CET enabled." OFF) +option(LIBUNWIND_ENABLE_GCS "Build libunwind with GCS enabled." OFF) +option(LIBUNWIND_ENABLE_ASSERTIONS "Enable assertions independent of build mode." ON) +option(LIBUNWIND_ENABLE_PEDANTIC "Compile with pedantic enabled." ON) +option(LIBUNWIND_ENABLE_WERROR "Fail and stop if a warning is triggered." OFF) +option(LIBUNWIND_ENABLE_SHARED "Build libunwind as a shared library." ON) +option(LIBUNWIND_ENABLE_STATIC "Build libunwind as a static library." ON) +option(LIBUNWIND_ENABLE_CROSS_UNWINDING "Enable cross-platform unwinding support." OFF) +option(LIBUNWIND_ENABLE_ARM_WMMX "Enable unwinding support for ARM WMMX registers." OFF) +option(LIBUNWIND_ENABLE_THREADS "Build libunwind with threading support." ON) +option(LIBUNWIND_WEAK_PTHREAD_LIB "Use weak references to refer to pthread functions." OFF) +option(LIBUNWIND_USE_COMPILER_RT "Use compiler-rt instead of libgcc" OFF) +option(LIBUNWIND_INCLUDE_DOCS "Build the libunwind documentation." ${LLVM_INCLUDE_DOCS}) +option(LIBUNWIND_INCLUDE_TESTS "Build the libunwind tests." ${LLVM_INCLUDE_TESTS}) +option(LIBUNWIND_IS_BAREMETAL "Build libunwind for baremetal targets." OFF) +option(LIBUNWIND_USE_FRAME_HEADER_CACHE "Cache frame headers for unwinding. Requires locking dl_iterate_phdr." OFF) +option(LIBUNWIND_REMEMBER_HEAP_ALLOC "Use heap instead of the stack for .cfi_remember_state." OFF) +option(LIBUNWIND_INSTALL_HEADERS "Install the libunwind headers." ON) +option(LIBUNWIND_ENABLE_FRAME_APIS "Include libgcc-compatible frame apis." OFF) + +set(LIBUNWIND_LIBDIR_SUFFIX "${LLVM_LIBDIR_SUFFIX}" CACHE STRING + "Define suffix of library directory name (32/64)") +option(LIBUNWIND_INSTALL_LIBRARY "Install the libunwind library." ON) +cmake_dependent_option(LIBUNWIND_INSTALL_STATIC_LIBRARY + "Install the static libunwind library." ON + "LIBUNWIND_ENABLE_STATIC;LIBUNWIND_INSTALL_LIBRARY" OFF) +cmake_dependent_option(LIBUNWIND_INSTALL_SHARED_LIBRARY + "Install the shared libunwind library." ON + "LIBUNWIND_ENABLE_SHARED;LIBUNWIND_INSTALL_LIBRARY" OFF) + +set(LIBUNWIND_LIBRARY_VERSION "1.0" CACHE STRING + "Version of libunwind. This will be reflected in the name of the shared library produced. + For example, -DLIBUNWIND_LIBRARY_VERSION=x.y will result in the library being named + libunwind.x.y.dylib, along with the usual symlinks pointing to that. On Apple platforms, + this also controls the linker's 'current_version' property.") + +if(MINGW) + if (LIBUNWIND_ENABLE_SHARED) + set(LIBUNWIND_DEFAULT_TEST_CONFIG "llvm-libunwind-shared-mingw.cfg.in") + else() + set(LIBUNWIND_DEFAULT_TEST_CONFIG "llvm-libunwind-static-mingw.cfg.in") + endif() +elseif (LIBUNWIND_ENABLE_SHARED) + set(LIBUNWIND_DEFAULT_TEST_CONFIG "llvm-libunwind-shared.cfg.in") +else() + set(LIBUNWIND_DEFAULT_TEST_CONFIG "llvm-libunwind-static.cfg.in") +endif() +set(LIBUNWIND_TEST_CONFIG "${LIBUNWIND_DEFAULT_TEST_CONFIG}" CACHE STRING + "The path to the Lit testing configuration to use when running the tests. + If a relative path is provided, it is assumed to be relative to '/libunwind/test/configs'.") +if (NOT IS_ABSOLUTE "${LIBUNWIND_TEST_CONFIG}") + set(LIBUNWIND_TEST_CONFIG "${CMAKE_CURRENT_SOURCE_DIR}/test/configs/${LIBUNWIND_TEST_CONFIG}") +endif() +message(STATUS "Using libunwind testing configuration: ${LIBUNWIND_TEST_CONFIG}") +set(LIBUNWIND_TEST_PARAMS "" CACHE STRING + "A list of parameters to run the Lit test suite with.") + +if (NOT LIBUNWIND_ENABLE_SHARED AND NOT LIBUNWIND_ENABLE_STATIC) + message(FATAL_ERROR "libunwind must be built as either a shared or static library.") +endif() + +if (LIBUNWIND_ENABLE_CET AND MSVC) + message(FATAL_ERROR "libunwind CET support is not available for MSVC!") +endif() + +if (WIN32) + set(LIBUNWIND_DEFAULT_HIDE_SYMBOLS TRUE) +else() + set(LIBUNWIND_DEFAULT_HIDE_SYMBOLS FALSE) +endif() +option(LIBUNWIND_HIDE_SYMBOLS + "Do not export any symbols from the static library." ${LIBUNWIND_DEFAULT_HIDE_SYMBOLS}) + +# If toolchain is FPXX, we switch to FP64 to save the full FPRs. See: +# https://web.archive.org/web/20180828210612/https://dmz-portal.mips.com/wiki/MIPS_O32_ABI_-_FR0_and_FR1_Interlinking +check_symbol_exists(__mips_hard_float "" __MIPSHF) +check_symbol_exists(_ABIO32 "" __MIPS_O32) +if (__MIPSHF AND __MIPS_O32) + file(WRITE ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/mips_is_fpxx.c + "#if __mips_fpr != 0\n" + "# error\n" + "#endif\n") + try_compile(MIPS_FPABI_FPXX ${CMAKE_BINARY_DIR} + ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/mips_is_fpxx.c + CMAKE_FLAGS -DCMAKE_C_LINK_EXECUTABLE='echo') +endif() + +#=============================================================================== +# Configure System +#=============================================================================== + +# Add path for custom modules +set(CMAKE_MODULE_PATH + "${CMAKE_CURRENT_SOURCE_DIR}/cmake" + ${CMAKE_MODULE_PATH}) + +set(LIBUNWIND_INSTALL_INCLUDE_DIR "${CMAKE_INSTALL_INCLUDEDIR}" CACHE STRING + "Path where built libunwind headers should be installed.") +set(LIBUNWIND_INSTALL_RUNTIME_DIR "${CMAKE_INSTALL_BINDIR}" CACHE STRING + "Path where built libunwind runtime libraries should be installed.") + +set(LIBUNWIND_SHARED_OUTPUT_NAME "unwind" CACHE STRING "Output name for the shared libunwind runtime library.") +set(LIBUNWIND_STATIC_OUTPUT_NAME "unwind" CACHE STRING "Output name for the static libunwind runtime library.") + +if(LLVM_ENABLE_PER_TARGET_RUNTIME_DIR AND NOT APPLE) + set(LIBUNWIND_TARGET_SUBDIR ${LLVM_DEFAULT_TARGET_TRIPLE}) + if(LIBUNWIND_LIBDIR_SUBDIR) + string(APPEND LIBUNWIND_TARGET_SUBDIR /${LIBUNWIND_LIBDIR_SUBDIR}) + endif() + cmake_path(NORMAL_PATH LIBUNWIND_TARGET_SUBDIR) + set(LIBUNWIND_LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}/${LIBUNWIND_TARGET_SUBDIR}) + set(LIBUNWIND_INSTALL_LIBRARY_DIR lib${LLVM_LIBDIR_SUFFIX}/${LIBUNWIND_TARGET_SUBDIR} CACHE STRING + "Path where built libunwind libraries should be installed.") + unset(LIBUNWIND_TARGET_SUBDIR) +else() + if(LLVM_LIBRARY_OUTPUT_INTDIR) + set(LIBUNWIND_LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}) + else() + set(LIBUNWIND_LIBRARY_DIR ${CMAKE_BINARY_DIR}/lib${LIBUNWIND_LIBDIR_SUFFIX}) + endif() + set(LIBUNWIND_INSTALL_LIBRARY_DIR lib${LIBUNWIND_LIBDIR_SUFFIX} CACHE STRING + "Path where built libunwind libraries should be installed.") +endif() + +set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LIBUNWIND_LIBRARY_DIR}) +set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LIBUNWIND_LIBRARY_DIR}) +set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LIBUNWIND_LIBRARY_DIR}) + +set(LIBUNWIND_C_FLAGS "") +set(LIBUNWIND_CXX_FLAGS "") +set(LIBUNWIND_COMPILE_FLAGS "") +set(LIBUNWIND_LINK_FLAGS "") +set(LIBUNWIND_ADDITIONAL_COMPILE_FLAGS "" CACHE STRING "See documentation for LIBCXX_ADDITIONAL_COMPILE_FLAGS") +set(LIBUNWIND_ADDITIONAL_LIBRARIES "" CACHE STRING + "Additional libraries libunwind is linked to which can be provided in cache") + +# Include macros for adding and removing libunwind flags. +include(HandleLibunwindFlags) + +#=============================================================================== +# Setup Compiler Flags +#=============================================================================== + +# Configure compiler. +include(config-ix) + +include(HandleLibC) # Setup the C library flags + +if (LIBUNWIND_USE_COMPILER_RT AND NOT LIBUNWIND_HAS_NODEFAULTLIBS_FLAG) + list(APPEND LIBUNWIND_LINK_FLAGS "-rtlib=compiler-rt") +endif() + +add_compile_flags_if_supported(-Werror=return-type) + +if (LIBUNWIND_ENABLE_CET) + add_compile_flags_if_supported(-fcf-protection=full) + add_compile_flags_if_supported(-mshstk) + if (NOT CXX_SUPPORTS_FCF_PROTECTION_EQ_FULL_FLAG) + message(SEND_ERROR "Compiler doesn't support CET -fcf-protection option!") + endif() + if (NOT CXX_SUPPORTS_MSHSTK_FLAG) + message(SEND_ERROR "Compiler doesn't support CET -mshstk option!") + endif() +endif() + +if (LIBUNWIND_ENABLE_GCS) + add_compile_flags_if_supported(-mbranch-protection=standard) + if (NOT CXX_SUPPORTS_MBRANCH_PROTECTION_EQ_STANDARD_FLAG) + message(SEND_ERROR "Compiler doesn't support GCS -mbranch-protection option!") + endif() +endif() + +if (WIN32) + # The headers lack matching dllexport attributes (_LIBUNWIND_EXPORT); + # silence the warning instead of cluttering the headers (which aren't + # necessarily the ones that the callers will use anyway) with the + # attributes. + add_compile_flags_if_supported(-Wno-dll-attribute-on-redeclaration) +endif() + +if (MIPS_FPABI_FPXX) + add_compile_flags(-mfp64) +endif() + +# Get feature flags. +# Exceptions +# Catches C++ exceptions only and tells the compiler to assume that extern C +# functions never throw a C++ exception. +add_cxx_compile_flags_if_supported(-fstrict-aliasing) +add_cxx_compile_flags_if_supported(-EHsc) + +# Don't run the linker in this CMake check. +# +# The reason why this was added is that when building libunwind for +# ARM Linux, we need to pass the -funwind-tables flag in order for it to +# work properly with ARM EHABI. +# +# However, when performing CMake checks, adding this flag causes the check +# to produce a false negative, because the compiler generates calls +# to __aeabi_unwind_cpp_pr0, which is defined in libunwind itself, +# which isn't built yet, so the linker complains about undefined symbols. +# +# This leads to libunwind not being built with this flag, which makes +# libunwind quite useless in this setup. +set(_previous_CMAKE_TRY_COMPILE_TARGET_TYPE ${CMAKE_TRY_COMPILE_TARGET_TYPE}) +set(CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY) +add_compile_flags_if_supported(-funwind-tables) +set(CMAKE_TRY_COMPILE_TARGET_TYPE ${_previous_CMAKE_TRY_COMPILE_TARGET_TYPE}) + +if (LIBUNWIND_USES_ARM_EHABI AND NOT CXX_SUPPORTS_FUNWIND_TABLES_FLAG) + message(SEND_ERROR "The -funwind-tables flag must be supported " + "because this target uses ARM Exception Handling ABI") +endif() + +add_cxx_compile_flags_if_supported(-fno-exceptions) +add_cxx_compile_flags_if_supported(-fno-rtti) + +# Ensure that we don't depend on C++ standard library. +if (CXX_SUPPORTS_NOSTDINCXX_FLAG) + list(APPEND LIBUNWIND_COMPILE_FLAGS -nostdinc++) + # Remove -stdlib flags to prevent them from causing an unused flag warning. + string(REPLACE "--stdlib=libc++" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") + string(REPLACE "--stdlib=libstdc++" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") + string(REPLACE "-stdlib=libc++" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") + string(REPLACE "-stdlib=libstdc++" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") +endif() + +# Assert +string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE) +if (LIBUNWIND_ENABLE_ASSERTIONS) + # MSVC doesn't like _DEBUG on release builds. See PR 4379. + if (NOT MSVC) + add_compile_flags(-D_DEBUG) + endif() + + # On Release builds cmake automatically defines NDEBUG, so we + # explicitly undefine it: + if ((NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG") AND (NOT RUST_SGX)) + add_compile_flags(-UNDEBUG) + endif() +else() + if (uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG") + add_compile_flags(-DNDEBUG) + endif() +endif() + +# Cross-unwinding +if (NOT LIBUNWIND_ENABLE_CROSS_UNWINDING) + add_compile_flags(-D_LIBUNWIND_IS_NATIVE_ONLY) +endif() + +# Include stubs for __register_frame_info_bases and related +if (LIBUNWIND_ENABLE_FRAME_APIS) + add_compile_flags(-D_LIBUNWIND_SUPPORT_FRAME_APIS) +endif() + +# Threading-support +if (NOT LIBUNWIND_ENABLE_THREADS) + add_compile_flags(-D_LIBUNWIND_HAS_NO_THREADS) +endif() + +# ARM WMMX register support +if (LIBUNWIND_ENABLE_ARM_WMMX) + # __ARM_WMMX is a compiler pre-define (as per the ACLE 2.0). Clang does not + # define this macro for any supported target at present. Therefore, here we + # provide the option to explicitly enable support for WMMX registers in the + # unwinder. + add_compile_flags(-D__ARM_WMMX) +endif() + +if(LIBUNWIND_IS_BAREMETAL) + add_compile_definitions(_LIBUNWIND_IS_BAREMETAL) +endif() + +if(LIBUNWIND_USE_FRAME_HEADER_CACHE) + add_compile_definitions(_LIBUNWIND_USE_FRAME_HEADER_CACHE) +endif() + +if(LIBUNWIND_REMEMBER_HEAP_ALLOC) + add_compile_definitions(_LIBUNWIND_REMEMBER_HEAP_ALLOC) +endif() + +# This is the _ONLY_ place where add_definitions is called. +if (MSVC) + add_definitions(-D_CRT_SECURE_NO_WARNINGS) +endif() + +if (C_SUPPORTS_COMMENT_LIB_PRAGMA) + if (LIBUNWIND_HAS_DL_LIB) + add_definitions(-D_LIBUNWIND_LINK_DL_LIB) + endif() + if (LIBUNWIND_HAS_PTHREAD_LIB) + add_definitions(-D_LIBUNWIND_LINK_PTHREAD_LIB) + endif() +endif() + +if (RUNTIMES_EXECUTE_ONLY_CODE) + add_compile_definitions(_LIBUNWIND_EXECUTE_ONLY_CODE) +endif() + +add_custom_target(unwind-test-depends + COMMENT "Build dependencies required to run the libunwind test suite.") + +#=============================================================================== +# Setup Source Code +#=============================================================================== + +add_subdirectory(include) + +add_subdirectory(src) + +if (LIBUNWIND_INCLUDE_DOCS) + add_subdirectory(docs) +endif() + +if (LIBUNWIND_INCLUDE_TESTS AND EXISTS ${LLVM_CMAKE_DIR}) + add_subdirectory(test) +endif() diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/LICENSE.TXT b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/LICENSE.TXT new file mode 100644 index 0000000000000000000000000000000000000000..1e3120621caeb62648745a42f7a9a25d1e2731ab --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/LICENSE.TXT @@ -0,0 +1,311 @@ +============================================================================== +The LLVM Project is under the Apache License v2.0 with LLVM Exceptions: +============================================================================== + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +---- LLVM Exceptions to the Apache 2.0 License ---- + +As an exception, if, as a result of your compiling your source code, portions +of this Software are embedded into an Object form of such source code, you +may redistribute such embedded portions in such Object form without complying +with the conditions of Sections 4(a), 4(b) and 4(d) of the License. + +In addition, if you combine or link compiled forms of this Software with +software that is licensed under the GPLv2 ("Combined Software") and if a +court of competent jurisdiction determines that the patent provision (Section +3), the indemnity provision (Section 9) or other Section of the License +conflicts with the conditions of the GPLv2, you may retroactively and +prospectively choose to deem waived or otherwise exclude such Section(s) of +the License, but only in their entirety and only with respect to the Combined +Software. + +============================================================================== +Software from third parties included in the LLVM Project: +============================================================================== +The LLVM Project contains third party software which is under different license +terms. All such code will be identified clearly using at least one of two +mechanisms: +1) It will be in a separate directory tree with its own `LICENSE.txt` or + `LICENSE` file at the top containing the specific license and restrictions + which apply to that software, or +2) It will contain specific license and restriction terms at the top of every + file. + +============================================================================== +Legacy LLVM License (https://llvm.org/docs/DeveloperPolicy.html#legacy): +============================================================================== + +The libunwind library is dual licensed under both the University of Illinois +"BSD-Like" license and the MIT license. As a user of this code you may choose +to use it under either license. As a contributor, you agree to allow your code +to be used under both. + +Full text of the relevant licenses is included below. + +============================================================================== + +University of Illinois/NCSA +Open Source License + +Copyright (c) 2009-2019 by the contributors listed in CREDITS.TXT + +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. + +============================================================================== + +Copyright (c) 2009-2014 by the contributors listed in CREDITS.TXT + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/README_RUST_SGX.md b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/README_RUST_SGX.md new file mode 100644 index 0000000000000000000000000000000000000000..c5d6eb4772bc3246f206f65547898c6fe3d80af1 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/README_RUST_SGX.md @@ -0,0 +1,22 @@ +# Libunwind customizations for linking with x86_64-fortanix-unknown-sgx Rust target. + +## Description +### Initial Fork +Initial Fork has been made from 5.0 release of llvm (commit: 6a075b6de4) +### Detailed Description +#### Header files that we do not include for this target +1. pthread.h +#### Library that we do not link to for this target. +1. pthread (Locks used by libunwind is provided by rust stdlib for this target) + +## Building unwind for rust-sgx target +### Generate Make files: +* `cd where you want to build libunwind` +* `mkdir build` +* `cd build` +* `cmake -DCMAKE_BUILD_TYPE="RELEASE" -DRUST_SGX=1 -G "Unix Makefiles" -DLLVM_ENABLE_WARNINGS=1 -DLIBUNWIND_ENABLE_PEDANTIC=0 -DLLVM_PATH= ` +* `"DEBUG"` could be used instead of `"RELEASE"` to enable debug logs of libunwind. + +### Build: +* `make unwind_static` +* `build/lib/` will have the built library. diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/cmake/config-ix.cmake b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/cmake/config-ix.cmake new file mode 100644 index 0000000000000000000000000000000000000000..d42ceffb1f631e7d549246b49ac3f73435d2bbb5 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/cmake/config-ix.cmake @@ -0,0 +1,73 @@ +include(CMakePushCheckState) +include(CheckCCompilerFlag) +include(CheckCXXCompilerFlag) +include(CheckLibraryExists) +include(LLVMCheckCompilerLinkerFlag) +include(CheckSymbolExists) +include(CheckCSourceCompiles) + +# The compiler driver may be implicitly trying to link against libunwind, which +# might not work if libunwind doesn't exist yet. Try to check if +# --unwindlib=none is supported, and use that if possible. +llvm_check_compiler_linker_flag(C "--unwindlib=none" CXX_SUPPORTS_UNWINDLIB_EQ_NONE_FLAG) + +if (HAIKU) + check_library_exists(root fopen "" LIBUNWIND_HAS_ROOT_LIB) +else() + check_library_exists(c fopen "" LIBUNWIND_HAS_C_LIB) +endif() + +if (NOT LIBUNWIND_USE_COMPILER_RT) + if (ANDROID) + check_library_exists(gcc __gcc_personality_v0 "" LIBUNWIND_HAS_GCC_LIB) + else () + check_library_exists(gcc_s __gcc_personality_v0 "" LIBUNWIND_HAS_GCC_S_LIB) + check_library_exists(gcc __absvdi2 "" LIBUNWIND_HAS_GCC_LIB) + endif () +endif() + +if (CXX_SUPPORTS_NOSTDLIBXX_FLAG OR C_SUPPORTS_NODEFAULTLIBS_FLAG) + if (CMAKE_C_FLAGS MATCHES -fsanitize OR CMAKE_CXX_FLAGS MATCHES -fsanitize) + set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -fno-sanitize=all") + endif () + if (CMAKE_C_FLAGS MATCHES -fsanitize-coverage OR CMAKE_CXX_FLAGS MATCHES -fsanitize-coverage) + set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -fsanitize-coverage=0") + endif () +endif () + +# Check compiler pragmas +if(CMAKE_CXX_COMPILER_ID MATCHES "Clang") + cmake_push_check_state() + set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -Werror=unknown-pragmas") + check_c_source_compiles(" +#pragma comment(lib, \"c\") +int main(void) { return 0; } +" C_SUPPORTS_COMMENT_LIB_PRAGMA) + cmake_pop_check_state() +endif() + +# Check compiler flags +check_cxx_compiler_flag(-nostdinc++ CXX_SUPPORTS_NOSTDINCXX_FLAG) + +# Check symbols +check_symbol_exists(__arm__ "" LIBUNWIND_TARGET_ARM) +check_symbol_exists(__USING_SJLJ_EXCEPTIONS__ "" LIBUNWIND_USES_SJLJ_EXCEPTIONS) +check_symbol_exists(__ARM_DWARF_EH__ "" LIBUNWIND_USES_DWARF_EH) + +if(LIBUNWIND_TARGET_ARM AND NOT LIBUNWIND_USES_SJLJ_EXCEPTIONS AND NOT LIBUNWIND_USES_DWARF_EH) + # This condition is copied from __libunwind_config.h + set(LIBUNWIND_USES_ARM_EHABI ON) +endif() + +# Check libraries +if(FUCHSIA) + set(LIBUNWIND_HAS_DL_LIB NO) + set(LIBUNWIND_HAS_PTHREAD_LIB NO) +else() + check_library_exists(dl dladdr "" LIBUNWIND_HAS_DL_LIB) + check_library_exists(pthread pthread_once "" LIBUNWIND_HAS_PTHREAD_LIB) +endif() + +if(HAIKU) + check_library_exists(bsd dl_iterate_phdr "" LIBUNWIND_HAS_BSD_LIB) +endif() diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/docs/BuildingLibunwind.rst b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/docs/BuildingLibunwind.rst new file mode 100644 index 0000000000000000000000000000000000000000..830513e3a8082ca62b26fc31fef9840186e1e60a --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/docs/BuildingLibunwind.rst @@ -0,0 +1,138 @@ +.. _BuildingLibunwind: + +================== +Building libunwind +================== + +.. contents:: + :local: + +.. _build instructions: + +Getting Started +=============== + +On Mac OS, the easiest way to get this library is to link with -lSystem. +However if you want to build tip-of-trunk from here (getting the bleeding +edge), read on. + +The basic steps needed to build libunwind are: + +#. Checkout LLVM, libunwind, and related projects: + + * ``cd where-you-want-llvm-to-live`` + * ``git clone https://github.com/llvm/llvm-project.git`` + +#. Configure and build libunwind: + + CMake is the only supported configuration system. + + Clang is the preferred compiler when building and using libunwind. + + * ``cd where you want to build llvm`` + * ``mkdir build`` + * ``cd build`` + * ``cmake -G -DLLVM_ENABLE_RUNTIMES=libunwind [options] /runtimes`` + + For more information about configuring libunwind see :ref:`CMake Options`. + + * ``make unwind`` --- will build libunwind. + * ``make check-unwind`` --- will run the test suite. + + Shared and static libraries for libunwind should now be present in llvm/build/lib. + +#. **Optional**: Install libunwind + + If your system already provides an unwinder, it is important to be careful + not to replace it. Remember Use the CMake option ``CMAKE_INSTALL_PREFIX`` to + select a safe place to install libunwind. + + * ``make install-unwind`` --- Will install the libraries and the headers + + +.. _CMake Options: + +CMake Options +============= + +Here are some of the CMake variables that are used often, along with a +brief explanation and LLVM-specific notes. For full documentation, check the +CMake docs or execute ``cmake --help-variable VARIABLE_NAME``. + +**CMAKE_BUILD_TYPE**:STRING + Sets the build type for ``make`` based generators. Possible values are + Release, Debug, RelWithDebInfo and MinSizeRel. On systems like Visual Studio + the user sets the build type with the IDE settings. + +**CMAKE_INSTALL_PREFIX**:PATH + Path where LLVM will be installed if "make install" is invoked or the + "INSTALL" target is built. + +**CMAKE_CXX_COMPILER**:STRING + The C++ compiler to use when building and testing libunwind. + + +.. _libunwind-specific options: + +libunwind specific options +-------------------------- + +.. option:: LIBUNWIND_ENABLE_ASSERTIONS:BOOL + + **Default**: ``ON`` + + Toggle assertions independent of the build mode. + +.. option:: LIBUNWIND_ENABLE_PEDANTIC:BOOL + + **Default**: ``ON`` + + Compile with -Wpedantic. + +.. option:: LIBUNWIND_ENABLE_WERROR:BOOL + + **Default**: ``OFF`` + + Compile with -Werror + +.. option:: LIBUNWIND_ENABLE_SHARED:BOOL + + **Default**: ``ON`` + + Build libunwind as a shared library. + +.. option:: LIBUNWIND_ENABLE_STATIC:BOOL + + **Default**: ``ON`` + + Build libunwind as a static archive. + +.. option:: LIBUNWIND_ENABLE_CROSS_UNWINDING:BOOL + + **Default**: ``OFF`` + + Enable cross-platform unwinding support. + +.. option:: LIBUNWIND_ENABLE_ARM_WMMX:BOOL + + **Default**: ``OFF`` + + Enable unwinding support for ARM WMMX registers. + +.. option:: LIBUNWIND_ENABLE_THREADS:BOOL + + **Default**: ``ON`` + + Build libunwind with threading support. + +.. option:: LIBUNWIND_INSTALL_LIBRARY_DIR:PATH + + **Default**: ``lib${LIBUNWIND_LIBDIR_SUFFIX}`` + + Path where built libunwind libraries should be installed. If a relative path, + relative to ``CMAKE_INSTALL_PREFIX``. + +.. option:: LIBUNWIND_ENABLE_RUST_SGX:BOOL + + **Default**: ``OFF`` + diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/docs/CMakeLists.txt b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/docs/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..79b87eb03b447fb3fc071ea38e7874a70d0b985a --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/docs/CMakeLists.txt @@ -0,0 +1,7 @@ +include(FindSphinx) +if (SPHINX_FOUND AND LLVM_ENABLE_SPHINX) + include(AddSphinxTarget) + if (${SPHINX_OUTPUT_HTML}) + add_sphinx_target(html libunwind) + endif() +endif() diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/docs/conf.py b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/docs/conf.py new file mode 100644 index 0000000000000000000000000000000000000000..29f9c24a7ee2617ae13759c51733a5a418c7c23c --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/docs/conf.py @@ -0,0 +1,252 @@ +# -*- coding: utf-8 -*- +# +# libunwind documentation build configuration file. +# +# This file is execfile()d with the current directory set to its containing dir. +# +# Note that not all possible configuration values are present in this +# autogenerated file. +# +# All configuration values have a default; values that are commented out +# serve to show the default. + +import sys, os +from datetime import date + +# If extensions (or modules to document with autodoc) are in another directory, +# add these directories to sys.path here. If the directory is relative to the +# documentation root, use os.path.abspath to make it absolute, like shown here. +# sys.path.insert(0, os.path.abspath('.')) + +# -- General configuration ----------------------------------------------------- + +# If your documentation needs a minimal Sphinx version, state it here. +# needs_sphinx = '1.0' + +# Add any Sphinx extension module names here, as strings. They can be extensions +# coming with Sphinx (named 'sphinx.ext.*') or your custom ones. +extensions = ["sphinx.ext.intersphinx", "sphinx.ext.todo"] + +# Add any paths that contain templates here, relative to this directory. +templates_path = ["_templates"] + +# The suffix of source filenames. +source_suffix = ".rst" + +# The encoding of source files. +# source_encoding = 'utf-8-sig' + +# The master toctree document. +master_doc = "index" + +# General information about the project. +project = "libunwind" +copyright = "2011-%d, LLVM Project" % date.today().year + +# The version info for the project you're documenting, acts as replacement for +# |version| and |release|, also used in various other places throughout the +# built documents. +# +# The short X.Y version. +version = "17.0" +# The full version, including alpha/beta/rc tags. +release = "17.0" + +# The language for content autogenerated by Sphinx. Refer to documentation +# for a list of supported languages. +# language = None + +# There are two options for replacing |today|: either, you set today to some +# non-false value, then it is used: +# today = '' +# Else, today_fmt is used as the format for a strftime call. +today_fmt = "%Y-%m-%d" + +# List of patterns, relative to source directory, that match files and +# directories to ignore when looking for source files. +exclude_patterns = ["_build"] + +# The reST default role (used for this markup: `text`) to use for all documents. +# default_role = None + +# If true, '()' will be appended to :func: etc. cross-reference text. +# add_function_parentheses = True + +# If true, the current module name will be prepended to all description +# unit titles (such as .. function::). +# add_module_names = True + +# If true, sectionauthor and moduleauthor directives will be shown in the +# output. They are ignored by default. +show_authors = True + +# The name of the Pygments (syntax highlighting) style to use. +pygments_style = "friendly" + +# A list of ignored prefixes for module index sorting. +# modindex_common_prefix = [] + + +# -- Options for HTML output --------------------------------------------------- + +# The theme to use for HTML and HTML Help pages. See the documentation for +# a list of builtin themes. +html_theme = "haiku" + +# Theme options are theme-specific and customize the look and feel of a theme +# further. For a list of options available for each theme, see the +# documentation. +# html_theme_options = {} + +# Add any paths that contain custom themes here, relative to this directory. +# html_theme_path = [] + +# The name for this set of Sphinx documents. If None, it defaults to +# " v documentation". +# html_title = None + +# A shorter title for the navigation bar. Default is the same as html_title. +# html_short_title = None + +# The name of an image file (relative to this directory) to place at the top +# of the sidebar. +# html_logo = None + +# The name of an image file (within the static path) to use as favicon of the +# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 +# pixels large. +# html_favicon = None + +# Add any paths that contain custom static files (such as style sheets) here, +# relative to this directory. They are copied after the builtin static files, +# so a file named "default.css" will overwrite the builtin "default.css". +html_static_path = [] + +# If not '', a 'Last updated on:' timestamp is inserted at every page bottom, +# using the given strftime format. +# html_last_updated_fmt = '%b %d, %Y' + +# If true, SmartyPants will be used to convert quotes and dashes to +# typographically correct entities. +# html_use_smartypants = True + +# Custom sidebar templates, maps document names to template names. +# html_sidebars = {} + +# Additional templates that should be rendered to pages, maps page names to +# template names. +# html_additional_pages = {} + +# If false, no module index is generated. +# html_domain_indices = True + +# If false, no index is generated. +# html_use_index = True + +# If true, the index is split into individual pages for each letter. +# html_split_index = False + +# If true, links to the reST sources are added to the pages. +# html_show_sourcelink = True + +# If true, "Created using Sphinx" is shown in the HTML footer. Default is True. +# html_show_sphinx = True + +# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. +# html_show_copyright = True + +# If true, an OpenSearch description file will be output, and all pages will +# contain a tag referring to it. The value of this option must be the +# base URL from which the finished HTML is served. +# html_use_opensearch = '' + +# This is the file name suffix for HTML files (e.g. ".xhtml"). +# html_file_suffix = None + +# Output file base name for HTML help builder. +htmlhelp_basename = "libunwinddoc" + + +# -- Options for LaTeX output -------------------------------------------------- + +latex_elements = { + # The paper size ('letterpaper' or 'a4paper'). + #'papersize': 'letterpaper', + # The font size ('10pt', '11pt' or '12pt'). + #'pointsize': '10pt', + # Additional stuff for the LaTeX preamble. + #'preamble': '', +} + +# Grouping the document tree into LaTeX files. List of tuples +# (source start file, target name, title, author, documentclass [howto/manual]). +latex_documents = [ + ("contents", "libunwind.tex", "libunwind Documentation", "LLVM project", "manual"), +] + +# The name of an image file (relative to this directory) to place at the top of +# the title page. +# latex_logo = None + +# For "manual" documents, if this is true, then toplevel headings are parts, +# not chapters. +# latex_use_parts = False + +# If true, show page references after internal links. +# latex_show_pagerefs = False + +# If true, show URL addresses after external links. +# latex_show_urls = False + +# Documents to append as an appendix to all manuals. +# latex_appendices = [] + +# If false, no module index is generated. +# latex_domain_indices = True + + +# -- Options for manual page output -------------------------------------------- + +# One entry per manual page. List of tuples +# (source start file, name, description, authors, manual section). +man_pages = [("contents", "libunwind", "libunwind Documentation", ["LLVM project"], 1)] + +# If true, show URL addresses after external links. +# man_show_urls = False + + +# -- Options for Texinfo output ------------------------------------------------ + +# Grouping the document tree into Texinfo files. List of tuples +# (source start file, target name, title, author, +# dir menu entry, description, category) +texinfo_documents = [ + ( + "contents", + "libunwind", + "libunwind Documentation", + "LLVM project", + "libunwind", + "LLVM Unwinder", + "Miscellaneous", + ), +] + +# Documents to append as an appendix to all manuals. +# texinfo_appendices = [] + +# If false, no module index is generated. +# texinfo_domain_indices = True + +# How to display URL addresses: 'footnote', 'no', or 'inline'. +# texinfo_show_urls = 'footnote' + + +# FIXME: Define intersphinx configuration. +intersphinx_mapping = {} + + +# -- Options for extensions ---------------------------------------------------- + +# Enable this if you want TODOs to show up in the generated documentation. +todo_include_todos = True diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/docs/index.rst b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/docs/index.rst new file mode 100644 index 0000000000000000000000000000000000000000..03542464011461fa81f468115061e102f4914452 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/src/llvm-project/libunwind/docs/index.rst @@ -0,0 +1,101 @@ +.. _index: + +======================= +libunwind LLVM Unwinder +======================= + +Overview +======== + +libunwind is an implementation of the interface defined by the HP libunwind +project. It was contributed by Apple as a way to enable clang++ to port to +platforms that do not have a system unwinder. It is intended to be a small and +fast implementation of the ABI, leaving off some features of HP's libunwind +that never materialized (e.g. remote unwinding). + +The unwinder has two levels of API. The high level APIs are the `_Unwind_*` +functions which implement functionality required by `__cxa_*` exception +functions. The low level APIs are the `unw_*` functions which are an interface +defined by the old HP libunwind project. + +Getting Started with libunwind +------------------------------ + +.. toctree:: + :maxdepth: 2 + + BuildingLibunwind + +Current Status +-------------- + +libunwind is a production-quality unwinder, with platform support for DWARF +unwind info, SjLj, and ARM EHABI. + +The low level libunwind API was designed to work either in-process (aka local) +or to operate on another process (aka remote), but only the local path has been +implemented. Remote unwinding remains as future work. + +Platform and Compiler Support +----------------------------- + +libunwind is known to work on the following platforms: + +============ ======================== ============ ======================== +OS Arch Compilers Unwind Info +============ ======================== ============ ======================== +Any i386, x86_64, ARM Clang SjLj +Bare Metal ARM Clang, GCC EHABI +FreeBSD i386, x86_64, ARM64 Clang DWARF CFI +iOS ARM Clang SjLj +Linux ARM Clang, GCC EHABI +Linux i386, x86_64, ARM64 Clang, GCC DWARF CFI +macOS i386, x86_64 Clang, GCC DWARF CFI +NetBSD x86_64 Clang, GCC DWARF CFI +Windows i386, x86_64, ARM, ARM64 Clang DWARF CFI +============ ======================== ============ ======================== + +The following minimum compiler versions are strongly recommended. + +* Clang 3.5 and above +* GCC 4.7 and above. + +Anything older *may* work. + +Notes and Known Issues +---------------------- + +* TODO + + +Getting Involved +================ + +First please review our `Developer's Policy `__ +and `Getting started with LLVM `__. + +**Bug Reports** + +If you think you've found a bug in libunwind, please report it using +the `LLVM bug tracker`_. If you're not sure, you +can ask for support on the `Runtimes forum`_ or on Discord. +Please use the tag "libunwind" for new threads. + +**Patches** + +If you want to contribute a patch to libunwind, please start by reading the LLVM +`documentation about contributing `__. + +**Discussion and Questions** + +Send discussions and questions to the `Runtimes forum`_. Please add the tag "libunwind" to your post. + + +Quick Links +=========== +* `LLVM Homepage `_ +* `LLVM Bug Tracker `_ +* `Clang Discourse Forums `_ +* `cfe-commits Mailing List `_ +* `Runtimes Forum `_ +* `Browse libunwind Sources `_ diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libcfg_if-66ccf9e220034f42.rlib b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libcfg_if-66ccf9e220034f42.rlib new file mode 100644 index 0000000000000000000000000000000000000000..c27fb0ed8adabb6d4d8f6ca72ef0194d6cfa769c Binary files /dev/null and b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libcfg_if-66ccf9e220034f42.rlib differ diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libcfg_if-66ccf9e220034f42.rmeta b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libcfg_if-66ccf9e220034f42.rmeta new file mode 100644 index 0000000000000000000000000000000000000000..80b3095a5a3a285ec4cda2836b96fa14c9f5179a Binary files /dev/null and b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libcfg_if-66ccf9e220034f42.rmeta differ diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libhashbrown-d671ea03f4f2cb7f.rlib b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libhashbrown-d671ea03f4f2cb7f.rlib new file mode 100644 index 0000000000000000000000000000000000000000..1e3037499128815ba530a65520fcb1bc4ac5fbb8 Binary files /dev/null and b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libhashbrown-d671ea03f4f2cb7f.rlib differ diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libpanic_abort-59292eecd8b1d16e.rlib b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libpanic_abort-59292eecd8b1d16e.rlib new file mode 100644 index 0000000000000000000000000000000000000000..d2ae540fd488ee251b2f533e91a99973233839f5 Binary files /dev/null and b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libpanic_abort-59292eecd8b1d16e.rlib differ diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libpanic_abort-59292eecd8b1d16e.rmeta b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libpanic_abort-59292eecd8b1d16e.rmeta new file mode 100644 index 0000000000000000000000000000000000000000..5bb3db17ac24cb1be22a300b15894ba9c99cb93d Binary files /dev/null and b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libpanic_abort-59292eecd8b1d16e.rmeta differ diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libpanic_unwind-2405f2c51aa3033f.rlib b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libpanic_unwind-2405f2c51aa3033f.rlib new file mode 100644 index 0000000000000000000000000000000000000000..17457f2c5276a4c8059bda2e8f68c910ba40007e Binary files /dev/null and b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libpanic_unwind-2405f2c51aa3033f.rlib differ diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libpanic_unwind-2405f2c51aa3033f.rmeta b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libpanic_unwind-2405f2c51aa3033f.rmeta new file mode 100644 index 0000000000000000000000000000000000000000..877dd2b66cd268fe66c0a956897fd3af91880de6 Binary files /dev/null and b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libpanic_unwind-2405f2c51aa3033f.rmeta differ diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libprofiler_builtins-adc74bbcd604917d.rmeta b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libprofiler_builtins-adc74bbcd604917d.rmeta new file mode 100644 index 0000000000000000000000000000000000000000..c60db0da55d7ad189ca80990cac7b885f43006ef Binary files /dev/null and b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libprofiler_builtins-adc74bbcd604917d.rmeta differ diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_demangle-eda3326d6d941958.rmeta b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_demangle-eda3326d6d941958.rmeta new file mode 100644 index 0000000000000000000000000000000000000000..912faed5974ac6dfdca2a4a1268522cf8be27bab Binary files /dev/null and b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_demangle-eda3326d6d941958.rmeta differ diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_literal_escaper-26a66b580b06d1b8.rlib b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_literal_escaper-26a66b580b06d1b8.rlib new file mode 100644 index 0000000000000000000000000000000000000000..6fa4046107cc67be2145b2b8f81edcf4502fcb62 Binary files /dev/null and b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_literal_escaper-26a66b580b06d1b8.rlib differ diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_std_workspace_alloc-fd50af2c77fb0ff8.rlib b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_std_workspace_alloc-fd50af2c77fb0ff8.rlib new file mode 100644 index 0000000000000000000000000000000000000000..71290813a43df5a2e90a360f4d760c2da83c3809 Binary files /dev/null and b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_std_workspace_alloc-fd50af2c77fb0ff8.rlib differ diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_std_workspace_alloc-fd50af2c77fb0ff8.rmeta b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_std_workspace_alloc-fd50af2c77fb0ff8.rmeta new file mode 100644 index 0000000000000000000000000000000000000000..316053613d0b172aca6f3ab74859ee65891fc6b4 Binary files /dev/null and b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_std_workspace_alloc-fd50af2c77fb0ff8.rmeta differ diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_std_workspace_core-70fce068d6af51d0.rlib b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_std_workspace_core-70fce068d6af51d0.rlib new file mode 100644 index 0000000000000000000000000000000000000000..e9f0b211d38797e68e17998d73ded9f57ffd2ba6 Binary files /dev/null and b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_std_workspace_core-70fce068d6af51d0.rlib differ diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_std_workspace_core-70fce068d6af51d0.rmeta b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_std_workspace_core-70fce068d6af51d0.rmeta new file mode 100644 index 0000000000000000000000000000000000000000..a7f0edd39517bfc15c26e7f8137b77108be68fba Binary files /dev/null and b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_std_workspace_core-70fce068d6af51d0.rmeta differ diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_std_workspace_std-444efa70010dce55.rlib b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_std_workspace_std-444efa70010dce55.rlib new file mode 100644 index 0000000000000000000000000000000000000000..66710317e7e23db96beca73d09a7c2adba30e510 Binary files /dev/null and b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_std_workspace_std-444efa70010dce55.rlib differ diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_std_workspace_std-444efa70010dce55.rmeta b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_std_workspace_std-444efa70010dce55.rmeta new file mode 100644 index 0000000000000000000000000000000000000000..7cd30f512630b61c6793d3832c88e71a3cfcea60 Binary files /dev/null and b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_std_workspace_std-444efa70010dce55.rmeta differ diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libstd_detect-9997abfbe12e9a5a.rlib b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libstd_detect-9997abfbe12e9a5a.rlib new file mode 100644 index 0000000000000000000000000000000000000000..e5a3f13dc10563b46803a6f1f3e3e7b437168d31 Binary files /dev/null and b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libstd_detect-9997abfbe12e9a5a.rlib differ diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libsysroot-7490860bdc62736d.rlib b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libsysroot-7490860bdc62736d.rlib new file mode 100644 index 0000000000000000000000000000000000000000..1ca45f4a8eb1b00471d8d1f155b2a591a6dc2a52 Binary files /dev/null and b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libsysroot-7490860bdc62736d.rlib differ diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libsysroot-7490860bdc62736d.rmeta b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libsysroot-7490860bdc62736d.rmeta new file mode 100644 index 0000000000000000000000000000000000000000..7684ad4cf6424dedbecb9ea8ba3b92b2a105ffb4 Binary files /dev/null and b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libsysroot-7490860bdc62736d.rmeta differ diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libunwind-ab072c5f59c422bc.rlib b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libunwind-ab072c5f59c422bc.rlib new file mode 100644 index 0000000000000000000000000000000000000000..3a7d5bfc9a720fa6ee58e996313d10579309180a Binary files /dev/null and b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libunwind-ab072c5f59c422bc.rlib differ diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libunwind-ab072c5f59c422bc.rmeta b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libunwind-ab072c5f59c422bc.rmeta new file mode 100644 index 0000000000000000000000000000000000000000..c5579cd493e1899efa6faf562de2bad3d875b241 Binary files /dev/null and b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libunwind-ab072c5f59c422bc.rmeta differ diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libwindows_link-51a83819a91587e9.rlib b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libwindows_link-51a83819a91587e9.rlib new file mode 100644 index 0000000000000000000000000000000000000000..b4bd2ac333880bcf44d91a95512382aea910e9ee Binary files /dev/null and b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libwindows_link-51a83819a91587e9.rlib differ diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libwindows_link-51a83819a91587e9.rmeta b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libwindows_link-51a83819a91587e9.rmeta new file mode 100644 index 0000000000000000000000000000000000000000..dd7adf3a003fe2b2cf219f5f484126eb94ca711d Binary files /dev/null and b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/x86_64-pc-windows-msvc/lib/libwindows_link-51a83819a91587e9.rmeta differ diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/cargo/LICENSE-APACHE b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/cargo/LICENSE-APACHE new file mode 100644 index 0000000000000000000000000000000000000000..c98d27d4f32d56e56f13de73a08ab44b2947ccf5 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/cargo/LICENSE-APACHE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/LICENSE-2.0 + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/cargo/LICENSE-MIT b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/cargo/LICENSE-MIT new file mode 100644 index 0000000000000000000000000000000000000000..31aa79387f27e730e33d871925e152e35e428031 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/cargo/LICENSE-MIT @@ -0,0 +1,23 @@ +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/cargo/LICENSE-THIRD-PARTY b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/cargo/LICENSE-THIRD-PARTY new file mode 100644 index 0000000000000000000000000000000000000000..8f83ab502aa49786ed9b35d3cbccc7f700e5fe44 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/cargo/LICENSE-THIRD-PARTY @@ -0,0 +1,1272 @@ +The Cargo source code itself does not bundle any third party libraries, but it +depends on a number of libraries which carry their own copyright notices and +license terms. These libraries are normally all linked static into the binary +distributions of Cargo: + +* OpenSSL - https://www.openssl.org/source/license.html + + Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + 3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (https://www.openssl.org/)" + + 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. + + 5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + + 6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (https://www.openssl.org/)" + + THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY + EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR + ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + OF THE POSSIBILITY OF SUCH DAMAGE. + ==================================================================== + + This product includes cryptographic software written by Eric Young + (eay@cryptsoft.com). This product includes software written by Tim + Hudson (tjh@cryptsoft.com). + + --- + + Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) + All rights reserved. + + This package is an SSL implementation written + by Eric Young (eay@cryptsoft.com). + The implementation was written so as to conform with Netscapes SSL. + + This library is free for commercial and non-commercial use as long as + the following conditions are aheared to. The following conditions + apply to all code found in this distribution, be it the RC4, RSA, + lhash, DES, etc., code; not just the SSL code. The SSL documentation + included with this distribution is covered by the same copyright terms + except that the holder is Tim Hudson (tjh@cryptsoft.com). + + Copyright remains Eric Young's, and as such any Copyright notices in + the code are not to be removed. + If this package is used in a product, Eric Young should be given attribution + as the author of the parts of the library used. + This can be in the form of a textual message at program startup or + in documentation (online or textual) provided with the package. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + 1. Redistributions of source code must retain the copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. All advertising materials mentioning features or use of this software + must display the following acknowledgement: + "This product includes cryptographic software written by + Eric Young (eay@cryptsoft.com)" + The word 'cryptographic' can be left out if the rouines from the library + being used are not cryptographic related :-). + 4. If you include any Windows specific code (or a derivative thereof) from + the apps directory (application code) you must include an acknowledgement: + "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" + + THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + + The licence and distribution terms for any publically available version or + derivative of this code cannot be changed. i.e. this code cannot simply be + copied and put under another distribution licence + [including the GNU Public Licence.] + +* libgit2 - https://github.com/libgit2/libgit2/blob/master/COPYING + + libgit2 is Copyright (C) the libgit2 contributors, + unless otherwise stated. See the AUTHORS file for details. + + Note that the only valid version of the GPL as far as this project + is concerned is _this_ particular version of the license (ie v2, not + v2.2 or v3.x or whatever), unless explicitly otherwise stated. + + ---------------------------------------------------------------------- + + LINKING EXCEPTION + + In addition to the permissions in the GNU General Public License, + the authors give you unlimited permission to link the compiled + version of this library into combinations with other programs, + and to distribute those combinations without any restriction + coming from the use of this file. (The General Public License + restrictions do apply in other respects; for example, they cover + modification of the file, and distribution when not linked into + a combined executable.) + + ---------------------------------------------------------------------- + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your + freedom to share and change it. By contrast, the GNU General Public + License is intended to guarantee your freedom to share and change free + software--to make sure the software is free for all its users. This + General Public License applies to most of the Free Software + Foundation's software and to any other program whose authors commit to + using it. (Some other Free Software Foundation software is covered by + the GNU Library General Public License instead.) You can apply it to + your programs, too. + + When we speak of free software, we are referring to freedom, not + price. Our General Public Licenses are designed to make sure that you + have the freedom to distribute copies of free software (and charge for + this service if you wish), that you receive source code or can get it + if you want it, that you can change the software or use pieces of it + in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid + anyone to deny you these rights or to ask you to surrender the rights. + These restrictions translate to certain responsibilities for you if you + distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether + gratis or for a fee, you must give the recipients all the rights that + you have. You must make sure that they, too, receive or can get the + source code. And you must show them these terms so they know their + rights. + + We protect your rights with two steps: (1) copyright the software, and + (2) offer you this license which gives you legal permission to copy, + distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain + that everyone understands that there is no warranty for this free + software. If the software is modified by someone else and passed on, we + want its recipients to know that what they have is not the original, so + that any problems introduced by others will not reflect on the original + authors' reputations. + + Finally, any free program is threatened constantly by software + patents. We wish to avoid the danger that redistributors of a free + program will individually obtain patent licenses, in effect making the + program proprietary. To prevent this, we have made it clear that any + patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and + modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains + a notice placed by the copyright holder saying it may be distributed + under the terms of this General Public License. The "Program", below, + refers to any such program or work, and a "work based on the Program" + means either the Program or any derivative work under copyright law: + that is to say, a work containing the Program or a portion of it, + either verbatim or with modifications and/or translated into another + language. (Hereinafter, translation is included without limitation in + the term "modification".) Each licensee is addressed as "you". + + Activities other than copying, distribution and modification are not + covered by this License; they are outside its scope. The act of + running the Program is not restricted, and the output from the Program + is covered only if its contents constitute a work based on the + Program (independent of having been made by running the Program). + Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's + source code as you receive it, in any medium, provided that you + conspicuously and appropriately publish on each copy an appropriate + copyright notice and disclaimer of warranty; keep intact all the + notices that refer to this License and to the absence of any warranty; + and give any other recipients of the Program a copy of this License + along with the Program. + + You may charge a fee for the physical act of transferring a copy, and + you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion + of it, thus forming a work based on the Program, and copy and + distribute such modifications or work under the terms of Section 1 + above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + + These requirements apply to the modified work as a whole. If + identifiable sections of that work are not derived from the Program, + and can be reasonably considered independent and separate works in + themselves, then this License, and its terms, do not apply to those + sections when you distribute them as separate works. But when you + distribute the same sections as part of a whole which is a work based + on the Program, the distribution of the whole must be on the terms of + this License, whose permissions for other licensees extend to the + entire whole, and thus to each and every part regardless of who wrote it. + + Thus, it is not the intent of this section to claim rights or contest + your rights to work written entirely by you; rather, the intent is to + exercise the right to control the distribution of derivative or + collective works based on the Program. + + In addition, mere aggregation of another work not based on the Program + with the Program (or with a work based on the Program) on a volume of + a storage or distribution medium does not bring the other work under + the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, + under Section 2) in object code or executable form under the terms of + Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + + The source code for a work means the preferred form of the work for + making modifications to it. For an executable work, complete source + code means all the source code for all modules it contains, plus any + associated interface definition files, plus the scripts used to + control compilation and installation of the executable. However, as a + special exception, the source code distributed need not include + anything that is normally distributed (in either source or binary + form) with the major components (compiler, kernel, and so on) of the + operating system on which the executable runs, unless that component + itself accompanies the executable. + + If distribution of executable or object code is made by offering + access to copy from a designated place, then offering equivalent + access to copy the source code from the same place counts as + distribution of the source code, even though third parties are not + compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program + except as expressly provided under this License. Any attempt + otherwise to copy, modify, sublicense or distribute the Program is + void, and will automatically terminate your rights under this License. + However, parties who have received copies, or rights, from you under + this License will not have their licenses terminated so long as such + parties remain in full compliance. + + 5. You are not required to accept this License, since you have not + signed it. However, nothing else grants you permission to modify or + distribute the Program or its derivative works. These actions are + prohibited by law if you do not accept this License. Therefore, by + modifying or distributing the Program (or any work based on the + Program), you indicate your acceptance of this License to do so, and + all its terms and conditions for copying, distributing or modifying + the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the + Program), the recipient automatically receives a license from the + original licensor to copy, distribute or modify the Program subject to + these terms and conditions. You may not impose any further + restrictions on the recipients' exercise of the rights granted herein. + You are not responsible for enforcing compliance by third parties to + this License. + + 7. If, as a consequence of a court judgment or allegation of patent + infringement or for any other reason (not limited to patent issues), + conditions are imposed on you (whether by court order, agreement or + otherwise) that contradict the conditions of this License, they do not + excuse you from the conditions of this License. If you cannot + distribute so as to satisfy simultaneously your obligations under this + License and any other pertinent obligations, then as a consequence you + may not distribute the Program at all. For example, if a patent + license would not permit royalty-free redistribution of the Program by + all those who receive copies directly or indirectly through you, then + the only way you could satisfy both it and this License would be to + refrain entirely from distribution of the Program. + + If any portion of this section is held invalid or unenforceable under + any particular circumstance, the balance of the section is intended to + apply and the section as a whole is intended to apply in other + circumstances. + + It is not the purpose of this section to induce you to infringe any + patents or other property right claims or to contest validity of any + such claims; this section has the sole purpose of protecting the + integrity of the free software distribution system, which is + implemented by public license practices. Many people have made + generous contributions to the wide range of software distributed + through that system in reliance on consistent application of that + system; it is up to the author/donor to decide if he or she is willing + to distribute software through any other system and a licensee cannot + impose that choice. + + This section is intended to make thoroughly clear what is believed to + be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in + certain countries either by patents or by copyrighted interfaces, the + original copyright holder who places the Program under this License + may add an explicit geographical distribution limitation excluding + those countries, so that distribution is permitted only in or among + countries not thus excluded. In such case, this License incorporates + the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions + of the General Public License from time to time. Such new versions will + be similar in spirit to the present version, but may differ in detail to + address new problems or concerns. + + Each version is given a distinguishing version number. If the Program + specifies a version number of this License which applies to it and "any + later version", you have the option of following the terms and conditions + either of that version or of any later version published by the Free + Software Foundation. If the Program does not specify a version number of + this License, you may choose any version ever published by the Free Software + Foundation. + + 10. If you wish to incorporate parts of the Program into other free + programs whose distribution conditions are different, write to the author + to ask for permission. For software which is copyrighted by the Free + Software Foundation, write to the Free Software Foundation; we sometimes + make exceptions for this. Our decision will be guided by the two goals + of preserving the free status of all derivatives of our free software and + of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY + FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN + OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES + PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED + OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS + TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE + PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, + REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING + WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR + REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, + INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING + OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED + TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY + YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER + PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE + POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest + possible use to the public, the best way to achieve this is to make it + free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest + to attach them to the start of each source file to most effectively + convey the exclusion of warranty; and each file should have at least + the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + + Also add information on how to contact you by electronic and paper mail. + + If the program is interactive, make it output a short notice like this + when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + + The hypothetical commands `show w' and `show c' should show the appropriate + parts of the General Public License. Of course, the commands you use may + be called something other than `show w' and `show c'; they could even be + mouse-clicks or menu items--whatever suits your program. + + You should also get your employer (if you work as a programmer) or your + school, if any, to sign a "copyright disclaimer" for the program, if + necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + + This General Public License does not permit incorporating your program into + proprietary programs. If your program is a subroutine library, you may + consider it more useful to permit linking proprietary applications with the + library. If this is what you want to do, use the GNU Library General + Public License instead of this License. + + ---------------------------------------------------------------------- + + The bundled ZLib code is licensed under the ZLib license: + + Copyright (C) 1995-2010 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly Mark Adler + jloup@gzip.org madler@alumni.caltech.edu + + ---------------------------------------------------------------------- + + The Clar framework is licensed under the MIT license: + + Copyright (C) 2011 by Vicent Marti + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + + ---------------------------------------------------------------------- + + The regex library (deps/regex/) is licensed under the GNU LGPL + + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + [This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your + freedom to share and change it. By contrast, the GNU General Public + Licenses are intended to guarantee your freedom to share and change + free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some + specially designated software packages--typically libraries--of the + Free Software Foundation and other authors who decide to use it. You + can use it too, but we suggest you first think carefully about whether + this license or the ordinary General Public License is the better + strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, + not price. Our General Public Licenses are designed to make sure that + you have the freedom to distribute copies of free software (and charge + for this service if you wish); that you receive source code or can get + it if you want it; that you can change the software and use pieces of + it in new free programs; and that you are informed that you can do + these things. + + To protect your rights, we need to make restrictions that forbid + distributors to deny you these rights or to ask you to surrender these + rights. These restrictions translate to certain responsibilities for + you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis + or for a fee, you must give the recipients all the rights that we gave + you. You must make sure that they, too, receive or can get the source + code. If you link other code with the library, you must provide + complete object files to the recipients, so that they can relink them + with the library after making changes to the library and recompiling + it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the + library, and (2) we offer you this license, which gives you legal + permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that + there is no warranty for the free library. Also, if the library is + modified by someone else and passed on, the recipients should know + that what they have is not the original version, so that the original + author's reputation will not be affected by problems that might be + introduced by others. + + Finally, software patents pose a constant threat to the existence of + any free program. We wish to make sure that a company cannot + effectively restrict the users of a free program by obtaining a + restrictive license from a patent holder. Therefore, we insist that + any patent license obtained for a version of the library must be + consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the + ordinary GNU General Public License. This license, the GNU Lesser + General Public License, applies to certain designated libraries, and + is quite different from the ordinary General Public License. We use + this license for certain libraries in order to permit linking those + libraries into non-free programs. + + When a program is linked with a library, whether statically or using + a shared library, the combination of the two is legally speaking a + combined work, a derivative of the original library. The ordinary + General Public License therefore permits such linking only if the + entire combination fits its criteria of freedom. The Lesser General + Public License permits more lax criteria for linking other code with + the library. + + We call this license the "Lesser" General Public License because it + does Less to protect the user's freedom than the ordinary General + Public License. It also provides other free software developers Less + of an advantage over competing non-free programs. These disadvantages + are the reason we use the ordinary General Public License for many + libraries. However, the Lesser license provides advantages in certain + special circumstances. + + For example, on rare occasions, there may be a special need to + encourage the widest possible use of a certain library, so that it becomes + a de-facto standard. To achieve this, non-free programs must be + allowed to use the library. A more frequent case is that a free + library does the same job as widely used non-free libraries. In this + case, there is little to gain by limiting the free library to free + software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free + programs enables a greater number of people to use a large body of + free software. For example, permission to use the GNU C Library in + non-free programs enables many more people to use the whole GNU + operating system, as well as its variant, the GNU/Linux operating + system. + + Although the Lesser General Public License is Less protective of the + users' freedom, it does ensure that the user of a program that is + linked with the Library has the freedom and the wherewithal to run + that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and + modification follow. Pay close attention to the difference between a + "work based on the library" and a "work that uses the library". The + former contains code derived from the library, whereas the latter must + be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other + program which contains a notice placed by the copyright holder or + other authorized party saying it may be distributed under the terms of + this Lesser General Public License (also called "this License"). + Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data + prepared so as to be conveniently linked with application programs + (which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work + which has been distributed under these terms. A "work based on the + Library" means either the Library or any derivative work under + copyright law: that is to say, a work containing the Library or a + portion of it, either verbatim or with modifications and/or translated + straightforwardly into another language. (Hereinafter, translation is + included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for + making modifications to it. For a library, complete source code means + all the source code for all modules it contains, plus any associated + interface definition files, plus the scripts used to control compilation + and installation of the library. + + Activities other than copying, distribution and modification are not + covered by this License; they are outside its scope. The act of + running a program using the Library is not restricted, and output from + such a program is covered only if its contents constitute a work based + on the Library (independent of the use of the Library in a tool for + writing it). Whether that is true depends on what the Library does + and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's + complete source code as you receive it, in any medium, provided that + you conspicuously and appropriately publish on each copy an + appropriate copyright notice and disclaimer of warranty; keep intact + all the notices that refer to this License and to the absence of any + warranty; and distribute a copy of this License along with the + Library. + + You may charge a fee for the physical act of transferring a copy, + and you may at your option offer warranty protection in exchange for a + fee. + + 2. You may modify your copy or copies of the Library or any portion + of it, thus forming a work based on the Library, and copy and + distribute such modifications or work under the terms of Section 1 + above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + + These requirements apply to the modified work as a whole. If + identifiable sections of that work are not derived from the Library, + and can be reasonably considered independent and separate works in + themselves, then this License, and its terms, do not apply to those + sections when you distribute them as separate works. But when you + distribute the same sections as part of a whole which is a work based + on the Library, the distribution of the whole must be on the terms of + this License, whose permissions for other licensees extend to the + entire whole, and thus to each and every part regardless of who wrote + it. + + Thus, it is not the intent of this section to claim rights or contest + your rights to work written entirely by you; rather, the intent is to + exercise the right to control the distribution of derivative or + collective works based on the Library. + + In addition, mere aggregation of another work not based on the Library + with the Library (or with a work based on the Library) on a volume of + a storage or distribution medium does not bring the other work under + the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public + License instead of this License to a given copy of the Library. To do + this, you must alter all the notices that refer to this License, so + that they refer to the ordinary GNU General Public License, version 2, + instead of to this License. (If a newer version than version 2 of the + ordinary GNU General Public License has appeared, then you can specify + that version instead if you wish.) Do not make any other change in + these notices. + + Once this change is made in a given copy, it is irreversible for + that copy, so the ordinary GNU General Public License applies to all + subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of + the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or + derivative of it, under Section 2) in object code or executable form + under the terms of Sections 1 and 2 above provided that you accompany + it with the complete corresponding machine-readable source code, which + must be distributed under the terms of Sections 1 and 2 above on a + medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy + from a designated place, then offering equivalent access to copy the + source code from the same place satisfies the requirement to + distribute the source code, even though third parties are not + compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the + Library, but is designed to work with the Library by being compiled or + linked with it, is called a "work that uses the Library". Such a + work, in isolation, is not a derivative work of the Library, and + therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library + creates an executable that is a derivative of the Library (because it + contains portions of the Library), rather than a "work that uses the + library". The executable is therefore covered by this License. + Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file + that is part of the Library, the object code for the work may be a + derivative work of the Library even though the source code is not. + Whether this is true is especially significant if the work can be + linked without the Library, or if the work is itself a library. The + threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data + structure layouts and accessors, and small macros and small inline + functions (ten lines or less in length), then the use of the object + file is unrestricted, regardless of whether it is legally a derivative + work. (Executables containing this object code plus portions of the + Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may + distribute the object code for the work under the terms of Section 6. + Any executables containing that work also fall under Section 6, + whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or + link a "work that uses the Library" with the Library to produce a + work containing portions of the Library, and distribute that work + under terms of your choice, provided that the terms permit + modification of the work for the customer's own use and reverse + engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the + Library is used in it and that the Library and its use are covered by + this License. You must supply a copy of this License. If the work + during execution displays copyright notices, you must include the + copyright notice for the Library among them, as well as a reference + directing the user to the copy of this License. Also, you must do one + of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the + Library" must include any data and utility programs needed for + reproducing the executable from it. However, as a special exception, + the materials to be distributed need not include anything that is + normally distributed (in either source or binary form) with the major + components (compiler, kernel, and so on) of the operating system on + which the executable runs, unless that component itself accompanies + the executable. + + It may happen that this requirement contradicts the license + restrictions of other proprietary libraries that do not normally + accompany the operating system. Such a contradiction means you cannot + use both them and the Library together in an executable that you + distribute. + + 7. You may place library facilities that are a work based on the + Library side-by-side in a single library together with other library + facilities not covered by this License, and distribute such a combined + library, provided that the separate distribution of the work based on + the Library and of the other library facilities is otherwise + permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute + the Library except as expressly provided under this License. Any + attempt otherwise to copy, modify, sublicense, link with, or + distribute the Library is void, and will automatically terminate your + rights under this License. However, parties who have received copies, + or rights, from you under this License will not have their licenses + terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not + signed it. However, nothing else grants you permission to modify or + distribute the Library or its derivative works. These actions are + prohibited by law if you do not accept this License. Therefore, by + modifying or distributing the Library (or any work based on the + Library), you indicate your acceptance of this License to do so, and + all its terms and conditions for copying, distributing or modifying + the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the + Library), the recipient automatically receives a license from the + original licensor to copy, distribute, link with or modify the Library + subject to these terms and conditions. You may not impose any further + restrictions on the recipients' exercise of the rights granted herein. + You are not responsible for enforcing compliance by third parties with + this License. + + 11. If, as a consequence of a court judgment or allegation of patent + infringement or for any other reason (not limited to patent issues), + conditions are imposed on you (whether by court order, agreement or + otherwise) that contradict the conditions of this License, they do not + excuse you from the conditions of this License. If you cannot + distribute so as to satisfy simultaneously your obligations under this + License and any other pertinent obligations, then as a consequence you + may not distribute the Library at all. For example, if a patent + license would not permit royalty-free redistribution of the Library by + all those who receive copies directly or indirectly through you, then + the only way you could satisfy both it and this License would be to + refrain entirely from distribution of the Library. + + If any portion of this section is held invalid or unenforceable under any + particular circumstance, the balance of the section is intended to apply, + and the section as a whole is intended to apply in other circumstances. + + It is not the purpose of this section to induce you to infringe any + patents or other property right claims or to contest validity of any + such claims; this section has the sole purpose of protecting the + integrity of the free software distribution system which is + implemented by public license practices. Many people have made + generous contributions to the wide range of software distributed + through that system in reliance on consistent application of that + system; it is up to the author/donor to decide if he or she is willing + to distribute software through any other system and a licensee cannot + impose that choice. + + This section is intended to make thoroughly clear what is believed to + be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in + certain countries either by patents or by copyrighted interfaces, the + original copyright holder who places the Library under this License may add + an explicit geographical distribution limitation excluding those countries, + so that distribution is permitted only in or among countries not thus + excluded. In such case, this License incorporates the limitation as if + written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new + versions of the Lesser General Public License from time to time. + Such new versions will be similar in spirit to the present version, + but may differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the Library + specifies a version number of this License which applies to it and + "any later version", you have the option of following the terms and + conditions either of that version or of any later version published by + the Free Software Foundation. If the Library does not specify a + license version number, you may choose any version ever published by + the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free + programs whose distribution conditions are incompatible with these, + write to the author to ask for permission. For software which is + copyrighted by the Free Software Foundation, write to the Free + Software Foundation; we sometimes make exceptions for this. Our + decision will be guided by the two goals of preserving the free status + of all derivatives of our free software and of promoting the sharing + and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO + WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. + EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR + OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY + KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE + LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME + THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN + WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY + AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU + FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR + CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE + LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING + RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A + FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF + SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH + DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest + possible use to the public, we recommend making it free software that + everyone can redistribute and change. You can do so by permitting + redistribution under these terms (or, alternatively, under the terms of the + ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is + safest to attach them to the start of each source file to most effectively + convey the exclusion of warranty; and each file should have at least the + "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + + Also add information on how to contact you by electronic and paper mail. + + You should also get your employer (if you work as a programmer) or your + school, if any, to sign a "copyright disclaimer" for the library, if + necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + + That's all there is to it! + + ---------------------------------------------------------------------- + +* libssh2 - https://www.libssh2.org/license.html + + Copyright (c) 2004-2007 Sara Golemon + Copyright (c) 2005,2006 Mikhail Gusarov + Copyright (c) 2006-2007 The Written Word, Inc. + Copyright (c) 2007 Eli Fant + Copyright (c) 2009 Daniel Stenberg + Copyright (C) 2008, 2009 Simon Josefsson + All rights reserved. + + Redistribution and use in source and binary forms, + with or without modification, are permitted provided + that the following conditions are met: + + Redistributions of source code must retain the above + copyright notice, this list of conditions and the + following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials + provided with the distribution. + + Neither the name of the copyright holder nor the names + of any other contributors may be used to endorse or + promote products derived from this software without + specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE + USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY + OF SUCH DAMAGE. + +* libcurl - https://curl.haxx.se/docs/copyright.html + + COPYRIGHT AND PERMISSION NOTICE + + Copyright (c) 1996 - 2014, Daniel Stenberg, daniel@haxx.se. + + All rights reserved. + + Permission to use, copy, modify, and distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + USE OR OTHER DEALINGS IN THE SOFTWARE. + + Except as contained in this notice, the name of a copyright holder shall not + be used in advertising or otherwise to promote the sale, use or other + dealings in this Software without prior written authorization of the + copyright holder. + +* flate2-rs - https://github.com/alexcrichton/flate2-rs/blob/master/LICENSE-MIT +* link-config - https://github.com/alexcrichton/link-config/blob/master/LICENSE-MIT +* openssl-static-sys - https://github.com/alexcrichton/openssl-static-sys/blob/master/LICENSE-MIT +* toml-rs - https://github.com/alexcrichton/toml-rs/blob/master/LICENSE-MIT +* libssh2-static-sys - https://github.com/alexcrichton/libssh2-static-sys/blob/master/LICENSE-MIT +* git2-rs - https://github.com/alexcrichton/git2-rs/blob/master/LICENSE-MIT +* tar-rs - https://github.com/alexcrichton/tar-rs/blob/master/LICENSE-MIT + + Copyright (c) 2014 Alex Crichton + + Permission is hereby granted, free of charge, to any + person obtaining a copy of this software and associated + documentation files (the "Software"), to deal in the + Software without restriction, including without + limitation the rights to use, copy, modify, merge, + publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software + is furnished to do so, subject to the following + conditions: + + The above copyright notice and this permission notice + shall be included in all copies or substantial portions + of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF + ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED + TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT + SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR + IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. + +* glob - https://github.com/rust-lang/glob/blob/master/LICENSE-MIT +* semver - https://github.com/rust-lang/semver/blob/master/LICENSE-MIT + + Copyright (c) 2014 The Rust Project Developers + + Permission is hereby granted, free of charge, to any + person obtaining a copy of this software and associated + documentation files (the "Software"), to deal in the + Software without restriction, including without + limitation the rights to use, copy, modify, merge, + publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software + is furnished to do so, subject to the following + conditions: + + The above copyright notice and this permission notice + shall be included in all copies or substantial portions + of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF + ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED + TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT + SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR + IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. + +* rust-url - https://github.com/servo/rust-url/blob/master/LICENSE-MIT + + Copyright (c) 2006-2009 Graydon Hoare + Copyright (c) 2009-2013 Mozilla Foundation + + Permission is hereby granted, free of charge, to any + person obtaining a copy of this software and associated + documentation files (the "Software"), to deal in the + Software without restriction, including without + limitation the rights to use, copy, modify, merge, + publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software + is furnished to do so, subject to the following + conditions: + + The above copyright notice and this permission notice + shall be included in all copies or substantial portions + of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF + ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED + TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT + SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR + IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. + +* rust-encoding - https://github.com/lifthrasiir/rust-encoding/blob/master/LICENSE.txt + + The MIT License (MIT) + + Copyright (c) 2013, Kang Seonghoon. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + +* curl-rust - https://github.com/carllerche/curl-rust/blob/master/LICENSE + + Copyright (c) 2014 Carl Lerche + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + +* docopt.rs - https://github.com/docopt/docopt.rs/blob/master/UNLICENSE + + This is free and unencumbered software released into the public domain. + + Anyone is free to copy, modify, publish, use, compile, sell, or + distribute this software, either in source code form or as a compiled + binary, for any purpose, commercial or non-commercial, and by any + means. + + In jurisdictions that recognize copyright laws, the author or authors + of this software dedicate any and all copyright interest in the + software to the public domain. We make this dedication for the benefit + of the public at large and to the detriment of our heirs and + successors. We intend this dedication to be an overt act of + relinquishment in perpetuity of all present and future rights to this + software under copyright law. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR + OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. + + For more information, please refer to + diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/cargo/README.md b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/cargo/README.md new file mode 100644 index 0000000000000000000000000000000000000000..c24925b97fbcc2ef873324fbb195a4db3e043f97 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/cargo/README.md @@ -0,0 +1,129 @@ +# Cargo + +Cargo downloads your Rust project’s dependencies and compiles your project. + +**To start using Cargo**, learn more at [The Cargo Book]. + +**To start developing Cargo itself**, read the [Cargo Contributor Guide]. + +[The Cargo Book]: https://doc.rust-lang.org/cargo/ +[Cargo Contributor Guide]: https://rust-lang.github.io/cargo/contrib/ + +> The Cargo binary distributed through with Rust is maintained by the Cargo +> team for use by the wider ecosystem. +> For all other uses of this crate (as a binary or library) this is maintained +> by the Cargo team, primarily for use by Cargo and not intended for external +> use (except as a transitive dependency). This crate may make major changes to +> its APIs. + +## Code Status + +[![CI](https://github.com/rust-lang/cargo/actions/workflows/main.yml/badge.svg?branch=auto-cargo)](https://github.com/rust-lang/cargo/actions/workflows/main.yml) + +Code documentation: + +## Compiling from Source + +### Requirements + +Cargo requires the following tools and packages to build: + +* `cargo` and `rustc` +* A C compiler [for your platform](https://github.com/rust-lang/cc-rs#compile-time-requirements) +* `git` (to clone this repository) + +**Other requirements:** + +The following are optional based on your platform and needs. + +* `pkg-config` — This is used to help locate system packages, such as `libssl` headers/libraries. This may not be required in all cases, such as using vendored OpenSSL, or on Windows. +* OpenSSL — Only needed on Unix-like systems and only if the `vendored-openssl` Cargo feature is not used. + + This requires the development headers, which can be obtained from the `libssl-dev` package on Ubuntu or `openssl-devel` with apk or yum or the `openssl` package from Homebrew on macOS. + + If using the `vendored-openssl` Cargo feature, then a static copy of OpenSSL will be built from source instead of using the system OpenSSL. + This may require additional tools such as `perl` and `make`. + + On macOS, common installation directories from Homebrew, MacPorts, or pkgsrc will be checked. Otherwise it will fall back to `pkg-config`. + + On Windows, the system-provided Schannel will be used instead. + + LibreSSL is also supported. + +**Optional system libraries:** + +The build will automatically use vendored versions of the following libraries. However, if they are provided by the system and can be found with `pkg-config`, then the system libraries will be used instead: + +* [`libcurl`](https://curl.se/libcurl/) — Used for network transfers. +* [`libgit2`](https://libgit2.org/) — Used for fetching git dependencies. +* [`libssh2`](https://www.libssh2.org/) — Used for SSH access to git repositories. +* [`libz`](https://zlib.net/) (AKA zlib) — Used by the above C libraries for data compression. (Rust code uses [`zlib-rs`](https://github.com/trifectatechfoundation/zlib-rs) instead.) + +It is recommended to use the vendored versions as they are the versions that are tested to work with Cargo. + +### Compiling + +First, you'll want to check out this repository + +``` +git clone https://github.com/rust-lang/cargo.git +cd cargo +``` + +With `cargo` already installed, you can simply run: + +``` +cargo build --release +``` + +## Adding new subcommands to Cargo + +Cargo is designed to be extensible with new subcommands without having to modify +Cargo itself. See [the Wiki page][third-party-subcommands] for more details and +a list of known community-developed subcommands. + +[third-party-subcommands]: https://github.com/rust-lang/cargo/wiki/Third-party-cargo-subcommands + + +## Releases + +Cargo releases coincide with Rust releases. +High level release notes are available as part of [Rust's release notes][rel]. +Detailed release notes are available in the [changelog]. + +[rel]: https://github.com/rust-lang/rust/blob/master/RELEASES.md +[changelog]: https://doc.rust-lang.org/nightly/cargo/CHANGELOG.html + +## Reporting issues + +Found a bug? We'd love to know about it! + +Please report all issues on the GitHub [issue tracker][issues]. + +[issues]: https://github.com/rust-lang/cargo/issues + +## Contributing + +See the **[Cargo Contributor Guide]** for a complete introduction +to contributing to Cargo. + +## License + +Cargo is primarily distributed under the terms of both the MIT license +and the Apache License (Version 2.0). + +See [LICENSE-APACHE](LICENSE-APACHE) and [LICENSE-MIT](LICENSE-MIT) for details. + +### Third party software + +This product includes software developed by the OpenSSL Project +for use in the OpenSSL Toolkit (https://www.openssl.org/). + +In binary form, this product includes software that is licensed under the +terms of the GNU General Public License, version 2, with a linking exception, +which can be obtained from the [upstream repository][1]. + +See [LICENSE-THIRD-PARTY](LICENSE-THIRD-PARTY) for details. + +[1]: https://github.com/libgit2/libgit2 + diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/clippy/LICENSE-APACHE b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/clippy/LICENSE-APACHE new file mode 100644 index 0000000000000000000000000000000000000000..773ae298cc19fbc64ca3cf60eac88271e31d9e44 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/clippy/LICENSE-APACHE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright (c) The Rust Project Contributors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/clippy/LICENSE-MIT b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/clippy/LICENSE-MIT new file mode 100644 index 0000000000000000000000000000000000000000..9549420685cca8a868e31c6051d49e9f36c64fd1 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/clippy/LICENSE-MIT @@ -0,0 +1,27 @@ +MIT License + +Copyright (c) The Rust Project Contributors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/clippy/README.md b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/clippy/README.md new file mode 100644 index 0000000000000000000000000000000000000000..8bccd040c1f94b56030e3485fb806a37447fe09c --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/clippy/README.md @@ -0,0 +1,288 @@ +# Clippy + +[![License: MIT OR Apache-2.0](https://img.shields.io/crates/l/clippy.svg)](#license) + +A collection of lints to catch common mistakes and improve your [Rust](https://github.com/rust-lang/rust) code. + +[There are over 800 lints included in this crate!](https://rust-lang.github.io/rust-clippy/master/index.html) + +Lints are divided into categories, each with a default [lint level](https://doc.rust-lang.org/rustc/lints/levels.html). +You can choose how much Clippy is supposed to ~~annoy~~ help you by changing the lint level by category. + +| Category | Description | Default level | +|-----------------------|-------------------------------------------------------------------------------------|---------------| +| `clippy::all` | all lints that are on by default (correctness, suspicious, style, complexity, perf) | **warn/deny** | +| `clippy::correctness` | code that is outright wrong or useless | **deny** | +| `clippy::suspicious` | code that is most likely wrong or useless | **warn** | +| `clippy::style` | code that should be written in a more idiomatic way | **warn** | +| `clippy::complexity` | code that does something simple but in a complex way | **warn** | +| `clippy::perf` | code that can be written to run faster | **warn** | +| `clippy::pedantic` | lints which are rather strict or have occasional false positives | allow | +| `clippy::restriction` | lints which prevent the use of language and library features[^restrict] | allow | +| `clippy::nursery` | new lints that are still under development | allow | +| `clippy::cargo` | lints for the cargo manifest | allow | + +More to come, please [file an issue](https://github.com/rust-lang/rust-clippy/issues) if you have ideas! + +The `restriction` category should, *emphatically*, not be enabled as a whole. The contained +lints may lint against perfectly reasonable code, may not have an alternative suggestion, +and may contradict any other lints (including other categories). Lints should be considered +on a case-by-case basis before enabling. + +[^restrict]: Some use cases for `restriction` lints include: + - Strict coding styles (e.g. [`clippy::else_if_without_else`]). + - Additional restrictions on CI (e.g. [`clippy::todo`]). + - Preventing panicking in certain functions (e.g. [`clippy::unwrap_used`]). + - Running a lint only on a subset of code (e.g. `#[forbid(clippy::float_arithmetic)]` on a module). + +[`clippy::else_if_without_else`]: https://rust-lang.github.io/rust-clippy/master/index.html#else_if_without_else +[`clippy::todo`]: https://rust-lang.github.io/rust-clippy/master/index.html#todo +[`clippy::unwrap_used`]: https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_used + +--- + +Table of contents: + +* [Usage instructions](#usage) +* [Configuration](#configuration) +* [Contributing](#contributing) +* [License](#license) + +## Usage + +Below are instructions on how to use Clippy as a cargo subcommand, +in projects that do not use cargo, or in Travis CI. + +### As a cargo subcommand (`cargo clippy`) + +One way to use Clippy is by installing Clippy through rustup as a cargo +subcommand. + +#### Step 1: Install Rustup + +You can install [Rustup](https://rustup.rs/) on supported platforms. This will help +us install Clippy and its dependencies. + +If you already have Rustup installed, update to ensure you have the latest +Rustup and compiler: + +```terminal +rustup update +``` + +#### Step 2: Install Clippy + +Once you have rustup and the latest stable release (at least Rust 1.29) installed, run the following command: + +```terminal +rustup component add clippy +``` + +If it says that it can't find the `clippy` component, please run `rustup self update`. + +#### Step 3: Run Clippy + +Now you can run Clippy by invoking the following command: + +```terminal +cargo clippy +``` + +#### Automatically applying Clippy suggestions + +Clippy can automatically apply some lint suggestions, just like the compiler. Note that `--fix` implies +`--all-targets`, so it can fix as much code as it can. + +```terminal +cargo clippy --fix +``` + +#### Workspaces + +All the usual workspace options should work with Clippy. For example the following command +will run Clippy on the `example` crate: + +```terminal +cargo clippy -p example +``` + +As with `cargo check`, this includes dependencies that are members of the workspace, like path dependencies. +If you want to run Clippy **only** on the given crate, use the `--no-deps` option like this: + +```terminal +cargo clippy -p example -- --no-deps +``` + +### Using `clippy-driver` + +Clippy can also be used in projects that do not use cargo. To do so, run `clippy-driver` +with the same arguments you use for `rustc`. For example: + +```terminal +clippy-driver --edition 2018 -Cpanic=abort foo.rs +``` + +Note that `clippy-driver` is designed for running Clippy only and should not be used as a general +replacement for `rustc`. `clippy-driver` may produce artifacts that are not optimized as expected, +for example. + +### Travis CI + +You can add Clippy to Travis CI in the same way you use it locally: + +```yaml +language: rust +rust: + - stable + - beta +before_script: + - rustup component add clippy +script: + - cargo clippy + # if you want the build job to fail when encountering warnings, use + - cargo clippy -- -D warnings + # in order to also check tests and non-default crate features, use + - cargo clippy --all-targets --all-features -- -D warnings + - cargo test + # etc. +``` + +Note that adding `-D warnings` will cause your build to fail if **any** warnings are found in your code. +That includes warnings found by rustc (e.g. `dead_code`, etc.). If you want to avoid this and only cause +an error for Clippy warnings, use `#![deny(clippy::all)]` in your code or `-D clippy::all` on the command +line. (You can swap `clippy::all` with the specific lint category you are targeting.) + +## Configuration + +### Allowing/denying lints + +You can add options to your code to `allow`/`warn`/`deny` Clippy lints: + +* the whole set of `Warn` lints using the `clippy` lint group (`#![deny(clippy::all)]`). + Note that `rustc` has additional [lint groups](https://doc.rust-lang.org/rustc/lints/groups.html). + +* all lints using both the `clippy` and `clippy::pedantic` lint groups (`#![deny(clippy::all)]`, + `#![deny(clippy::pedantic)]`). Note that `clippy::pedantic` contains some very aggressive + lints prone to false positives. + +* only some lints (`#![deny(clippy::single_match, clippy::box_vec)]`, etc.) + +* `allow`/`warn`/`deny` can be limited to a single function or module using `#[allow(...)]`, etc. + +Note: `allow` means to suppress the lint for your code. With `warn` the lint +will only emit a warning, while with `deny` the lint will emit an error, when +triggering for your code. An error causes Clippy to exit with an error code, so +is useful in scripts like CI/CD. + +If you do not want to include your lint levels in your code, you can globally +enable/disable lints by passing extra flags to Clippy during the run: + +To allow `lint_name`, run + +```terminal +cargo clippy -- -A clippy::lint_name +``` + +And to warn on `lint_name`, run + +```terminal +cargo clippy -- -W clippy::lint_name +``` + +This also works with lint groups. For example, you +can run Clippy with warnings for all lints enabled: + +```terminal +cargo clippy -- -W clippy::pedantic +``` + +If you care only about a single lint, you can allow all others and then explicitly warn on +the lint(s) you are interested in: + +```terminal +cargo clippy -- -A clippy::all -W clippy::useless_format -W clippy::... +``` + +### Configure the behavior of some lints + +Some lints can be configured in a TOML file named `clippy.toml` or `.clippy.toml`. It contains a basic `variable = +value` mapping e.g. + +```toml +avoid-breaking-exported-api = false +disallowed-names = ["toto", "tata", "titi"] +``` + +The [table of configurations](https://doc.rust-lang.org/nightly/clippy/lint_configuration.html) +contains all config values, their default, and a list of lints they affect. +Each [configurable lint](https://rust-lang.github.io/rust-clippy/master/index.html#Configuration) +, also contains information about these values. + +For configurations that are a list type with default values such as +[disallowed-names](https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_names), +you can use the unique value `".."` to extend the default values instead of replacing them. + +```toml +# default of disallowed-names is ["foo", "baz", "quux"] +disallowed-names = ["bar", ".."] # -> ["bar", "foo", "baz", "quux"] +``` + +> **Note** +> +> `clippy.toml` or `.clippy.toml` cannot be used to allow/deny lints. + +To deactivate the “for further information visit *lint-link*” message you can +define the `CLIPPY_DISABLE_DOCS_LINKS` environment variable. + +### Specifying the minimum supported Rust version + +Projects that intend to support old versions of Rust can disable lints pertaining to newer features by +specifying the minimum supported Rust version (MSRV) in the Clippy configuration file. + +```toml +msrv = "1.30.0" +``` + +Alternatively, the [`rust-version` field](https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field) +in the `Cargo.toml` can be used. + +```toml +# Cargo.toml +rust-version = "1.30" +``` + +The MSRV can also be specified as an attribute, like below. + +```rust,ignore +#![feature(custom_inner_attributes)] +#![clippy::msrv = "1.30.0"] + +fn main() { + ... +} +``` + +You can also omit the patch version when specifying the MSRV, so `msrv = 1.30` +is equivalent to `msrv = 1.30.0`. + +Note: `custom_inner_attributes` is an unstable feature, so it has to be enabled explicitly. + +Lints that recognize this configuration option can be found [here](https://rust-lang.github.io/rust-clippy/master/index.html#msrv) + +## Contributing + +If you want to contribute to Clippy, you can find more information in [CONTRIBUTING.md](https://github.com/rust-lang/rust-clippy/blob/master/CONTRIBUTING.md). + +## License + + + +Copyright (c) The Rust Project Contributors + +Licensed under the Apache License, Version 2.0 or the MIT license +, at your +option. Files in the project may not be +copied, modified, or distributed except according to those terms. + + diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust-analyzer/LICENSE-APACHE b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust-analyzer/LICENSE-APACHE new file mode 100644 index 0000000000000000000000000000000000000000..1b5ec8b78e237b5c3b3d812a7c0a6589d0f7161d --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust-analyzer/LICENSE-APACHE @@ -0,0 +1,176 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust-analyzer/LICENSE-MIT b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust-analyzer/LICENSE-MIT new file mode 100644 index 0000000000000000000000000000000000000000..31aa79387f27e730e33d871925e152e35e428031 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust-analyzer/LICENSE-MIT @@ -0,0 +1,23 @@ +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust-analyzer/README.md b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust-analyzer/README.md new file mode 100644 index 0000000000000000000000000000000000000000..6d2a6732868536d560f3d8a0a1733923f91b2624 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust-analyzer/README.md @@ -0,0 +1,64 @@ +

+ rust-analyzer logo +

+ +rust-analyzer is a language server that provides IDE functionality for +writing Rust programs. You can use it with any editor that supports +the [Language Server +Protocol](https://microsoft.github.io/language-server-protocol/) (VS +Code, Vim, Emacs, Zed, etc). + +rust-analyzer features include go-to-definition, find-all-references, +refactorings and code completion. rust-analyzer also supports +integrated formatting (with rustfmt) and integrated diagnostics (with +rustc and clippy). + +Internally, rust-analyzer is structured as a set of libraries for +analyzing Rust code. See +[Architecture](https://rust-analyzer.github.io/book/contributing/architecture.html) +in the manual. + +## Quick Start + +https://rust-analyzer.github.io/book/installation.html + +## Documentation + +If you want to **contribute** to rust-analyzer check out the [CONTRIBUTING.md](./CONTRIBUTING.md) or +if you are just curious about how things work under the hood, see the +[Contributing](https://rust-analyzer.github.io/book/contributing) section of the manual. + +If you want to **use** rust-analyzer's language server with your editor of +choice, check [the manual](https://rust-analyzer.github.io/book/). +It also contains some tips & tricks to help you be more productive when using rust-analyzer. + +## Security and Privacy + +See the [security](https://rust-analyzer.github.io/book/security.html) and +[privacy](https://rust-analyzer.github.io/book/privacy.html) sections of the manual. + +## Communication + +For usage and troubleshooting requests, please use "IDEs and Editors" category of the Rust forum: + +https://users.rust-lang.org/c/ide/14 + +For questions about development and implementation, join rust-analyzer working group on Zulip: + +https://rust-lang.zulipchat.com/#narrow/stream/185405-t-compiler.2Frust-analyzer + +## Quick Links + +* Website: https://rust-analyzer.github.io/ +* Metrics: https://rust-analyzer.github.io/metrics/ +* API docs: https://rust-lang.github.io/rust-analyzer/ide/ +* Changelog: https://rust-analyzer.github.io/thisweek + +## License + +rust-analyzer is primarily distributed under the terms of both the MIT +license and the Apache License (Version 2.0). + +See [LICENSE-APACHE](LICENSE-APACHE) and [LICENSE-MIT](LICENSE-MIT) for details. diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/COPYRIGHT-library.html b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/COPYRIGHT-library.html new file mode 100644 index 0000000000000000000000000000000000000000..7be6c4bfe3dd71a7c0f938e36c18f29d77df52ca --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/COPYRIGHT-library.html @@ -0,0 +1,8266 @@ + + + + + Copyright notices for The Rust Standard Library + + + +

Copyright notices for The Rust Standard Library

+ +

Table of Contents

+ + +

Short version for non-lawyers

+ +The Rust Standard Library is dual-licensed under Apache 2.0 and MIT terms. + +

Longer version

+ +

Copyrights in the Rust Standard Library are retained by their contributors. No copyright assignment is required to contribute to the Rust project.

+ +

Some files include explicit copyright notices and/or license notices. For full authorship information, see the version control history or https://thanks.rust-lang.org.

+ +

Except as otherwise noted (below and/or in individual files), the Rust Standard Library is licensed under the Apache License, Version 2.0 or the MIT license, at your option.

+ +

This file describes the copyright and licensing information for the source code within The Rust Project git tree related to the Rust Standard Library, and the third-party dependencies used when building the Rust Standard Library.

+ +

In-tree files

+ +

The following licenses cover the in-tree source files that were used in this release:

+ + + + + + +
+ +

+ File/Directory: . +

+ + + +

License: Apache-2.0 OR MIT

+ +

Copyright: The Rust Project Developers (see https://thanks.rust-lang.org)

+ + + + + + +

Exceptions:

+ + + +
+ +

+ File/Directory: library/backtrace +

+ + + +

License: Apache-2.0 OR MIT

+ +

Copyright: 2014 Alex Crichton

+ +

Copyright: The Rust Project Developers (see https://thanks.rust-lang.org)

+ + + + + + +
+ + + + + +
+

+ File/Directory: library/core/src/unicode/unicode_data.rs +

+ +

License: Unicode-3.0

+ +

Copyright: 1991-2024 Unicode, Inc

+ +
+ + + + + +
+ +

+ File/Directory: library/std/src/sync/mpmc +

+ + + +

License: Apache-2.0 OR MIT

+ +

Copyright: 2019 The Crossbeam Project Developers

+ +

Copyright: The Rust Project Developers (see https://thanks.rust-lang.org)

+ + + + + + +
+ + + + + +
+

+ File/Directory: library/std/src/sys/sync/mutex/fuchsia.rs +

+ +

License: BSD-2-Clause AND (Apache-2.0 OR MIT)

+ +

Copyright: 2016 The Fuchsia Authors

+ +

Copyright: The Rust Project Developers (see https://thanks.rust-lang.org)

+ +
+ + + + + + +
+ + + + + + +

Out-of-tree dependencies

+ +

The following licenses cover the out-of-tree crates that were used in the +Rust Standard Library in this release:

+ + +

📦 cc-1.2.0

+

URL: https://crates.io/crates/cc/1.2.0

+

Authors: Alex Crichton <alex@alexcrichton.com>

+

License: MIT OR Apache-2.0

+ + +

Notices: + +

+ LICENSE-APACHE +
+                              Apache License
+                        Version 2.0, January 2004
+                     http://www.apache.org/licenses/
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions.
+
+   "License" shall mean the terms and conditions for use, reproduction,
+   and distribution as defined by Sections 1 through 9 of this document.
+
+   "Licensor" shall mean the copyright owner or entity authorized by
+   the copyright owner that is granting the License.
+
+   "Legal Entity" shall mean the union of the acting entity and all
+   other entities that control, are controlled by, or are under common
+   control with that entity. For the purposes of this definition,
+   "control" means (i) the power, direct or indirect, to cause the
+   direction or management of such entity, whether by contract or
+   otherwise, or (ii) ownership of fifty percent (50%) or more of the
+   outstanding shares, or (iii) beneficial ownership of such entity.
+
+   "You" (or "Your") shall mean an individual or Legal Entity
+   exercising permissions granted by this License.
+
+   "Source" form shall mean the preferred form for making modifications,
+   including but not limited to software source code, documentation
+   source, and configuration files.
+
+   "Object" form shall mean any form resulting from mechanical
+   transformation or translation of a Source form, including but
+   not limited to compiled object code, generated documentation,
+   and conversions to other media types.
+
+   "Work" shall mean the work of authorship, whether in Source or
+   Object form, made available under the License, as indicated by a
+   copyright notice that is included in or attached to the work
+   (an example is provided in the Appendix below).
+
+   "Derivative Works" shall mean any work, whether in Source or Object
+   form, that is based on (or derived from) the Work and for which the
+   editorial revisions, annotations, elaborations, or other modifications
+   represent, as a whole, an original work of authorship. For the purposes
+   of this License, Derivative Works shall not include works that remain
+   separable from, or merely link (or bind by name) to the interfaces of,
+   the Work and Derivative Works thereof.
+
+   "Contribution" shall mean any work of authorship, including
+   the original version of the Work and any modifications or additions
+   to that Work or Derivative Works thereof, that is intentionally
+   submitted to Licensor for inclusion in the Work by the copyright owner
+   or by an individual or Legal Entity authorized to submit on behalf of
+   the copyright owner. For the purposes of this definition, "submitted"
+   means any form of electronic, verbal, or written communication sent
+   to the Licensor or its representatives, including but not limited to
+   communication on electronic mailing lists, source code control systems,
+   and issue tracking systems that are managed by, or on behalf of, the
+   Licensor for the purpose of discussing and improving the Work, but
+   excluding communication that is conspicuously marked or otherwise
+   designated in writing by the copyright owner as "Not a Contribution."
+
+   "Contributor" shall mean Licensor and any individual or Legal Entity
+   on behalf of whom a Contribution has been received by Licensor and
+   subsequently incorporated within the Work.
+
+2. Grant of Copyright License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   copyright license to reproduce, prepare Derivative Works of,
+   publicly display, publicly perform, sublicense, and distribute the
+   Work and such Derivative Works in Source or Object form.
+
+3. Grant of Patent License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   (except as stated in this section) patent license to make, have made,
+   use, offer to sell, sell, import, and otherwise transfer the Work,
+   where such license applies only to those patent claims licensable
+   by such Contributor that are necessarily infringed by their
+   Contribution(s) alone or by combination of their Contribution(s)
+   with the Work to which such Contribution(s) was submitted. If You
+   institute patent litigation against any entity (including a
+   cross-claim or counterclaim in a lawsuit) alleging that the Work
+   or a Contribution incorporated within the Work constitutes direct
+   or contributory patent infringement, then any patent licenses
+   granted to You under this License for that Work shall terminate
+   as of the date such litigation is filed.
+
+4. Redistribution. You may reproduce and distribute copies of the
+   Work or Derivative Works thereof in any medium, with or without
+   modifications, and in Source or Object form, provided that You
+   meet the following conditions:
+
+   (a) You must give any other recipients of the Work or
+       Derivative Works a copy of this License; and
+
+   (b) You must cause any modified files to carry prominent notices
+       stating that You changed the files; and
+
+   (c) You must retain, in the Source form of any Derivative Works
+       that You distribute, all copyright, patent, trademark, and
+       attribution notices from the Source form of the Work,
+       excluding those notices that do not pertain to any part of
+       the Derivative Works; and
+
+   (d) If the Work includes a "NOTICE" text file as part of its
+       distribution, then any Derivative Works that You distribute must
+       include a readable copy of the attribution notices contained
+       within such NOTICE file, excluding those notices that do not
+       pertain to any part of the Derivative Works, in at least one
+       of the following places: within a NOTICE text file distributed
+       as part of the Derivative Works; within the Source form or
+       documentation, if provided along with the Derivative Works; or,
+       within a display generated by the Derivative Works, if and
+       wherever such third-party notices normally appear. The contents
+       of the NOTICE file are for informational purposes only and
+       do not modify the License. You may add Your own attribution
+       notices within Derivative Works that You distribute, alongside
+       or as an addendum to the NOTICE text from the Work, provided
+       that such additional attribution notices cannot be construed
+       as modifying the License.
+
+   You may add Your own copyright statement to Your modifications and
+   may provide additional or different license terms and conditions
+   for use, reproduction, or distribution of Your modifications, or
+   for any such Derivative Works as a whole, provided Your use,
+   reproduction, and distribution of the Work otherwise complies with
+   the conditions stated in this License.
+
+5. Submission of Contributions. Unless You explicitly state otherwise,
+   any Contribution intentionally submitted for inclusion in the Work
+   by You to the Licensor shall be under the terms and conditions of
+   this License, without any additional terms or conditions.
+   Notwithstanding the above, nothing herein shall supersede or modify
+   the terms of any separate license agreement you may have executed
+   with Licensor regarding such Contributions.
+
+6. Trademarks. This License does not grant permission to use the trade
+   names, trademarks, service marks, or product names of the Licensor,
+   except as required for reasonable and customary use in describing the
+   origin of the Work and reproducing the content of the NOTICE file.
+
+7. Disclaimer of Warranty. Unless required by applicable law or
+   agreed to in writing, Licensor provides the Work (and each
+   Contributor provides its Contributions) on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+   implied, including, without limitation, any warranties or conditions
+   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+   PARTICULAR PURPOSE. You are solely responsible for determining the
+   appropriateness of using or redistributing the Work and assume any
+   risks associated with Your exercise of permissions under this License.
+
+8. Limitation of Liability. In no event and under no legal theory,
+   whether in tort (including negligence), contract, or otherwise,
+   unless required by applicable law (such as deliberate and grossly
+   negligent acts) or agreed to in writing, shall any Contributor be
+   liable to You for damages, including any direct, indirect, special,
+   incidental, or consequential damages of any character arising as a
+   result of this License or out of the use or inability to use the
+   Work (including but not limited to damages for loss of goodwill,
+   work stoppage, computer failure or malfunction, or any and all
+   other commercial damages or losses), even if such Contributor
+   has been advised of the possibility of such damages.
+
+9. Accepting Warranty or Additional Liability. While redistributing
+   the Work or Derivative Works thereof, You may choose to offer,
+   and charge a fee for, acceptance of support, warranty, indemnity,
+   or other liability obligations and/or rights consistent with this
+   License. However, in accepting such obligations, You may act only
+   on Your own behalf and on Your sole responsibility, not on behalf
+   of any other Contributor, and only if You agree to indemnify,
+   defend, and hold each Contributor harmless for any liability
+   incurred by, or claims asserted against, such Contributor by reason
+   of your accepting any such warranty or additional liability.
+
+END OF TERMS AND CONDITIONS
+
+APPENDIX: How to apply the Apache License to your work.
+
+   To apply the Apache License to your work, attach the following
+   boilerplate notice, with the fields enclosed by brackets "[]"
+   replaced with your own identifying information. (Don't include
+   the brackets!)  The text should be enclosed in the appropriate
+   comment syntax for the file format. We also recommend that a
+   file or class name and description of purpose be included on the
+   same "printed page" as the copyright notice for easier
+   identification within third-party archives.
+
+Copyright [yyyy] [name of copyright owner]
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+	http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+
+                
+
+ +
+ LICENSE-MIT +
+Copyright (c) 2014 Alex Crichton
+
+Permission is hereby granted, free of charge, to any
+person obtaining a copy of this software and associated
+documentation files (the "Software"), to deal in the
+Software without restriction, including without
+limitation the rights to use, copy, modify, merge,
+publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software
+is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice
+shall be included in all copies or substantial portions
+of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
+TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
+PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
+SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+DEALINGS IN THE SOFTWARE.
+
+                
+
+ +

+ + +

📦 cfg-if-1.0.4

+

URL: https://crates.io/crates/cfg-if/1.0.4

+

Authors: Alex Crichton <alex@alexcrichton.com>

+

License: MIT OR Apache-2.0

+ + +

Notices: + +

+ LICENSE-APACHE +
+                              Apache License
+                        Version 2.0, January 2004
+                     http://www.apache.org/licenses/
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions.
+
+   "License" shall mean the terms and conditions for use, reproduction,
+   and distribution as defined by Sections 1 through 9 of this document.
+
+   "Licensor" shall mean the copyright owner or entity authorized by
+   the copyright owner that is granting the License.
+
+   "Legal Entity" shall mean the union of the acting entity and all
+   other entities that control, are controlled by, or are under common
+   control with that entity. For the purposes of this definition,
+   "control" means (i) the power, direct or indirect, to cause the
+   direction or management of such entity, whether by contract or
+   otherwise, or (ii) ownership of fifty percent (50%) or more of the
+   outstanding shares, or (iii) beneficial ownership of such entity.
+
+   "You" (or "Your") shall mean an individual or Legal Entity
+   exercising permissions granted by this License.
+
+   "Source" form shall mean the preferred form for making modifications,
+   including but not limited to software source code, documentation
+   source, and configuration files.
+
+   "Object" form shall mean any form resulting from mechanical
+   transformation or translation of a Source form, including but
+   not limited to compiled object code, generated documentation,
+   and conversions to other media types.
+
+   "Work" shall mean the work of authorship, whether in Source or
+   Object form, made available under the License, as indicated by a
+   copyright notice that is included in or attached to the work
+   (an example is provided in the Appendix below).
+
+   "Derivative Works" shall mean any work, whether in Source or Object
+   form, that is based on (or derived from) the Work and for which the
+   editorial revisions, annotations, elaborations, or other modifications
+   represent, as a whole, an original work of authorship. For the purposes
+   of this License, Derivative Works shall not include works that remain
+   separable from, or merely link (or bind by name) to the interfaces of,
+   the Work and Derivative Works thereof.
+
+   "Contribution" shall mean any work of authorship, including
+   the original version of the Work and any modifications or additions
+   to that Work or Derivative Works thereof, that is intentionally
+   submitted to Licensor for inclusion in the Work by the copyright owner
+   or by an individual or Legal Entity authorized to submit on behalf of
+   the copyright owner. For the purposes of this definition, "submitted"
+   means any form of electronic, verbal, or written communication sent
+   to the Licensor or its representatives, including but not limited to
+   communication on electronic mailing lists, source code control systems,
+   and issue tracking systems that are managed by, or on behalf of, the
+   Licensor for the purpose of discussing and improving the Work, but
+   excluding communication that is conspicuously marked or otherwise
+   designated in writing by the copyright owner as "Not a Contribution."
+
+   "Contributor" shall mean Licensor and any individual or Legal Entity
+   on behalf of whom a Contribution has been received by Licensor and
+   subsequently incorporated within the Work.
+
+2. Grant of Copyright License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   copyright license to reproduce, prepare Derivative Works of,
+   publicly display, publicly perform, sublicense, and distribute the
+   Work and such Derivative Works in Source or Object form.
+
+3. Grant of Patent License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   (except as stated in this section) patent license to make, have made,
+   use, offer to sell, sell, import, and otherwise transfer the Work,
+   where such license applies only to those patent claims licensable
+   by such Contributor that are necessarily infringed by their
+   Contribution(s) alone or by combination of their Contribution(s)
+   with the Work to which such Contribution(s) was submitted. If You
+   institute patent litigation against any entity (including a
+   cross-claim or counterclaim in a lawsuit) alleging that the Work
+   or a Contribution incorporated within the Work constitutes direct
+   or contributory patent infringement, then any patent licenses
+   granted to You under this License for that Work shall terminate
+   as of the date such litigation is filed.
+
+4. Redistribution. You may reproduce and distribute copies of the
+   Work or Derivative Works thereof in any medium, with or without
+   modifications, and in Source or Object form, provided that You
+   meet the following conditions:
+
+   (a) You must give any other recipients of the Work or
+       Derivative Works a copy of this License; and
+
+   (b) You must cause any modified files to carry prominent notices
+       stating that You changed the files; and
+
+   (c) You must retain, in the Source form of any Derivative Works
+       that You distribute, all copyright, patent, trademark, and
+       attribution notices from the Source form of the Work,
+       excluding those notices that do not pertain to any part of
+       the Derivative Works; and
+
+   (d) If the Work includes a "NOTICE" text file as part of its
+       distribution, then any Derivative Works that You distribute must
+       include a readable copy of the attribution notices contained
+       within such NOTICE file, excluding those notices that do not
+       pertain to any part of the Derivative Works, in at least one
+       of the following places: within a NOTICE text file distributed
+       as part of the Derivative Works; within the Source form or
+       documentation, if provided along with the Derivative Works; or,
+       within a display generated by the Derivative Works, if and
+       wherever such third-party notices normally appear. The contents
+       of the NOTICE file are for informational purposes only and
+       do not modify the License. You may add Your own attribution
+       notices within Derivative Works that You distribute, alongside
+       or as an addendum to the NOTICE text from the Work, provided
+       that such additional attribution notices cannot be construed
+       as modifying the License.
+
+   You may add Your own copyright statement to Your modifications and
+   may provide additional or different license terms and conditions
+   for use, reproduction, or distribution of Your modifications, or
+   for any such Derivative Works as a whole, provided Your use,
+   reproduction, and distribution of the Work otherwise complies with
+   the conditions stated in this License.
+
+5. Submission of Contributions. Unless You explicitly state otherwise,
+   any Contribution intentionally submitted for inclusion in the Work
+   by You to the Licensor shall be under the terms and conditions of
+   this License, without any additional terms or conditions.
+   Notwithstanding the above, nothing herein shall supersede or modify
+   the terms of any separate license agreement you may have executed
+   with Licensor regarding such Contributions.
+
+6. Trademarks. This License does not grant permission to use the trade
+   names, trademarks, service marks, or product names of the Licensor,
+   except as required for reasonable and customary use in describing the
+   origin of the Work and reproducing the content of the NOTICE file.
+
+7. Disclaimer of Warranty. Unless required by applicable law or
+   agreed to in writing, Licensor provides the Work (and each
+   Contributor provides its Contributions) on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+   implied, including, without limitation, any warranties or conditions
+   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+   PARTICULAR PURPOSE. You are solely responsible for determining the
+   appropriateness of using or redistributing the Work and assume any
+   risks associated with Your exercise of permissions under this License.
+
+8. Limitation of Liability. In no event and under no legal theory,
+   whether in tort (including negligence), contract, or otherwise,
+   unless required by applicable law (such as deliberate and grossly
+   negligent acts) or agreed to in writing, shall any Contributor be
+   liable to You for damages, including any direct, indirect, special,
+   incidental, or consequential damages of any character arising as a
+   result of this License or out of the use or inability to use the
+   Work (including but not limited to damages for loss of goodwill,
+   work stoppage, computer failure or malfunction, or any and all
+   other commercial damages or losses), even if such Contributor
+   has been advised of the possibility of such damages.
+
+9. Accepting Warranty or Additional Liability. While redistributing
+   the Work or Derivative Works thereof, You may choose to offer,
+   and charge a fee for, acceptance of support, warranty, indemnity,
+   or other liability obligations and/or rights consistent with this
+   License. However, in accepting such obligations, You may act only
+   on Your own behalf and on Your sole responsibility, not on behalf
+   of any other Contributor, and only if You agree to indemnify,
+   defend, and hold each Contributor harmless for any liability
+   incurred by, or claims asserted against, such Contributor by reason
+   of your accepting any such warranty or additional liability.
+
+END OF TERMS AND CONDITIONS
+
+APPENDIX: How to apply the Apache License to your work.
+
+   To apply the Apache License to your work, attach the following
+   boilerplate notice, with the fields enclosed by brackets "[]"
+   replaced with your own identifying information. (Don't include
+   the brackets!)  The text should be enclosed in the appropriate
+   comment syntax for the file format. We also recommend that a
+   file or class name and description of purpose be included on the
+   same "printed page" as the copyright notice for easier
+   identification within third-party archives.
+
+Copyright [yyyy] [name of copyright owner]
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+	http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+
+                
+
+ +
+ LICENSE-MIT +
+Copyright (c) 2014 Alex Crichton
+
+Permission is hereby granted, free of charge, to any
+person obtaining a copy of this software and associated
+documentation files (the "Software"), to deal in the
+Software without restriction, including without
+limitation the rights to use, copy, modify, merge,
+publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software
+is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice
+shall be included in all copies or substantial portions
+of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
+TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
+PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
+SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+DEALINGS IN THE SOFTWARE.
+
+                
+
+ +

+ + +

📦 dlmalloc-0.2.11

+

URL: https://crates.io/crates/dlmalloc/0.2.11

+

Authors: Alex Crichton <alex@alexcrichton.com>

+

License: MIT/Apache-2.0

+ + +

Notices: + +

+ LICENSE-APACHE +
+                              Apache License
+                        Version 2.0, January 2004
+                     http://www.apache.org/licenses/
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions.
+
+   "License" shall mean the terms and conditions for use, reproduction,
+   and distribution as defined by Sections 1 through 9 of this document.
+
+   "Licensor" shall mean the copyright owner or entity authorized by
+   the copyright owner that is granting the License.
+
+   "Legal Entity" shall mean the union of the acting entity and all
+   other entities that control, are controlled by, or are under common
+   control with that entity. For the purposes of this definition,
+   "control" means (i) the power, direct or indirect, to cause the
+   direction or management of such entity, whether by contract or
+   otherwise, or (ii) ownership of fifty percent (50%) or more of the
+   outstanding shares, or (iii) beneficial ownership of such entity.
+
+   "You" (or "Your") shall mean an individual or Legal Entity
+   exercising permissions granted by this License.
+
+   "Source" form shall mean the preferred form for making modifications,
+   including but not limited to software source code, documentation
+   source, and configuration files.
+
+   "Object" form shall mean any form resulting from mechanical
+   transformation or translation of a Source form, including but
+   not limited to compiled object code, generated documentation,
+   and conversions to other media types.
+
+   "Work" shall mean the work of authorship, whether in Source or
+   Object form, made available under the License, as indicated by a
+   copyright notice that is included in or attached to the work
+   (an example is provided in the Appendix below).
+
+   "Derivative Works" shall mean any work, whether in Source or Object
+   form, that is based on (or derived from) the Work and for which the
+   editorial revisions, annotations, elaborations, or other modifications
+   represent, as a whole, an original work of authorship. For the purposes
+   of this License, Derivative Works shall not include works that remain
+   separable from, or merely link (or bind by name) to the interfaces of,
+   the Work and Derivative Works thereof.
+
+   "Contribution" shall mean any work of authorship, including
+   the original version of the Work and any modifications or additions
+   to that Work or Derivative Works thereof, that is intentionally
+   submitted to Licensor for inclusion in the Work by the copyright owner
+   or by an individual or Legal Entity authorized to submit on behalf of
+   the copyright owner. For the purposes of this definition, "submitted"
+   means any form of electronic, verbal, or written communication sent
+   to the Licensor or its representatives, including but not limited to
+   communication on electronic mailing lists, source code control systems,
+   and issue tracking systems that are managed by, or on behalf of, the
+   Licensor for the purpose of discussing and improving the Work, but
+   excluding communication that is conspicuously marked or otherwise
+   designated in writing by the copyright owner as "Not a Contribution."
+
+   "Contributor" shall mean Licensor and any individual or Legal Entity
+   on behalf of whom a Contribution has been received by Licensor and
+   subsequently incorporated within the Work.
+
+2. Grant of Copyright License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   copyright license to reproduce, prepare Derivative Works of,
+   publicly display, publicly perform, sublicense, and distribute the
+   Work and such Derivative Works in Source or Object form.
+
+3. Grant of Patent License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   (except as stated in this section) patent license to make, have made,
+   use, offer to sell, sell, import, and otherwise transfer the Work,
+   where such license applies only to those patent claims licensable
+   by such Contributor that are necessarily infringed by their
+   Contribution(s) alone or by combination of their Contribution(s)
+   with the Work to which such Contribution(s) was submitted. If You
+   institute patent litigation against any entity (including a
+   cross-claim or counterclaim in a lawsuit) alleging that the Work
+   or a Contribution incorporated within the Work constitutes direct
+   or contributory patent infringement, then any patent licenses
+   granted to You under this License for that Work shall terminate
+   as of the date such litigation is filed.
+
+4. Redistribution. You may reproduce and distribute copies of the
+   Work or Derivative Works thereof in any medium, with or without
+   modifications, and in Source or Object form, provided that You
+   meet the following conditions:
+
+   (a) You must give any other recipients of the Work or
+       Derivative Works a copy of this License; and
+
+   (b) You must cause any modified files to carry prominent notices
+       stating that You changed the files; and
+
+   (c) You must retain, in the Source form of any Derivative Works
+       that You distribute, all copyright, patent, trademark, and
+       attribution notices from the Source form of the Work,
+       excluding those notices that do not pertain to any part of
+       the Derivative Works; and
+
+   (d) If the Work includes a "NOTICE" text file as part of its
+       distribution, then any Derivative Works that You distribute must
+       include a readable copy of the attribution notices contained
+       within such NOTICE file, excluding those notices that do not
+       pertain to any part of the Derivative Works, in at least one
+       of the following places: within a NOTICE text file distributed
+       as part of the Derivative Works; within the Source form or
+       documentation, if provided along with the Derivative Works; or,
+       within a display generated by the Derivative Works, if and
+       wherever such third-party notices normally appear. The contents
+       of the NOTICE file are for informational purposes only and
+       do not modify the License. You may add Your own attribution
+       notices within Derivative Works that You distribute, alongside
+       or as an addendum to the NOTICE text from the Work, provided
+       that such additional attribution notices cannot be construed
+       as modifying the License.
+
+   You may add Your own copyright statement to Your modifications and
+   may provide additional or different license terms and conditions
+   for use, reproduction, or distribution of Your modifications, or
+   for any such Derivative Works as a whole, provided Your use,
+   reproduction, and distribution of the Work otherwise complies with
+   the conditions stated in this License.
+
+5. Submission of Contributions. Unless You explicitly state otherwise,
+   any Contribution intentionally submitted for inclusion in the Work
+   by You to the Licensor shall be under the terms and conditions of
+   this License, without any additional terms or conditions.
+   Notwithstanding the above, nothing herein shall supersede or modify
+   the terms of any separate license agreement you may have executed
+   with Licensor regarding such Contributions.
+
+6. Trademarks. This License does not grant permission to use the trade
+   names, trademarks, service marks, or product names of the Licensor,
+   except as required for reasonable and customary use in describing the
+   origin of the Work and reproducing the content of the NOTICE file.
+
+7. Disclaimer of Warranty. Unless required by applicable law or
+   agreed to in writing, Licensor provides the Work (and each
+   Contributor provides its Contributions) on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+   implied, including, without limitation, any warranties or conditions
+   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+   PARTICULAR PURPOSE. You are solely responsible for determining the
+   appropriateness of using or redistributing the Work and assume any
+   risks associated with Your exercise of permissions under this License.
+
+8. Limitation of Liability. In no event and under no legal theory,
+   whether in tort (including negligence), contract, or otherwise,
+   unless required by applicable law (such as deliberate and grossly
+   negligent acts) or agreed to in writing, shall any Contributor be
+   liable to You for damages, including any direct, indirect, special,
+   incidental, or consequential damages of any character arising as a
+   result of this License or out of the use or inability to use the
+   Work (including but not limited to damages for loss of goodwill,
+   work stoppage, computer failure or malfunction, or any and all
+   other commercial damages or losses), even if such Contributor
+   has been advised of the possibility of such damages.
+
+9. Accepting Warranty or Additional Liability. While redistributing
+   the Work or Derivative Works thereof, You may choose to offer,
+   and charge a fee for, acceptance of support, warranty, indemnity,
+   or other liability obligations and/or rights consistent with this
+   License. However, in accepting such obligations, You may act only
+   on Your own behalf and on Your sole responsibility, not on behalf
+   of any other Contributor, and only if You agree to indemnify,
+   defend, and hold each Contributor harmless for any liability
+   incurred by, or claims asserted against, such Contributor by reason
+   of your accepting any such warranty or additional liability.
+
+END OF TERMS AND CONDITIONS
+
+APPENDIX: How to apply the Apache License to your work.
+
+   To apply the Apache License to your work, attach the following
+   boilerplate notice, with the fields enclosed by brackets "[]"
+   replaced with your own identifying information. (Don't include
+   the brackets!)  The text should be enclosed in the appropriate
+   comment syntax for the file format. We also recommend that a
+   file or class name and description of purpose be included on the
+   same "printed page" as the copyright notice for easier
+   identification within third-party archives.
+
+Copyright [yyyy] [name of copyright owner]
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+	http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+
+                
+
+ +
+ LICENSE-MIT +
+Copyright (c) 2014 Alex Crichton
+
+Permission is hereby granted, free of charge, to any
+person obtaining a copy of this software and associated
+documentation files (the "Software"), to deal in the
+Software without restriction, including without
+limitation the rights to use, copy, modify, merge,
+publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software
+is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice
+shall be included in all copies or substantial portions
+of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
+TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
+PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
+SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+DEALINGS IN THE SOFTWARE.
+
+                
+
+ +

+ + +

📦 foldhash-0.2.0

+

URL: https://crates.io/crates/foldhash/0.2.0

+

Authors: Orson Peters <orsonpeters@gmail.com>

+

License: Zlib

+ + +

Notices: + +

+ LICENSE +
+Copyright (c) 2024 Orson Peters
+
+This software is provided 'as-is', without any express or implied warranty. In
+no event will the authors be held liable for any damages arising from the use of
+this software.
+
+Permission is granted to anyone to use this software for any purpose, including
+commercial applications, and to alter it and redistribute it freely, subject to
+the following restrictions:
+
+1. The origin of this software must not be misrepresented; you must not claim
+    that you wrote the original software. If you use this software in a product,
+    an acknowledgment in the product documentation would be appreciated but is
+    not required.
+
+2. Altered source versions must be plainly marked as such, and must not be
+    misrepresented as being the original software.
+
+3. This notice may not be removed or altered from any source distribution.
+                
+
+ +

+ + +

📦 fortanix-sgx-abi-0.6.1

+

URL: https://crates.io/crates/fortanix-sgx-abi/0.6.1

+

Authors: Fortanix, Inc.

+

License: MPL-2.0

+ + + +

📦 getopts-0.2.24

+

URL: https://crates.io/crates/getopts/0.2.24

+

Authors: The Rust Project Developers

+

License: MIT OR Apache-2.0

+ + +

Notices: + +

+ LICENSE-APACHE +
+                              Apache License
+                        Version 2.0, January 2004
+                     http://www.apache.org/licenses/
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions.
+
+   "License" shall mean the terms and conditions for use, reproduction,
+   and distribution as defined by Sections 1 through 9 of this document.
+
+   "Licensor" shall mean the copyright owner or entity authorized by
+   the copyright owner that is granting the License.
+
+   "Legal Entity" shall mean the union of the acting entity and all
+   other entities that control, are controlled by, or are under common
+   control with that entity. For the purposes of this definition,
+   "control" means (i) the power, direct or indirect, to cause the
+   direction or management of such entity, whether by contract or
+   otherwise, or (ii) ownership of fifty percent (50%) or more of the
+   outstanding shares, or (iii) beneficial ownership of such entity.
+
+   "You" (or "Your") shall mean an individual or Legal Entity
+   exercising permissions granted by this License.
+
+   "Source" form shall mean the preferred form for making modifications,
+   including but not limited to software source code, documentation
+   source, and configuration files.
+
+   "Object" form shall mean any form resulting from mechanical
+   transformation or translation of a Source form, including but
+   not limited to compiled object code, generated documentation,
+   and conversions to other media types.
+
+   "Work" shall mean the work of authorship, whether in Source or
+   Object form, made available under the License, as indicated by a
+   copyright notice that is included in or attached to the work
+   (an example is provided in the Appendix below).
+
+   "Derivative Works" shall mean any work, whether in Source or Object
+   form, that is based on (or derived from) the Work and for which the
+   editorial revisions, annotations, elaborations, or other modifications
+   represent, as a whole, an original work of authorship. For the purposes
+   of this License, Derivative Works shall not include works that remain
+   separable from, or merely link (or bind by name) to the interfaces of,
+   the Work and Derivative Works thereof.
+
+   "Contribution" shall mean any work of authorship, including
+   the original version of the Work and any modifications or additions
+   to that Work or Derivative Works thereof, that is intentionally
+   submitted to Licensor for inclusion in the Work by the copyright owner
+   or by an individual or Legal Entity authorized to submit on behalf of
+   the copyright owner. For the purposes of this definition, "submitted"
+   means any form of electronic, verbal, or written communication sent
+   to the Licensor or its representatives, including but not limited to
+   communication on electronic mailing lists, source code control systems,
+   and issue tracking systems that are managed by, or on behalf of, the
+   Licensor for the purpose of discussing and improving the Work, but
+   excluding communication that is conspicuously marked or otherwise
+   designated in writing by the copyright owner as "Not a Contribution."
+
+   "Contributor" shall mean Licensor and any individual or Legal Entity
+   on behalf of whom a Contribution has been received by Licensor and
+   subsequently incorporated within the Work.
+
+2. Grant of Copyright License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   copyright license to reproduce, prepare Derivative Works of,
+   publicly display, publicly perform, sublicense, and distribute the
+   Work and such Derivative Works in Source or Object form.
+
+3. Grant of Patent License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   (except as stated in this section) patent license to make, have made,
+   use, offer to sell, sell, import, and otherwise transfer the Work,
+   where such license applies only to those patent claims licensable
+   by such Contributor that are necessarily infringed by their
+   Contribution(s) alone or by combination of their Contribution(s)
+   with the Work to which such Contribution(s) was submitted. If You
+   institute patent litigation against any entity (including a
+   cross-claim or counterclaim in a lawsuit) alleging that the Work
+   or a Contribution incorporated within the Work constitutes direct
+   or contributory patent infringement, then any patent licenses
+   granted to You under this License for that Work shall terminate
+   as of the date such litigation is filed.
+
+4. Redistribution. You may reproduce and distribute copies of the
+   Work or Derivative Works thereof in any medium, with or without
+   modifications, and in Source or Object form, provided that You
+   meet the following conditions:
+
+   (a) You must give any other recipients of the Work or
+       Derivative Works a copy of this License; and
+
+   (b) You must cause any modified files to carry prominent notices
+       stating that You changed the files; and
+
+   (c) You must retain, in the Source form of any Derivative Works
+       that You distribute, all copyright, patent, trademark, and
+       attribution notices from the Source form of the Work,
+       excluding those notices that do not pertain to any part of
+       the Derivative Works; and
+
+   (d) If the Work includes a "NOTICE" text file as part of its
+       distribution, then any Derivative Works that You distribute must
+       include a readable copy of the attribution notices contained
+       within such NOTICE file, excluding those notices that do not
+       pertain to any part of the Derivative Works, in at least one
+       of the following places: within a NOTICE text file distributed
+       as part of the Derivative Works; within the Source form or
+       documentation, if provided along with the Derivative Works; or,
+       within a display generated by the Derivative Works, if and
+       wherever such third-party notices normally appear. The contents
+       of the NOTICE file are for informational purposes only and
+       do not modify the License. You may add Your own attribution
+       notices within Derivative Works that You distribute, alongside
+       or as an addendum to the NOTICE text from the Work, provided
+       that such additional attribution notices cannot be construed
+       as modifying the License.
+
+   You may add Your own copyright statement to Your modifications and
+   may provide additional or different license terms and conditions
+   for use, reproduction, or distribution of Your modifications, or
+   for any such Derivative Works as a whole, provided Your use,
+   reproduction, and distribution of the Work otherwise complies with
+   the conditions stated in this License.
+
+5. Submission of Contributions. Unless You explicitly state otherwise,
+   any Contribution intentionally submitted for inclusion in the Work
+   by You to the Licensor shall be under the terms and conditions of
+   this License, without any additional terms or conditions.
+   Notwithstanding the above, nothing herein shall supersede or modify
+   the terms of any separate license agreement you may have executed
+   with Licensor regarding such Contributions.
+
+6. Trademarks. This License does not grant permission to use the trade
+   names, trademarks, service marks, or product names of the Licensor,
+   except as required for reasonable and customary use in describing the
+   origin of the Work and reproducing the content of the NOTICE file.
+
+7. Disclaimer of Warranty. Unless required by applicable law or
+   agreed to in writing, Licensor provides the Work (and each
+   Contributor provides its Contributions) on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+   implied, including, without limitation, any warranties or conditions
+   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+   PARTICULAR PURPOSE. You are solely responsible for determining the
+   appropriateness of using or redistributing the Work and assume any
+   risks associated with Your exercise of permissions under this License.
+
+8. Limitation of Liability. In no event and under no legal theory,
+   whether in tort (including negligence), contract, or otherwise,
+   unless required by applicable law (such as deliberate and grossly
+   negligent acts) or agreed to in writing, shall any Contributor be
+   liable to You for damages, including any direct, indirect, special,
+   incidental, or consequential damages of any character arising as a
+   result of this License or out of the use or inability to use the
+   Work (including but not limited to damages for loss of goodwill,
+   work stoppage, computer failure or malfunction, or any and all
+   other commercial damages or losses), even if such Contributor
+   has been advised of the possibility of such damages.
+
+9. Accepting Warranty or Additional Liability. While redistributing
+   the Work or Derivative Works thereof, You may choose to offer,
+   and charge a fee for, acceptance of support, warranty, indemnity,
+   or other liability obligations and/or rights consistent with this
+   License. However, in accepting such obligations, You may act only
+   on Your own behalf and on Your sole responsibility, not on behalf
+   of any other Contributor, and only if You agree to indemnify,
+   defend, and hold each Contributor harmless for any liability
+   incurred by, or claims asserted against, such Contributor by reason
+   of your accepting any such warranty or additional liability.
+
+END OF TERMS AND CONDITIONS
+
+APPENDIX: How to apply the Apache License to your work.
+
+   To apply the Apache License to your work, attach the following
+   boilerplate notice, with the fields enclosed by brackets "[]"
+   replaced with your own identifying information. (Don't include
+   the brackets!)  The text should be enclosed in the appropriate
+   comment syntax for the file format. We also recommend that a
+   file or class name and description of purpose be included on the
+   same "printed page" as the copyright notice for easier
+   identification within third-party archives.
+
+Copyright [yyyy] [name of copyright owner]
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+	http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+
+                
+
+ +
+ LICENSE-MIT +
+Copyright (c) 2014 The Rust Project Developers
+
+Permission is hereby granted, free of charge, to any
+person obtaining a copy of this software and associated
+documentation files (the "Software"), to deal in the
+Software without restriction, including without
+limitation the rights to use, copy, modify, merge,
+publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software
+is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice
+shall be included in all copies or substantial portions
+of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
+TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
+PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
+SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+DEALINGS IN THE SOFTWARE.
+
+                
+
+ +

+ + +

📦 gimli-0.32.3

+

URL: https://crates.io/crates/gimli/0.32.3

+

Authors:

+

License: MIT OR Apache-2.0

+ + +

Notices: + +

+ LICENSE-APACHE +
+                              Apache License
+                        Version 2.0, January 2004
+                     http://www.apache.org/licenses/
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions.
+
+   "License" shall mean the terms and conditions for use, reproduction,
+   and distribution as defined by Sections 1 through 9 of this document.
+
+   "Licensor" shall mean the copyright owner or entity authorized by
+   the copyright owner that is granting the License.
+
+   "Legal Entity" shall mean the union of the acting entity and all
+   other entities that control, are controlled by, or are under common
+   control with that entity. For the purposes of this definition,
+   "control" means (i) the power, direct or indirect, to cause the
+   direction or management of such entity, whether by contract or
+   otherwise, or (ii) ownership of fifty percent (50%) or more of the
+   outstanding shares, or (iii) beneficial ownership of such entity.
+
+   "You" (or "Your") shall mean an individual or Legal Entity
+   exercising permissions granted by this License.
+
+   "Source" form shall mean the preferred form for making modifications,
+   including but not limited to software source code, documentation
+   source, and configuration files.
+
+   "Object" form shall mean any form resulting from mechanical
+   transformation or translation of a Source form, including but
+   not limited to compiled object code, generated documentation,
+   and conversions to other media types.
+
+   "Work" shall mean the work of authorship, whether in Source or
+   Object form, made available under the License, as indicated by a
+   copyright notice that is included in or attached to the work
+   (an example is provided in the Appendix below).
+
+   "Derivative Works" shall mean any work, whether in Source or Object
+   form, that is based on (or derived from) the Work and for which the
+   editorial revisions, annotations, elaborations, or other modifications
+   represent, as a whole, an original work of authorship. For the purposes
+   of this License, Derivative Works shall not include works that remain
+   separable from, or merely link (or bind by name) to the interfaces of,
+   the Work and Derivative Works thereof.
+
+   "Contribution" shall mean any work of authorship, including
+   the original version of the Work and any modifications or additions
+   to that Work or Derivative Works thereof, that is intentionally
+   submitted to Licensor for inclusion in the Work by the copyright owner
+   or by an individual or Legal Entity authorized to submit on behalf of
+   the copyright owner. For the purposes of this definition, "submitted"
+   means any form of electronic, verbal, or written communication sent
+   to the Licensor or its representatives, including but not limited to
+   communication on electronic mailing lists, source code control systems,
+   and issue tracking systems that are managed by, or on behalf of, the
+   Licensor for the purpose of discussing and improving the Work, but
+   excluding communication that is conspicuously marked or otherwise
+   designated in writing by the copyright owner as "Not a Contribution."
+
+   "Contributor" shall mean Licensor and any individual or Legal Entity
+   on behalf of whom a Contribution has been received by Licensor and
+   subsequently incorporated within the Work.
+
+2. Grant of Copyright License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   copyright license to reproduce, prepare Derivative Works of,
+   publicly display, publicly perform, sublicense, and distribute the
+   Work and such Derivative Works in Source or Object form.
+
+3. Grant of Patent License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   (except as stated in this section) patent license to make, have made,
+   use, offer to sell, sell, import, and otherwise transfer the Work,
+   where such license applies only to those patent claims licensable
+   by such Contributor that are necessarily infringed by their
+   Contribution(s) alone or by combination of their Contribution(s)
+   with the Work to which such Contribution(s) was submitted. If You
+   institute patent litigation against any entity (including a
+   cross-claim or counterclaim in a lawsuit) alleging that the Work
+   or a Contribution incorporated within the Work constitutes direct
+   or contributory patent infringement, then any patent licenses
+   granted to You under this License for that Work shall terminate
+   as of the date such litigation is filed.
+
+4. Redistribution. You may reproduce and distribute copies of the
+   Work or Derivative Works thereof in any medium, with or without
+   modifications, and in Source or Object form, provided that You
+   meet the following conditions:
+
+   (a) You must give any other recipients of the Work or
+       Derivative Works a copy of this License; and
+
+   (b) You must cause any modified files to carry prominent notices
+       stating that You changed the files; and
+
+   (c) You must retain, in the Source form of any Derivative Works
+       that You distribute, all copyright, patent, trademark, and
+       attribution notices from the Source form of the Work,
+       excluding those notices that do not pertain to any part of
+       the Derivative Works; and
+
+   (d) If the Work includes a "NOTICE" text file as part of its
+       distribution, then any Derivative Works that You distribute must
+       include a readable copy of the attribution notices contained
+       within such NOTICE file, excluding those notices that do not
+       pertain to any part of the Derivative Works, in at least one
+       of the following places: within a NOTICE text file distributed
+       as part of the Derivative Works; within the Source form or
+       documentation, if provided along with the Derivative Works; or,
+       within a display generated by the Derivative Works, if and
+       wherever such third-party notices normally appear. The contents
+       of the NOTICE file are for informational purposes only and
+       do not modify the License. You may add Your own attribution
+       notices within Derivative Works that You distribute, alongside
+       or as an addendum to the NOTICE text from the Work, provided
+       that such additional attribution notices cannot be construed
+       as modifying the License.
+
+   You may add Your own copyright statement to Your modifications and
+   may provide additional or different license terms and conditions
+   for use, reproduction, or distribution of Your modifications, or
+   for any such Derivative Works as a whole, provided Your use,
+   reproduction, and distribution of the Work otherwise complies with
+   the conditions stated in this License.
+
+5. Submission of Contributions. Unless You explicitly state otherwise,
+   any Contribution intentionally submitted for inclusion in the Work
+   by You to the Licensor shall be under the terms and conditions of
+   this License, without any additional terms or conditions.
+   Notwithstanding the above, nothing herein shall supersede or modify
+   the terms of any separate license agreement you may have executed
+   with Licensor regarding such Contributions.
+
+6. Trademarks. This License does not grant permission to use the trade
+   names, trademarks, service marks, or product names of the Licensor,
+   except as required for reasonable and customary use in describing the
+   origin of the Work and reproducing the content of the NOTICE file.
+
+7. Disclaimer of Warranty. Unless required by applicable law or
+   agreed to in writing, Licensor provides the Work (and each
+   Contributor provides its Contributions) on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+   implied, including, without limitation, any warranties or conditions
+   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+   PARTICULAR PURPOSE. You are solely responsible for determining the
+   appropriateness of using or redistributing the Work and assume any
+   risks associated with Your exercise of permissions under this License.
+
+8. Limitation of Liability. In no event and under no legal theory,
+   whether in tort (including negligence), contract, or otherwise,
+   unless required by applicable law (such as deliberate and grossly
+   negligent acts) or agreed to in writing, shall any Contributor be
+   liable to You for damages, including any direct, indirect, special,
+   incidental, or consequential damages of any character arising as a
+   result of this License or out of the use or inability to use the
+   Work (including but not limited to damages for loss of goodwill,
+   work stoppage, computer failure or malfunction, or any and all
+   other commercial damages or losses), even if such Contributor
+   has been advised of the possibility of such damages.
+
+9. Accepting Warranty or Additional Liability. While redistributing
+   the Work or Derivative Works thereof, You may choose to offer,
+   and charge a fee for, acceptance of support, warranty, indemnity,
+   or other liability obligations and/or rights consistent with this
+   License. However, in accepting such obligations, You may act only
+   on Your own behalf and on Your sole responsibility, not on behalf
+   of any other Contributor, and only if You agree to indemnify,
+   defend, and hold each Contributor harmless for any liability
+   incurred by, or claims asserted against, such Contributor by reason
+   of your accepting any such warranty or additional liability.
+
+END OF TERMS AND CONDITIONS
+
+APPENDIX: How to apply the Apache License to your work.
+
+   To apply the Apache License to your work, attach the following
+   boilerplate notice, with the fields enclosed by brackets "[]"
+   replaced with your own identifying information. (Don't include
+   the brackets!)  The text should be enclosed in the appropriate
+   comment syntax for the file format. We also recommend that a
+   file or class name and description of purpose be included on the
+   same "printed page" as the copyright notice for easier
+   identification within third-party archives.
+
+Copyright [yyyy] [name of copyright owner]
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+	http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+
+                
+
+ +
+ LICENSE-MIT +
+Copyright (c) 2015 The Rust Project Developers
+
+Permission is hereby granted, free of charge, to any
+person obtaining a copy of this software and associated
+documentation files (the "Software"), to deal in the
+Software without restriction, including without
+limitation the rights to use, copy, modify, merge,
+publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software
+is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice
+shall be included in all copies or substantial portions
+of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
+TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
+PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
+SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+DEALINGS IN THE SOFTWARE.
+
+                
+
+ +

+ + +

📦 hashbrown-0.16.1

+

URL: https://crates.io/crates/hashbrown/0.16.1

+

Authors: Amanieu d'Antras <amanieu@gmail.com>

+

License: MIT OR Apache-2.0

+ + +

Notices: + +

+ LICENSE-APACHE +
+                              Apache License
+                        Version 2.0, January 2004
+                     http://www.apache.org/licenses/
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions.
+
+   "License" shall mean the terms and conditions for use, reproduction,
+   and distribution as defined by Sections 1 through 9 of this document.
+
+   "Licensor" shall mean the copyright owner or entity authorized by
+   the copyright owner that is granting the License.
+
+   "Legal Entity" shall mean the union of the acting entity and all
+   other entities that control, are controlled by, or are under common
+   control with that entity. For the purposes of this definition,
+   "control" means (i) the power, direct or indirect, to cause the
+   direction or management of such entity, whether by contract or
+   otherwise, or (ii) ownership of fifty percent (50%) or more of the
+   outstanding shares, or (iii) beneficial ownership of such entity.
+
+   "You" (or "Your") shall mean an individual or Legal Entity
+   exercising permissions granted by this License.
+
+   "Source" form shall mean the preferred form for making modifications,
+   including but not limited to software source code, documentation
+   source, and configuration files.
+
+   "Object" form shall mean any form resulting from mechanical
+   transformation or translation of a Source form, including but
+   not limited to compiled object code, generated documentation,
+   and conversions to other media types.
+
+   "Work" shall mean the work of authorship, whether in Source or
+   Object form, made available under the License, as indicated by a
+   copyright notice that is included in or attached to the work
+   (an example is provided in the Appendix below).
+
+   "Derivative Works" shall mean any work, whether in Source or Object
+   form, that is based on (or derived from) the Work and for which the
+   editorial revisions, annotations, elaborations, or other modifications
+   represent, as a whole, an original work of authorship. For the purposes
+   of this License, Derivative Works shall not include works that remain
+   separable from, or merely link (or bind by name) to the interfaces of,
+   the Work and Derivative Works thereof.
+
+   "Contribution" shall mean any work of authorship, including
+   the original version of the Work and any modifications or additions
+   to that Work or Derivative Works thereof, that is intentionally
+   submitted to Licensor for inclusion in the Work by the copyright owner
+   or by an individual or Legal Entity authorized to submit on behalf of
+   the copyright owner. For the purposes of this definition, "submitted"
+   means any form of electronic, verbal, or written communication sent
+   to the Licensor or its representatives, including but not limited to
+   communication on electronic mailing lists, source code control systems,
+   and issue tracking systems that are managed by, or on behalf of, the
+   Licensor for the purpose of discussing and improving the Work, but
+   excluding communication that is conspicuously marked or otherwise
+   designated in writing by the copyright owner as "Not a Contribution."
+
+   "Contributor" shall mean Licensor and any individual or Legal Entity
+   on behalf of whom a Contribution has been received by Licensor and
+   subsequently incorporated within the Work.
+
+2. Grant of Copyright License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   copyright license to reproduce, prepare Derivative Works of,
+   publicly display, publicly perform, sublicense, and distribute the
+   Work and such Derivative Works in Source or Object form.
+
+3. Grant of Patent License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   (except as stated in this section) patent license to make, have made,
+   use, offer to sell, sell, import, and otherwise transfer the Work,
+   where such license applies only to those patent claims licensable
+   by such Contributor that are necessarily infringed by their
+   Contribution(s) alone or by combination of their Contribution(s)
+   with the Work to which such Contribution(s) was submitted. If You
+   institute patent litigation against any entity (including a
+   cross-claim or counterclaim in a lawsuit) alleging that the Work
+   or a Contribution incorporated within the Work constitutes direct
+   or contributory patent infringement, then any patent licenses
+   granted to You under this License for that Work shall terminate
+   as of the date such litigation is filed.
+
+4. Redistribution. You may reproduce and distribute copies of the
+   Work or Derivative Works thereof in any medium, with or without
+   modifications, and in Source or Object form, provided that You
+   meet the following conditions:
+
+   (a) You must give any other recipients of the Work or
+       Derivative Works a copy of this License; and
+
+   (b) You must cause any modified files to carry prominent notices
+       stating that You changed the files; and
+
+   (c) You must retain, in the Source form of any Derivative Works
+       that You distribute, all copyright, patent, trademark, and
+       attribution notices from the Source form of the Work,
+       excluding those notices that do not pertain to any part of
+       the Derivative Works; and
+
+   (d) If the Work includes a "NOTICE" text file as part of its
+       distribution, then any Derivative Works that You distribute must
+       include a readable copy of the attribution notices contained
+       within such NOTICE file, excluding those notices that do not
+       pertain to any part of the Derivative Works, in at least one
+       of the following places: within a NOTICE text file distributed
+       as part of the Derivative Works; within the Source form or
+       documentation, if provided along with the Derivative Works; or,
+       within a display generated by the Derivative Works, if and
+       wherever such third-party notices normally appear. The contents
+       of the NOTICE file are for informational purposes only and
+       do not modify the License. You may add Your own attribution
+       notices within Derivative Works that You distribute, alongside
+       or as an addendum to the NOTICE text from the Work, provided
+       that such additional attribution notices cannot be construed
+       as modifying the License.
+
+   You may add Your own copyright statement to Your modifications and
+   may provide additional or different license terms and conditions
+   for use, reproduction, or distribution of Your modifications, or
+   for any such Derivative Works as a whole, provided Your use,
+   reproduction, and distribution of the Work otherwise complies with
+   the conditions stated in this License.
+
+5. Submission of Contributions. Unless You explicitly state otherwise,
+   any Contribution intentionally submitted for inclusion in the Work
+   by You to the Licensor shall be under the terms and conditions of
+   this License, without any additional terms or conditions.
+   Notwithstanding the above, nothing herein shall supersede or modify
+   the terms of any separate license agreement you may have executed
+   with Licensor regarding such Contributions.
+
+6. Trademarks. This License does not grant permission to use the trade
+   names, trademarks, service marks, or product names of the Licensor,
+   except as required for reasonable and customary use in describing the
+   origin of the Work and reproducing the content of the NOTICE file.
+
+7. Disclaimer of Warranty. Unless required by applicable law or
+   agreed to in writing, Licensor provides the Work (and each
+   Contributor provides its Contributions) on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+   implied, including, without limitation, any warranties or conditions
+   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+   PARTICULAR PURPOSE. You are solely responsible for determining the
+   appropriateness of using or redistributing the Work and assume any
+   risks associated with Your exercise of permissions under this License.
+
+8. Limitation of Liability. In no event and under no legal theory,
+   whether in tort (including negligence), contract, or otherwise,
+   unless required by applicable law (such as deliberate and grossly
+   negligent acts) or agreed to in writing, shall any Contributor be
+   liable to You for damages, including any direct, indirect, special,
+   incidental, or consequential damages of any character arising as a
+   result of this License or out of the use or inability to use the
+   Work (including but not limited to damages for loss of goodwill,
+   work stoppage, computer failure or malfunction, or any and all
+   other commercial damages or losses), even if such Contributor
+   has been advised of the possibility of such damages.
+
+9. Accepting Warranty or Additional Liability. While redistributing
+   the Work or Derivative Works thereof, You may choose to offer,
+   and charge a fee for, acceptance of support, warranty, indemnity,
+   or other liability obligations and/or rights consistent with this
+   License. However, in accepting such obligations, You may act only
+   on Your own behalf and on Your sole responsibility, not on behalf
+   of any other Contributor, and only if You agree to indemnify,
+   defend, and hold each Contributor harmless for any liability
+   incurred by, or claims asserted against, such Contributor by reason
+   of your accepting any such warranty or additional liability.
+
+END OF TERMS AND CONDITIONS
+
+APPENDIX: How to apply the Apache License to your work.
+
+   To apply the Apache License to your work, attach the following
+   boilerplate notice, with the fields enclosed by brackets "[]"
+   replaced with your own identifying information. (Don't include
+   the brackets!)  The text should be enclosed in the appropriate
+   comment syntax for the file format. We also recommend that a
+   file or class name and description of purpose be included on the
+   same "printed page" as the copyright notice for easier
+   identification within third-party archives.
+
+Copyright [yyyy] [name of copyright owner]
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+	http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+
+                
+
+ +
+ LICENSE-MIT +
+Copyright (c) 2016 Amanieu d'Antras
+
+Permission is hereby granted, free of charge, to any
+person obtaining a copy of this software and associated
+documentation files (the "Software"), to deal in the
+Software without restriction, including without
+limitation the rights to use, copy, modify, merge,
+publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software
+is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice
+shall be included in all copies or substantial portions
+of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
+TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
+PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
+SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+DEALINGS IN THE SOFTWARE.
+
+                
+
+ +

+ + +

📦 hermit-abi-0.5.2

+

URL: https://crates.io/crates/hermit-abi/0.5.2

+

Authors: Stefan Lankes

+

License: MIT OR Apache-2.0

+ + +

Notices: + +

+ LICENSE-APACHE +
+                              Apache License
+                        Version 2.0, January 2004
+                     http://www.apache.org/licenses/
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions.
+
+   "License" shall mean the terms and conditions for use, reproduction,
+   and distribution as defined by Sections 1 through 9 of this document.
+
+   "Licensor" shall mean the copyright owner or entity authorized by
+   the copyright owner that is granting the License.
+
+   "Legal Entity" shall mean the union of the acting entity and all
+   other entities that control, are controlled by, or are under common
+   control with that entity. For the purposes of this definition,
+   "control" means (i) the power, direct or indirect, to cause the
+   direction or management of such entity, whether by contract or
+   otherwise, or (ii) ownership of fifty percent (50%) or more of the
+   outstanding shares, or (iii) beneficial ownership of such entity.
+
+   "You" (or "Your") shall mean an individual or Legal Entity
+   exercising permissions granted by this License.
+
+   "Source" form shall mean the preferred form for making modifications,
+   including but not limited to software source code, documentation
+   source, and configuration files.
+
+   "Object" form shall mean any form resulting from mechanical
+   transformation or translation of a Source form, including but
+   not limited to compiled object code, generated documentation,
+   and conversions to other media types.
+
+   "Work" shall mean the work of authorship, whether in Source or
+   Object form, made available under the License, as indicated by a
+   copyright notice that is included in or attached to the work
+   (an example is provided in the Appendix below).
+
+   "Derivative Works" shall mean any work, whether in Source or Object
+   form, that is based on (or derived from) the Work and for which the
+   editorial revisions, annotations, elaborations, or other modifications
+   represent, as a whole, an original work of authorship. For the purposes
+   of this License, Derivative Works shall not include works that remain
+   separable from, or merely link (or bind by name) to the interfaces of,
+   the Work and Derivative Works thereof.
+
+   "Contribution" shall mean any work of authorship, including
+   the original version of the Work and any modifications or additions
+   to that Work or Derivative Works thereof, that is intentionally
+   submitted to Licensor for inclusion in the Work by the copyright owner
+   or by an individual or Legal Entity authorized to submit on behalf of
+   the copyright owner. For the purposes of this definition, "submitted"
+   means any form of electronic, verbal, or written communication sent
+   to the Licensor or its representatives, including but not limited to
+   communication on electronic mailing lists, source code control systems,
+   and issue tracking systems that are managed by, or on behalf of, the
+   Licensor for the purpose of discussing and improving the Work, but
+   excluding communication that is conspicuously marked or otherwise
+   designated in writing by the copyright owner as "Not a Contribution."
+
+   "Contributor" shall mean Licensor and any individual or Legal Entity
+   on behalf of whom a Contribution has been received by Licensor and
+   subsequently incorporated within the Work.
+
+2. Grant of Copyright License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   copyright license to reproduce, prepare Derivative Works of,
+   publicly display, publicly perform, sublicense, and distribute the
+   Work and such Derivative Works in Source or Object form.
+
+3. Grant of Patent License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   (except as stated in this section) patent license to make, have made,
+   use, offer to sell, sell, import, and otherwise transfer the Work,
+   where such license applies only to those patent claims licensable
+   by such Contributor that are necessarily infringed by their
+   Contribution(s) alone or by combination of their Contribution(s)
+   with the Work to which such Contribution(s) was submitted. If You
+   institute patent litigation against any entity (including a
+   cross-claim or counterclaim in a lawsuit) alleging that the Work
+   or a Contribution incorporated within the Work constitutes direct
+   or contributory patent infringement, then any patent licenses
+   granted to You under this License for that Work shall terminate
+   as of the date such litigation is filed.
+
+4. Redistribution. You may reproduce and distribute copies of the
+   Work or Derivative Works thereof in any medium, with or without
+   modifications, and in Source or Object form, provided that You
+   meet the following conditions:
+
+   (a) You must give any other recipients of the Work or
+       Derivative Works a copy of this License; and
+
+   (b) You must cause any modified files to carry prominent notices
+       stating that You changed the files; and
+
+   (c) You must retain, in the Source form of any Derivative Works
+       that You distribute, all copyright, patent, trademark, and
+       attribution notices from the Source form of the Work,
+       excluding those notices that do not pertain to any part of
+       the Derivative Works; and
+
+   (d) If the Work includes a "NOTICE" text file as part of its
+       distribution, then any Derivative Works that You distribute must
+       include a readable copy of the attribution notices contained
+       within such NOTICE file, excluding those notices that do not
+       pertain to any part of the Derivative Works, in at least one
+       of the following places: within a NOTICE text file distributed
+       as part of the Derivative Works; within the Source form or
+       documentation, if provided along with the Derivative Works; or,
+       within a display generated by the Derivative Works, if and
+       wherever such third-party notices normally appear. The contents
+       of the NOTICE file are for informational purposes only and
+       do not modify the License. You may add Your own attribution
+       notices within Derivative Works that You distribute, alongside
+       or as an addendum to the NOTICE text from the Work, provided
+       that such additional attribution notices cannot be construed
+       as modifying the License.
+
+   You may add Your own copyright statement to Your modifications and
+   may provide additional or different license terms and conditions
+   for use, reproduction, or distribution of Your modifications, or
+   for any such Derivative Works as a whole, provided Your use,
+   reproduction, and distribution of the Work otherwise complies with
+   the conditions stated in this License.
+
+5. Submission of Contributions. Unless You explicitly state otherwise,
+   any Contribution intentionally submitted for inclusion in the Work
+   by You to the Licensor shall be under the terms and conditions of
+   this License, without any additional terms or conditions.
+   Notwithstanding the above, nothing herein shall supersede or modify
+   the terms of any separate license agreement you may have executed
+   with Licensor regarding such Contributions.
+
+6. Trademarks. This License does not grant permission to use the trade
+   names, trademarks, service marks, or product names of the Licensor,
+   except as required for reasonable and customary use in describing the
+   origin of the Work and reproducing the content of the NOTICE file.
+
+7. Disclaimer of Warranty. Unless required by applicable law or
+   agreed to in writing, Licensor provides the Work (and each
+   Contributor provides its Contributions) on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+   implied, including, without limitation, any warranties or conditions
+   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+   PARTICULAR PURPOSE. You are solely responsible for determining the
+   appropriateness of using or redistributing the Work and assume any
+   risks associated with Your exercise of permissions under this License.
+
+8. Limitation of Liability. In no event and under no legal theory,
+   whether in tort (including negligence), contract, or otherwise,
+   unless required by applicable law (such as deliberate and grossly
+   negligent acts) or agreed to in writing, shall any Contributor be
+   liable to You for damages, including any direct, indirect, special,
+   incidental, or consequential damages of any character arising as a
+   result of this License or out of the use or inability to use the
+   Work (including but not limited to damages for loss of goodwill,
+   work stoppage, computer failure or malfunction, or any and all
+   other commercial damages or losses), even if such Contributor
+   has been advised of the possibility of such damages.
+
+9. Accepting Warranty or Additional Liability. While redistributing
+   the Work or Derivative Works thereof, You may choose to offer,
+   and charge a fee for, acceptance of support, warranty, indemnity,
+   or other liability obligations and/or rights consistent with this
+   License. However, in accepting such obligations, You may act only
+   on Your own behalf and on Your sole responsibility, not on behalf
+   of any other Contributor, and only if You agree to indemnify,
+   defend, and hold each Contributor harmless for any liability
+   incurred by, or claims asserted against, such Contributor by reason
+   of your accepting any such warranty or additional liability.
+
+END OF TERMS AND CONDITIONS
+
+APPENDIX: How to apply the Apache License to your work.
+
+   To apply the Apache License to your work, attach the following
+   boilerplate notice, with the fields enclosed by brackets "[]"
+   replaced with your own identifying information. (Don't include
+   the brackets!)  The text should be enclosed in the appropriate
+   comment syntax for the file format. We also recommend that a
+   file or class name and description of purpose be included on the
+   same "printed page" as the copyright notice for easier
+   identification within third-party archives.
+
+Copyright [yyyy] [name of copyright owner]
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+	http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+
+                
+
+ +
+ LICENSE-MIT +
+Permission is hereby granted, free of charge, to any
+person obtaining a copy of this software and associated
+documentation files (the "Software"), to deal in the
+Software without restriction, including without
+limitation the rights to use, copy, modify, merge,
+publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software
+is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice
+shall be included in all copies or substantial portions
+of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
+TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
+PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
+SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+DEALINGS IN THE SOFTWARE.
+
+                
+
+ +

+ + +

📦 libc-0.2.178

+

URL: https://crates.io/crates/libc/0.2.178

+

Authors: The Rust Project Developers

+

License: MIT OR Apache-2.0

+ + +

Notices: + +

+ LICENSE-APACHE +
+                              Apache License
+                        Version 2.0, January 2004
+                     http://www.apache.org/licenses/
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions.
+
+   "License" shall mean the terms and conditions for use, reproduction,
+   and distribution as defined by Sections 1 through 9 of this document.
+
+   "Licensor" shall mean the copyright owner or entity authorized by
+   the copyright owner that is granting the License.
+
+   "Legal Entity" shall mean the union of the acting entity and all
+   other entities that control, are controlled by, or are under common
+   control with that entity. For the purposes of this definition,
+   "control" means (i) the power, direct or indirect, to cause the
+   direction or management of such entity, whether by contract or
+   otherwise, or (ii) ownership of fifty percent (50%) or more of the
+   outstanding shares, or (iii) beneficial ownership of such entity.
+
+   "You" (or "Your") shall mean an individual or Legal Entity
+   exercising permissions granted by this License.
+
+   "Source" form shall mean the preferred form for making modifications,
+   including but not limited to software source code, documentation
+   source, and configuration files.
+
+   "Object" form shall mean any form resulting from mechanical
+   transformation or translation of a Source form, including but
+   not limited to compiled object code, generated documentation,
+   and conversions to other media types.
+
+   "Work" shall mean the work of authorship, whether in Source or
+   Object form, made available under the License, as indicated by a
+   copyright notice that is included in or attached to the work
+   (an example is provided in the Appendix below).
+
+   "Derivative Works" shall mean any work, whether in Source or Object
+   form, that is based on (or derived from) the Work and for which the
+   editorial revisions, annotations, elaborations, or other modifications
+   represent, as a whole, an original work of authorship. For the purposes
+   of this License, Derivative Works shall not include works that remain
+   separable from, or merely link (or bind by name) to the interfaces of,
+   the Work and Derivative Works thereof.
+
+   "Contribution" shall mean any work of authorship, including
+   the original version of the Work and any modifications or additions
+   to that Work or Derivative Works thereof, that is intentionally
+   submitted to Licensor for inclusion in the Work by the copyright owner
+   or by an individual or Legal Entity authorized to submit on behalf of
+   the copyright owner. For the purposes of this definition, "submitted"
+   means any form of electronic, verbal, or written communication sent
+   to the Licensor or its representatives, including but not limited to
+   communication on electronic mailing lists, source code control systems,
+   and issue tracking systems that are managed by, or on behalf of, the
+   Licensor for the purpose of discussing and improving the Work, but
+   excluding communication that is conspicuously marked or otherwise
+   designated in writing by the copyright owner as "Not a Contribution."
+
+   "Contributor" shall mean Licensor and any individual or Legal Entity
+   on behalf of whom a Contribution has been received by Licensor and
+   subsequently incorporated within the Work.
+
+2. Grant of Copyright License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   copyright license to reproduce, prepare Derivative Works of,
+   publicly display, publicly perform, sublicense, and distribute the
+   Work and such Derivative Works in Source or Object form.
+
+3. Grant of Patent License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   (except as stated in this section) patent license to make, have made,
+   use, offer to sell, sell, import, and otherwise transfer the Work,
+   where such license applies only to those patent claims licensable
+   by such Contributor that are necessarily infringed by their
+   Contribution(s) alone or by combination of their Contribution(s)
+   with the Work to which such Contribution(s) was submitted. If You
+   institute patent litigation against any entity (including a
+   cross-claim or counterclaim in a lawsuit) alleging that the Work
+   or a Contribution incorporated within the Work constitutes direct
+   or contributory patent infringement, then any patent licenses
+   granted to You under this License for that Work shall terminate
+   as of the date such litigation is filed.
+
+4. Redistribution. You may reproduce and distribute copies of the
+   Work or Derivative Works thereof in any medium, with or without
+   modifications, and in Source or Object form, provided that You
+   meet the following conditions:
+
+   (a) You must give any other recipients of the Work or
+       Derivative Works a copy of this License; and
+
+   (b) You must cause any modified files to carry prominent notices
+       stating that You changed the files; and
+
+   (c) You must retain, in the Source form of any Derivative Works
+       that You distribute, all copyright, patent, trademark, and
+       attribution notices from the Source form of the Work,
+       excluding those notices that do not pertain to any part of
+       the Derivative Works; and
+
+   (d) If the Work includes a "NOTICE" text file as part of its
+       distribution, then any Derivative Works that You distribute must
+       include a readable copy of the attribution notices contained
+       within such NOTICE file, excluding those notices that do not
+       pertain to any part of the Derivative Works, in at least one
+       of the following places: within a NOTICE text file distributed
+       as part of the Derivative Works; within the Source form or
+       documentation, if provided along with the Derivative Works; or,
+       within a display generated by the Derivative Works, if and
+       wherever such third-party notices normally appear. The contents
+       of the NOTICE file are for informational purposes only and
+       do not modify the License. You may add Your own attribution
+       notices within Derivative Works that You distribute, alongside
+       or as an addendum to the NOTICE text from the Work, provided
+       that such additional attribution notices cannot be construed
+       as modifying the License.
+
+   You may add Your own copyright statement to Your modifications and
+   may provide additional or different license terms and conditions
+   for use, reproduction, or distribution of Your modifications, or
+   for any such Derivative Works as a whole, provided Your use,
+   reproduction, and distribution of the Work otherwise complies with
+   the conditions stated in this License.
+
+5. Submission of Contributions. Unless You explicitly state otherwise,
+   any Contribution intentionally submitted for inclusion in the Work
+   by You to the Licensor shall be under the terms and conditions of
+   this License, without any additional terms or conditions.
+   Notwithstanding the above, nothing herein shall supersede or modify
+   the terms of any separate license agreement you may have executed
+   with Licensor regarding such Contributions.
+
+6. Trademarks. This License does not grant permission to use the trade
+   names, trademarks, service marks, or product names of the Licensor,
+   except as required for reasonable and customary use in describing the
+   origin of the Work and reproducing the content of the NOTICE file.
+
+7. Disclaimer of Warranty. Unless required by applicable law or
+   agreed to in writing, Licensor provides the Work (and each
+   Contributor provides its Contributions) on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+   implied, including, without limitation, any warranties or conditions
+   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+   PARTICULAR PURPOSE. You are solely responsible for determining the
+   appropriateness of using or redistributing the Work and assume any
+   risks associated with Your exercise of permissions under this License.
+
+8. Limitation of Liability. In no event and under no legal theory,
+   whether in tort (including negligence), contract, or otherwise,
+   unless required by applicable law (such as deliberate and grossly
+   negligent acts) or agreed to in writing, shall any Contributor be
+   liable to You for damages, including any direct, indirect, special,
+   incidental, or consequential damages of any character arising as a
+   result of this License or out of the use or inability to use the
+   Work (including but not limited to damages for loss of goodwill,
+   work stoppage, computer failure or malfunction, or any and all
+   other commercial damages or losses), even if such Contributor
+   has been advised of the possibility of such damages.
+
+9. Accepting Warranty or Additional Liability. While redistributing
+   the Work or Derivative Works thereof, You may choose to offer,
+   and charge a fee for, acceptance of support, warranty, indemnity,
+   or other liability obligations and/or rights consistent with this
+   License. However, in accepting such obligations, You may act only
+   on Your own behalf and on Your sole responsibility, not on behalf
+   of any other Contributor, and only if You agree to indemnify,
+   defend, and hold each Contributor harmless for any liability
+   incurred by, or claims asserted against, such Contributor by reason
+   of your accepting any such warranty or additional liability.
+
+END OF TERMS AND CONDITIONS
+
+                
+
+ +
+ LICENSE-MIT +
+Copyright (c) 2014-2020 The Rust Project Developers
+
+Permission is hereby granted, free of charge, to any
+person obtaining a copy of this software and associated
+documentation files (the "Software"), to deal in the
+Software without restriction, including without
+limitation the rights to use, copy, modify, merge,
+publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software
+is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice
+shall be included in all copies or substantial portions
+of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
+TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
+PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
+SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+DEALINGS IN THE SOFTWARE.
+
+                
+
+ +

+ + +

📦 moto-rt-0.16.0

+

URL: https://crates.io/crates/moto-rt/0.16.0

+

Authors: The Motor OS Project Developers

+

License: MIT OR Apache-2.0

+ + +

Notices: + +

+ LICENSE-APACHE +
+                              Apache License
+                        Version 2.0, January 2004
+                     http://www.apache.org/licenses/
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions.
+
+   "License" shall mean the terms and conditions for use, reproduction,
+   and distribution as defined by Sections 1 through 9 of this document.
+
+   "Licensor" shall mean the copyright owner or entity authorized by
+   the copyright owner that is granting the License.
+
+   "Legal Entity" shall mean the union of the acting entity and all
+   other entities that control, are controlled by, or are under common
+   control with that entity. For the purposes of this definition,
+   "control" means (i) the power, direct or indirect, to cause the
+   direction or management of such entity, whether by contract or
+   otherwise, or (ii) ownership of fifty percent (50%) or more of the
+   outstanding shares, or (iii) beneficial ownership of such entity.
+
+   "You" (or "Your") shall mean an individual or Legal Entity
+   exercising permissions granted by this License.
+
+   "Source" form shall mean the preferred form for making modifications,
+   including but not limited to software source code, documentation
+   source, and configuration files.
+
+   "Object" form shall mean any form resulting from mechanical
+   transformation or translation of a Source form, including but
+   not limited to compiled object code, generated documentation,
+   and conversions to other media types.
+
+   "Work" shall mean the work of authorship, whether in Source or
+   Object form, made available under the License, as indicated by a
+   copyright notice that is included in or attached to the work
+   (an example is provided in the Appendix below).
+
+   "Derivative Works" shall mean any work, whether in Source or Object
+   form, that is based on (or derived from) the Work and for which the
+   editorial revisions, annotations, elaborations, or other modifications
+   represent, as a whole, an original work of authorship. For the purposes
+   of this License, Derivative Works shall not include works that remain
+   separable from, or merely link (or bind by name) to the interfaces of,
+   the Work and Derivative Works thereof.
+
+   "Contribution" shall mean any work of authorship, including
+   the original version of the Work and any modifications or additions
+   to that Work or Derivative Works thereof, that is intentionally
+   submitted to Licensor for inclusion in the Work by the copyright owner
+   or by an individual or Legal Entity authorized to submit on behalf of
+   the copyright owner. For the purposes of this definition, "submitted"
+   means any form of electronic, verbal, or written communication sent
+   to the Licensor or its representatives, including but not limited to
+   communication on electronic mailing lists, source code control systems,
+   and issue tracking systems that are managed by, or on behalf of, the
+   Licensor for the purpose of discussing and improving the Work, but
+   excluding communication that is conspicuously marked or otherwise
+   designated in writing by the copyright owner as "Not a Contribution."
+
+   "Contributor" shall mean Licensor and any individual or Legal Entity
+   on behalf of whom a Contribution has been received by Licensor and
+   subsequently incorporated within the Work.
+
+2. Grant of Copyright License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   copyright license to reproduce, prepare Derivative Works of,
+   publicly display, publicly perform, sublicense, and distribute the
+   Work and such Derivative Works in Source or Object form.
+
+3. Grant of Patent License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   (except as stated in this section) patent license to make, have made,
+   use, offer to sell, sell, import, and otherwise transfer the Work,
+   where such license applies only to those patent claims licensable
+   by such Contributor that are necessarily infringed by their
+   Contribution(s) alone or by combination of their Contribution(s)
+   with the Work to which such Contribution(s) was submitted. If You
+   institute patent litigation against any entity (including a
+   cross-claim or counterclaim in a lawsuit) alleging that the Work
+   or a Contribution incorporated within the Work constitutes direct
+   or contributory patent infringement, then any patent licenses
+   granted to You under this License for that Work shall terminate
+   as of the date such litigation is filed.
+
+4. Redistribution. You may reproduce and distribute copies of the
+   Work or Derivative Works thereof in any medium, with or without
+   modifications, and in Source or Object form, provided that You
+   meet the following conditions:
+
+   (a) You must give any other recipients of the Work or
+       Derivative Works a copy of this License; and
+
+   (b) You must cause any modified files to carry prominent notices
+       stating that You changed the files; and
+
+   (c) You must retain, in the Source form of any Derivative Works
+       that You distribute, all copyright, patent, trademark, and
+       attribution notices from the Source form of the Work,
+       excluding those notices that do not pertain to any part of
+       the Derivative Works; and
+
+   (d) If the Work includes a "NOTICE" text file as part of its
+       distribution, then any Derivative Works that You distribute must
+       include a readable copy of the attribution notices contained
+       within such NOTICE file, excluding those notices that do not
+       pertain to any part of the Derivative Works, in at least one
+       of the following places: within a NOTICE text file distributed
+       as part of the Derivative Works; within the Source form or
+       documentation, if provided along with the Derivative Works; or,
+       within a display generated by the Derivative Works, if and
+       wherever such third-party notices normally appear. The contents
+       of the NOTICE file are for informational purposes only and
+       do not modify the License. You may add Your own attribution
+       notices within Derivative Works that You distribute, alongside
+       or as an addendum to the NOTICE text from the Work, provided
+       that such additional attribution notices cannot be construed
+       as modifying the License.
+
+   You may add Your own copyright statement to Your modifications and
+   may provide additional or different license terms and conditions
+   for use, reproduction, or distribution of Your modifications, or
+   for any such Derivative Works as a whole, provided Your use,
+   reproduction, and distribution of the Work otherwise complies with
+   the conditions stated in this License.
+
+5. Submission of Contributions. Unless You explicitly state otherwise,
+   any Contribution intentionally submitted for inclusion in the Work
+   by You to the Licensor shall be under the terms and conditions of
+   this License, without any additional terms or conditions.
+   Notwithstanding the above, nothing herein shall supersede or modify
+   the terms of any separate license agreement you may have executed
+   with Licensor regarding such Contributions.
+
+6. Trademarks. This License does not grant permission to use the trade
+   names, trademarks, service marks, or product names of the Licensor,
+   except as required for reasonable and customary use in describing the
+   origin of the Work and reproducing the content of the NOTICE file.
+
+7. Disclaimer of Warranty. Unless required by applicable law or
+   agreed to in writing, Licensor provides the Work (and each
+   Contributor provides its Contributions) on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+   implied, including, without limitation, any warranties or conditions
+   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+   PARTICULAR PURPOSE. You are solely responsible for determining the
+   appropriateness of using or redistributing the Work and assume any
+   risks associated with Your exercise of permissions under this License.
+
+8. Limitation of Liability. In no event and under no legal theory,
+   whether in tort (including negligence), contract, or otherwise,
+   unless required by applicable law (such as deliberate and grossly
+   negligent acts) or agreed to in writing, shall any Contributor be
+   liable to You for damages, including any direct, indirect, special,
+   incidental, or consequential damages of any character arising as a
+   result of this License or out of the use or inability to use the
+   Work (including but not limited to damages for loss of goodwill,
+   work stoppage, computer failure or malfunction, or any and all
+   other commercial damages or losses), even if such Contributor
+   has been advised of the possibility of such damages.
+
+9. Accepting Warranty or Additional Liability. While redistributing
+   the Work or Derivative Works thereof, You may choose to offer,
+   and charge a fee for, acceptance of support, warranty, indemnity,
+   or other liability obligations and/or rights consistent with this
+   License. However, in accepting such obligations, You may act only
+   on Your own behalf and on Your sole responsibility, not on behalf
+   of any other Contributor, and only if You agree to indemnify,
+   defend, and hold each Contributor harmless for any liability
+   incurred by, or claims asserted against, such Contributor by reason
+   of your accepting any such warranty or additional liability.
+
+END OF TERMS AND CONDITIONS
+
+APPENDIX: How to apply the Apache License to your work.
+
+   To apply the Apache License to your work, attach the following
+   boilerplate notice, with the fields enclosed by brackets "[]"
+   replaced with your own identifying information. (Don't include
+   the brackets!)  The text should be enclosed in the appropriate
+   comment syntax for the file format. We also recommend that a
+   file or class name and description of purpose be included on the
+   same "printed page" as the copyright notice for easier
+   identification within third-party archives.
+
+Copyright 2023 The Motor OS Project Developers
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+	http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+
+                
+
+ +
+ LICENSE-MIT +
+Copyright (c) 2023 The Motor OS Project Developers
+
+Permission is hereby granted, free of charge, to any
+person obtaining a copy of this software and associated
+documentation files (the "Software"), to deal in the
+Software without restriction, including without
+limitation the rights to use, copy, modify, merge,
+publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software
+is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice
+shall be included in all copies or substantial portions
+of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
+TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
+PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
+SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+DEALINGS IN THE SOFTWARE.
+
+                
+
+ +

+ + +

📦 r-efi-5.3.0

+

URL: https://crates.io/crates/r-efi/5.3.0

+

Authors:

+

License: MIT OR Apache-2.0 OR LGPL-2.1-or-later

+ + +

Notices: + +

+ AUTHORS +
+LICENSE:
+        This project is triple-licensed under the MIT License, the Apache
+        License, Version 2.0, and the GNU Lesser General Public License,
+        Version 2.1+.
+
+AUTHORS-MIT:
+        Permission is hereby granted, free of charge, to any person obtaining a
+        copy of this software and associated documentation files (the
+        "Software"), to deal in the Software without restriction, including
+        without limitation the rights to use, copy, modify, merge, publish,
+        distribute, sublicense, and/or sell copies of the Software, and to
+        permit persons to whom the Software is furnished to do so, subject to
+        the following conditions:
+
+        The above copyright notice and this permission notice shall be included
+        in all copies or substantial portions of the Software.
+
+        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+        OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+        MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+        IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+        CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+        TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+        SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+AUTHORS-ASL:
+        Licensed under the Apache License, Version 2.0 (the "License");
+        you may not use this file except in compliance with the License.
+        You may obtain a copy of the License at
+
+                http://www.apache.org/licenses/LICENSE-2.0
+
+        Unless required by applicable law or agreed to in writing, software
+        distributed under the License is distributed on an "AS IS" BASIS,
+        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+        See the License for the specific language governing permissions and
+        limitations under the License.
+
+AUTHORS-LGPL:
+        This program is free software; you can redistribute it and/or modify it
+        under the terms of the GNU Lesser General Public License as published
+        by the Free Software Foundation; either version 2.1 of the License, or
+        (at your option) any later version.
+
+        This program is distributed in the hope that it will be useful, but
+        WITHOUT ANY WARRANTY; without even the implied warranty of
+        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+        Lesser General Public License for more details.
+
+        You should have received a copy of the GNU Lesser General Public License
+        along with this program; If not, see <http://www.gnu.org/licenses/>.
+
+COPYRIGHT: (ordered alphabetically)
+        Copyright (C) 2017-2023 Red Hat, Inc.
+        Copyright (C) 2019-2023 Microsoft Corporation
+        Copyright (C) 2022-2023 David Rheinsberg
+
+AUTHORS: (ordered alphabetically)
+        Alex James <theracermaster@gmail.com>
+        Ayush Singh <ayushsingh1325@gmail.com>
+        Boris-Chengbiao Zhou <bobo1239@web.de>
+        Bret Barkelew <bret@corthon.com>
+        Christopher Zurcher <christopher.zurcher@microsoft.com>
+        David Rheinsberg <david@readahead.eu>
+        Dmitry Mostovenko <trueberserker@gmail.com>
+        Hiroki Tokunaga <tokusan441@gmail.com>
+        Joe Richey <joerichey@google.com>
+        John Schock <joschock@microsoft.com>
+        Michael Kubacki <michael.kubacki@microsoft.com>
+        Oliver Smith-Denny <osde@microsoft.com>
+        Richard Wiedenhöft <richard@wiedenhoeft.xyz>
+        Rob Bradford <robert.bradford@intel.com>, <rbradford@rivosinc.com>
+        Tom Gundersen <teg@jklm.no>
+        Trevor Gross <tmgross@umich.edu>
+
+                
+
+ +

+ + +

📦 r-efi-alloc-2.1.0

+

URL: https://crates.io/crates/r-efi-alloc/2.1.0

+

Authors:

+

License: MIT OR Apache-2.0 OR LGPL-2.1-or-later

+ + +

Notices: + +

+ AUTHORS +
+LICENSE:
+        This project is triple-licensed under the MIT License, the Apache
+        License, Version 2.0, and the GNU Lesser General Public License,
+        Version 2.1+.
+
+AUTHORS-MIT:
+        Permission is hereby granted, free of charge, to any person obtaining a
+        copy of this software and associated documentation files (the
+        "Software"), to deal in the Software without restriction, including
+        without limitation the rights to use, copy, modify, merge, publish,
+        distribute, sublicense, and/or sell copies of the Software, and to
+        permit persons to whom the Software is furnished to do so, subject to
+        the following conditions:
+
+        The above copyright notice and this permission notice shall be included
+        in all copies or substantial portions of the Software.
+
+        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+        OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+        MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+        IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+        CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+        TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+        SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+AUTHORS-ASL:
+        Licensed under the Apache License, Version 2.0 (the "License");
+        you may not use this file except in compliance with the License.
+        You may obtain a copy of the License at
+
+                http://www.apache.org/licenses/LICENSE-2.0
+
+        Unless required by applicable law or agreed to in writing, software
+        distributed under the License is distributed on an "AS IS" BASIS,
+        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+        See the License for the specific language governing permissions and
+        limitations under the License.
+
+AUTHORS-LGPL:
+        This program is free software; you can redistribute it and/or modify it
+        under the terms of the GNU Lesser General Public License as published
+        by the Free Software Foundation; either version 2.1 of the License, or
+        (at your option) any later version.
+
+        This program is distributed in the hope that it will be useful, but
+        WITHOUT ANY WARRANTY; without even the implied warranty of
+        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+        Lesser General Public License for more details.
+
+        You should have received a copy of the GNU Lesser General Public License
+        along with this program; If not, see <http://www.gnu.org/licenses/>.
+
+COPYRIGHT: (ordered alphabetically)
+        Copyright (C) 2017-2022 Red Hat, Inc.
+        Copyright (C) 2022-2025 David Rheinsberg
+
+AUTHORS: (ordered alphabetically)
+        Ayush Singh <ayushsingh1325@gmail.com>
+        David Rheinsberg <david@readahead.eu>
+        Mizuho MORI <morimolymoly@gmail.com>
+        Tom Gundersen <teg@jklm.no>
+        Trevor Gross <tmgross@umich.edu>
+
+                
+
+ +

+ + +

📦 rand-0.9.2

+

URL: https://crates.io/crates/rand/0.9.2

+

Authors: The Rand Project Developers, The Rust Project Developers

+

License: MIT OR Apache-2.0

+ + +

Notices: + +

+ COPYRIGHT +
+Copyrights in the Rand project are retained by their contributors. No
+copyright assignment is required to contribute to the Rand project.
+
+For full authorship information, see the version control history.
+
+Except as otherwise noted (below and/or in individual files), Rand is
+licensed under the Apache License, Version 2.0 <LICENSE-APACHE> or
+<http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+<LICENSE-MIT> or <http://opensource.org/licenses/MIT>, at your option.
+
+The Rand project includes code from the Rust project
+published under these same licenses.
+
+                
+
+ +
+ LICENSE-APACHE +
+                              Apache License
+                        Version 2.0, January 2004
+                     https://www.apache.org/licenses/
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions.
+
+   "License" shall mean the terms and conditions for use, reproduction,
+   and distribution as defined by Sections 1 through 9 of this document.
+
+   "Licensor" shall mean the copyright owner or entity authorized by
+   the copyright owner that is granting the License.
+
+   "Legal Entity" shall mean the union of the acting entity and all
+   other entities that control, are controlled by, or are under common
+   control with that entity. For the purposes of this definition,
+   "control" means (i) the power, direct or indirect, to cause the
+   direction or management of such entity, whether by contract or
+   otherwise, or (ii) ownership of fifty percent (50%) or more of the
+   outstanding shares, or (iii) beneficial ownership of such entity.
+
+   "You" (or "Your") shall mean an individual or Legal Entity
+   exercising permissions granted by this License.
+
+   "Source" form shall mean the preferred form for making modifications,
+   including but not limited to software source code, documentation
+   source, and configuration files.
+
+   "Object" form shall mean any form resulting from mechanical
+   transformation or translation of a Source form, including but
+   not limited to compiled object code, generated documentation,
+   and conversions to other media types.
+
+   "Work" shall mean the work of authorship, whether in Source or
+   Object form, made available under the License, as indicated by a
+   copyright notice that is included in or attached to the work
+   (an example is provided in the Appendix below).
+
+   "Derivative Works" shall mean any work, whether in Source or Object
+   form, that is based on (or derived from) the Work and for which the
+   editorial revisions, annotations, elaborations, or other modifications
+   represent, as a whole, an original work of authorship. For the purposes
+   of this License, Derivative Works shall not include works that remain
+   separable from, or merely link (or bind by name) to the interfaces of,
+   the Work and Derivative Works thereof.
+
+   "Contribution" shall mean any work of authorship, including
+   the original version of the Work and any modifications or additions
+   to that Work or Derivative Works thereof, that is intentionally
+   submitted to Licensor for inclusion in the Work by the copyright owner
+   or by an individual or Legal Entity authorized to submit on behalf of
+   the copyright owner. For the purposes of this definition, "submitted"
+   means any form of electronic, verbal, or written communication sent
+   to the Licensor or its representatives, including but not limited to
+   communication on electronic mailing lists, source code control systems,
+   and issue tracking systems that are managed by, or on behalf of, the
+   Licensor for the purpose of discussing and improving the Work, but
+   excluding communication that is conspicuously marked or otherwise
+   designated in writing by the copyright owner as "Not a Contribution."
+
+   "Contributor" shall mean Licensor and any individual or Legal Entity
+   on behalf of whom a Contribution has been received by Licensor and
+   subsequently incorporated within the Work.
+
+2. Grant of Copyright License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   copyright license to reproduce, prepare Derivative Works of,
+   publicly display, publicly perform, sublicense, and distribute the
+   Work and such Derivative Works in Source or Object form.
+
+3. Grant of Patent License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   (except as stated in this section) patent license to make, have made,
+   use, offer to sell, sell, import, and otherwise transfer the Work,
+   where such license applies only to those patent claims licensable
+   by such Contributor that are necessarily infringed by their
+   Contribution(s) alone or by combination of their Contribution(s)
+   with the Work to which such Contribution(s) was submitted. If You
+   institute patent litigation against any entity (including a
+   cross-claim or counterclaim in a lawsuit) alleging that the Work
+   or a Contribution incorporated within the Work constitutes direct
+   or contributory patent infringement, then any patent licenses
+   granted to You under this License for that Work shall terminate
+   as of the date such litigation is filed.
+
+4. Redistribution. You may reproduce and distribute copies of the
+   Work or Derivative Works thereof in any medium, with or without
+   modifications, and in Source or Object form, provided that You
+   meet the following conditions:
+
+   (a) You must give any other recipients of the Work or
+       Derivative Works a copy of this License; and
+
+   (b) You must cause any modified files to carry prominent notices
+       stating that You changed the files; and
+
+   (c) You must retain, in the Source form of any Derivative Works
+       that You distribute, all copyright, patent, trademark, and
+       attribution notices from the Source form of the Work,
+       excluding those notices that do not pertain to any part of
+       the Derivative Works; and
+
+   (d) If the Work includes a "NOTICE" text file as part of its
+       distribution, then any Derivative Works that You distribute must
+       include a readable copy of the attribution notices contained
+       within such NOTICE file, excluding those notices that do not
+       pertain to any part of the Derivative Works, in at least one
+       of the following places: within a NOTICE text file distributed
+       as part of the Derivative Works; within the Source form or
+       documentation, if provided along with the Derivative Works; or,
+       within a display generated by the Derivative Works, if and
+       wherever such third-party notices normally appear. The contents
+       of the NOTICE file are for informational purposes only and
+       do not modify the License. You may add Your own attribution
+       notices within Derivative Works that You distribute, alongside
+       or as an addendum to the NOTICE text from the Work, provided
+       that such additional attribution notices cannot be construed
+       as modifying the License.
+
+   You may add Your own copyright statement to Your modifications and
+   may provide additional or different license terms and conditions
+   for use, reproduction, or distribution of Your modifications, or
+   for any such Derivative Works as a whole, provided Your use,
+   reproduction, and distribution of the Work otherwise complies with
+   the conditions stated in this License.
+
+5. Submission of Contributions. Unless You explicitly state otherwise,
+   any Contribution intentionally submitted for inclusion in the Work
+   by You to the Licensor shall be under the terms and conditions of
+   this License, without any additional terms or conditions.
+   Notwithstanding the above, nothing herein shall supersede or modify
+   the terms of any separate license agreement you may have executed
+   with Licensor regarding such Contributions.
+
+6. Trademarks. This License does not grant permission to use the trade
+   names, trademarks, service marks, or product names of the Licensor,
+   except as required for reasonable and customary use in describing the
+   origin of the Work and reproducing the content of the NOTICE file.
+
+7. Disclaimer of Warranty. Unless required by applicable law or
+   agreed to in writing, Licensor provides the Work (and each
+   Contributor provides its Contributions) on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+   implied, including, without limitation, any warranties or conditions
+   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+   PARTICULAR PURPOSE. You are solely responsible for determining the
+   appropriateness of using or redistributing the Work and assume any
+   risks associated with Your exercise of permissions under this License.
+
+8. Limitation of Liability. In no event and under no legal theory,
+   whether in tort (including negligence), contract, or otherwise,
+   unless required by applicable law (such as deliberate and grossly
+   negligent acts) or agreed to in writing, shall any Contributor be
+   liable to You for damages, including any direct, indirect, special,
+   incidental, or consequential damages of any character arising as a
+   result of this License or out of the use or inability to use the
+   Work (including but not limited to damages for loss of goodwill,
+   work stoppage, computer failure or malfunction, or any and all
+   other commercial damages or losses), even if such Contributor
+   has been advised of the possibility of such damages.
+
+9. Accepting Warranty or Additional Liability. While redistributing
+   the Work or Derivative Works thereof, You may choose to offer,
+   and charge a fee for, acceptance of support, warranty, indemnity,
+   or other liability obligations and/or rights consistent with this
+   License. However, in accepting such obligations, You may act only
+   on Your own behalf and on Your sole responsibility, not on behalf
+   of any other Contributor, and only if You agree to indemnify,
+   defend, and hold each Contributor harmless for any liability
+   incurred by, or claims asserted against, such Contributor by reason
+   of your accepting any such warranty or additional liability.
+
+END OF TERMS AND CONDITIONS
+
+                
+
+ +
+ LICENSE-MIT +
+Copyright 2018 Developers of the Rand project
+Copyright (c) 2014 The Rust Project Developers
+
+Permission is hereby granted, free of charge, to any
+person obtaining a copy of this software and associated
+documentation files (the "Software"), to deal in the
+Software without restriction, including without
+limitation the rights to use, copy, modify, merge,
+publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software
+is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice
+shall be included in all copies or substantial portions
+of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
+TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
+PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
+SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+DEALINGS IN THE SOFTWARE.
+
+                
+
+ +

+ + +

📦 rand_core-0.9.3

+

URL: https://crates.io/crates/rand_core/0.9.3

+

Authors: The Rand Project Developers, The Rust Project Developers

+

License: MIT OR Apache-2.0

+ + +

Notices: + +

+ COPYRIGHT +
+Copyrights in the Rand project are retained by their contributors. No
+copyright assignment is required to contribute to the Rand project.
+
+For full authorship information, see the version control history.
+
+Except as otherwise noted (below and/or in individual files), Rand is
+licensed under the Apache License, Version 2.0 <LICENSE-APACHE> or
+<http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+<LICENSE-MIT> or <http://opensource.org/licenses/MIT>, at your option.
+
+The Rand project includes code from the Rust project
+published under these same licenses.
+
+                
+
+ +
+ LICENSE-APACHE +
+                              Apache License
+                        Version 2.0, January 2004
+                     https://www.apache.org/licenses/
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions.
+
+   "License" shall mean the terms and conditions for use, reproduction,
+   and distribution as defined by Sections 1 through 9 of this document.
+
+   "Licensor" shall mean the copyright owner or entity authorized by
+   the copyright owner that is granting the License.
+
+   "Legal Entity" shall mean the union of the acting entity and all
+   other entities that control, are controlled by, or are under common
+   control with that entity. For the purposes of this definition,
+   "control" means (i) the power, direct or indirect, to cause the
+   direction or management of such entity, whether by contract or
+   otherwise, or (ii) ownership of fifty percent (50%) or more of the
+   outstanding shares, or (iii) beneficial ownership of such entity.
+
+   "You" (or "Your") shall mean an individual or Legal Entity
+   exercising permissions granted by this License.
+
+   "Source" form shall mean the preferred form for making modifications,
+   including but not limited to software source code, documentation
+   source, and configuration files.
+
+   "Object" form shall mean any form resulting from mechanical
+   transformation or translation of a Source form, including but
+   not limited to compiled object code, generated documentation,
+   and conversions to other media types.
+
+   "Work" shall mean the work of authorship, whether in Source or
+   Object form, made available under the License, as indicated by a
+   copyright notice that is included in or attached to the work
+   (an example is provided in the Appendix below).
+
+   "Derivative Works" shall mean any work, whether in Source or Object
+   form, that is based on (or derived from) the Work and for which the
+   editorial revisions, annotations, elaborations, or other modifications
+   represent, as a whole, an original work of authorship. For the purposes
+   of this License, Derivative Works shall not include works that remain
+   separable from, or merely link (or bind by name) to the interfaces of,
+   the Work and Derivative Works thereof.
+
+   "Contribution" shall mean any work of authorship, including
+   the original version of the Work and any modifications or additions
+   to that Work or Derivative Works thereof, that is intentionally
+   submitted to Licensor for inclusion in the Work by the copyright owner
+   or by an individual or Legal Entity authorized to submit on behalf of
+   the copyright owner. For the purposes of this definition, "submitted"
+   means any form of electronic, verbal, or written communication sent
+   to the Licensor or its representatives, including but not limited to
+   communication on electronic mailing lists, source code control systems,
+   and issue tracking systems that are managed by, or on behalf of, the
+   Licensor for the purpose of discussing and improving the Work, but
+   excluding communication that is conspicuously marked or otherwise
+   designated in writing by the copyright owner as "Not a Contribution."
+
+   "Contributor" shall mean Licensor and any individual or Legal Entity
+   on behalf of whom a Contribution has been received by Licensor and
+   subsequently incorporated within the Work.
+
+2. Grant of Copyright License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   copyright license to reproduce, prepare Derivative Works of,
+   publicly display, publicly perform, sublicense, and distribute the
+   Work and such Derivative Works in Source or Object form.
+
+3. Grant of Patent License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   (except as stated in this section) patent license to make, have made,
+   use, offer to sell, sell, import, and otherwise transfer the Work,
+   where such license applies only to those patent claims licensable
+   by such Contributor that are necessarily infringed by their
+   Contribution(s) alone or by combination of their Contribution(s)
+   with the Work to which such Contribution(s) was submitted. If You
+   institute patent litigation against any entity (including a
+   cross-claim or counterclaim in a lawsuit) alleging that the Work
+   or a Contribution incorporated within the Work constitutes direct
+   or contributory patent infringement, then any patent licenses
+   granted to You under this License for that Work shall terminate
+   as of the date such litigation is filed.
+
+4. Redistribution. You may reproduce and distribute copies of the
+   Work or Derivative Works thereof in any medium, with or without
+   modifications, and in Source or Object form, provided that You
+   meet the following conditions:
+
+   (a) You must give any other recipients of the Work or
+       Derivative Works a copy of this License; and
+
+   (b) You must cause any modified files to carry prominent notices
+       stating that You changed the files; and
+
+   (c) You must retain, in the Source form of any Derivative Works
+       that You distribute, all copyright, patent, trademark, and
+       attribution notices from the Source form of the Work,
+       excluding those notices that do not pertain to any part of
+       the Derivative Works; and
+
+   (d) If the Work includes a "NOTICE" text file as part of its
+       distribution, then any Derivative Works that You distribute must
+       include a readable copy of the attribution notices contained
+       within such NOTICE file, excluding those notices that do not
+       pertain to any part of the Derivative Works, in at least one
+       of the following places: within a NOTICE text file distributed
+       as part of the Derivative Works; within the Source form or
+       documentation, if provided along with the Derivative Works; or,
+       within a display generated by the Derivative Works, if and
+       wherever such third-party notices normally appear. The contents
+       of the NOTICE file are for informational purposes only and
+       do not modify the License. You may add Your own attribution
+       notices within Derivative Works that You distribute, alongside
+       or as an addendum to the NOTICE text from the Work, provided
+       that such additional attribution notices cannot be construed
+       as modifying the License.
+
+   You may add Your own copyright statement to Your modifications and
+   may provide additional or different license terms and conditions
+   for use, reproduction, or distribution of Your modifications, or
+   for any such Derivative Works as a whole, provided Your use,
+   reproduction, and distribution of the Work otherwise complies with
+   the conditions stated in this License.
+
+5. Submission of Contributions. Unless You explicitly state otherwise,
+   any Contribution intentionally submitted for inclusion in the Work
+   by You to the Licensor shall be under the terms and conditions of
+   this License, without any additional terms or conditions.
+   Notwithstanding the above, nothing herein shall supersede or modify
+   the terms of any separate license agreement you may have executed
+   with Licensor regarding such Contributions.
+
+6. Trademarks. This License does not grant permission to use the trade
+   names, trademarks, service marks, or product names of the Licensor,
+   except as required for reasonable and customary use in describing the
+   origin of the Work and reproducing the content of the NOTICE file.
+
+7. Disclaimer of Warranty. Unless required by applicable law or
+   agreed to in writing, Licensor provides the Work (and each
+   Contributor provides its Contributions) on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+   implied, including, without limitation, any warranties or conditions
+   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+   PARTICULAR PURPOSE. You are solely responsible for determining the
+   appropriateness of using or redistributing the Work and assume any
+   risks associated with Your exercise of permissions under this License.
+
+8. Limitation of Liability. In no event and under no legal theory,
+   whether in tort (including negligence), contract, or otherwise,
+   unless required by applicable law (such as deliberate and grossly
+   negligent acts) or agreed to in writing, shall any Contributor be
+   liable to You for damages, including any direct, indirect, special,
+   incidental, or consequential damages of any character arising as a
+   result of this License or out of the use or inability to use the
+   Work (including but not limited to damages for loss of goodwill,
+   work stoppage, computer failure or malfunction, or any and all
+   other commercial damages or losses), even if such Contributor
+   has been advised of the possibility of such damages.
+
+9. Accepting Warranty or Additional Liability. While redistributing
+   the Work or Derivative Works thereof, You may choose to offer,
+   and charge a fee for, acceptance of support, warranty, indemnity,
+   or other liability obligations and/or rights consistent with this
+   License. However, in accepting such obligations, You may act only
+   on Your own behalf and on Your sole responsibility, not on behalf
+   of any other Contributor, and only if You agree to indemnify,
+   defend, and hold each Contributor harmless for any liability
+   incurred by, or claims asserted against, such Contributor by reason
+   of your accepting any such warranty or additional liability.
+
+END OF TERMS AND CONDITIONS
+
+APPENDIX: How to apply the Apache License to your work.
+
+   To apply the Apache License to your work, attach the following
+   boilerplate notice, with the fields enclosed by brackets "[]"
+   replaced with your own identifying information. (Don't include
+   the brackets!)  The text should be enclosed in the appropriate
+   comment syntax for the file format. We also recommend that a
+   file or class name and description of purpose be included on the
+   same "printed page" as the copyright notice for easier
+   identification within third-party archives.
+
+                
+
+ +
+ LICENSE-MIT +
+Copyright 2018 Developers of the Rand project
+Copyright (c) 2014 The Rust Project Developers
+
+Permission is hereby granted, free of charge, to any
+person obtaining a copy of this software and associated
+documentation files (the "Software"), to deal in the
+Software without restriction, including without
+limitation the rights to use, copy, modify, merge,
+publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software
+is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice
+shall be included in all copies or substantial portions
+of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
+TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
+PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
+SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+DEALINGS IN THE SOFTWARE.
+
+                
+
+ +

+ + +

📦 rand_xorshift-0.4.0

+

URL: https://crates.io/crates/rand_xorshift/0.4.0

+

Authors: The Rand Project Developers, The Rust Project Developers

+

License: MIT OR Apache-2.0

+ + +

Notices: + +

+ COPYRIGHT +
+Copyrights in the Rand project are retained by their contributors. No
+copyright assignment is required to contribute to the Rand project.
+
+For full authorship information, see the version control history.
+
+Except as otherwise noted (below and/or in individual files), Rand is
+licensed under the Apache License, Version 2.0 <LICENSE-APACHE> or
+<http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+<LICENSE-MIT> or <http://opensource.org/licenses/MIT>, at your option.
+
+The Rand project includes code from the Rust project
+published under these same licenses.
+
+                
+
+ +
+ LICENSE-APACHE +
+                              Apache License
+                        Version 2.0, January 2004
+                     https://www.apache.org/licenses/
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions.
+
+   "License" shall mean the terms and conditions for use, reproduction,
+   and distribution as defined by Sections 1 through 9 of this document.
+
+   "Licensor" shall mean the copyright owner or entity authorized by
+   the copyright owner that is granting the License.
+
+   "Legal Entity" shall mean the union of the acting entity and all
+   other entities that control, are controlled by, or are under common
+   control with that entity. For the purposes of this definition,
+   "control" means (i) the power, direct or indirect, to cause the
+   direction or management of such entity, whether by contract or
+   otherwise, or (ii) ownership of fifty percent (50%) or more of the
+   outstanding shares, or (iii) beneficial ownership of such entity.
+
+   "You" (or "Your") shall mean an individual or Legal Entity
+   exercising permissions granted by this License.
+
+   "Source" form shall mean the preferred form for making modifications,
+   including but not limited to software source code, documentation
+   source, and configuration files.
+
+   "Object" form shall mean any form resulting from mechanical
+   transformation or translation of a Source form, including but
+   not limited to compiled object code, generated documentation,
+   and conversions to other media types.
+
+   "Work" shall mean the work of authorship, whether in Source or
+   Object form, made available under the License, as indicated by a
+   copyright notice that is included in or attached to the work
+   (an example is provided in the Appendix below).
+
+   "Derivative Works" shall mean any work, whether in Source or Object
+   form, that is based on (or derived from) the Work and for which the
+   editorial revisions, annotations, elaborations, or other modifications
+   represent, as a whole, an original work of authorship. For the purposes
+   of this License, Derivative Works shall not include works that remain
+   separable from, or merely link (or bind by name) to the interfaces of,
+   the Work and Derivative Works thereof.
+
+   "Contribution" shall mean any work of authorship, including
+   the original version of the Work and any modifications or additions
+   to that Work or Derivative Works thereof, that is intentionally
+   submitted to Licensor for inclusion in the Work by the copyright owner
+   or by an individual or Legal Entity authorized to submit on behalf of
+   the copyright owner. For the purposes of this definition, "submitted"
+   means any form of electronic, verbal, or written communication sent
+   to the Licensor or its representatives, including but not limited to
+   communication on electronic mailing lists, source code control systems,
+   and issue tracking systems that are managed by, or on behalf of, the
+   Licensor for the purpose of discussing and improving the Work, but
+   excluding communication that is conspicuously marked or otherwise
+   designated in writing by the copyright owner as "Not a Contribution."
+
+   "Contributor" shall mean Licensor and any individual or Legal Entity
+   on behalf of whom a Contribution has been received by Licensor and
+   subsequently incorporated within the Work.
+
+2. Grant of Copyright License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   copyright license to reproduce, prepare Derivative Works of,
+   publicly display, publicly perform, sublicense, and distribute the
+   Work and such Derivative Works in Source or Object form.
+
+3. Grant of Patent License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   (except as stated in this section) patent license to make, have made,
+   use, offer to sell, sell, import, and otherwise transfer the Work,
+   where such license applies only to those patent claims licensable
+   by such Contributor that are necessarily infringed by their
+   Contribution(s) alone or by combination of their Contribution(s)
+   with the Work to which such Contribution(s) was submitted. If You
+   institute patent litigation against any entity (including a
+   cross-claim or counterclaim in a lawsuit) alleging that the Work
+   or a Contribution incorporated within the Work constitutes direct
+   or contributory patent infringement, then any patent licenses
+   granted to You under this License for that Work shall terminate
+   as of the date such litigation is filed.
+
+4. Redistribution. You may reproduce and distribute copies of the
+   Work or Derivative Works thereof in any medium, with or without
+   modifications, and in Source or Object form, provided that You
+   meet the following conditions:
+
+   (a) You must give any other recipients of the Work or
+       Derivative Works a copy of this License; and
+
+   (b) You must cause any modified files to carry prominent notices
+       stating that You changed the files; and
+
+   (c) You must retain, in the Source form of any Derivative Works
+       that You distribute, all copyright, patent, trademark, and
+       attribution notices from the Source form of the Work,
+       excluding those notices that do not pertain to any part of
+       the Derivative Works; and
+
+   (d) If the Work includes a "NOTICE" text file as part of its
+       distribution, then any Derivative Works that You distribute must
+       include a readable copy of the attribution notices contained
+       within such NOTICE file, excluding those notices that do not
+       pertain to any part of the Derivative Works, in at least one
+       of the following places: within a NOTICE text file distributed
+       as part of the Derivative Works; within the Source form or
+       documentation, if provided along with the Derivative Works; or,
+       within a display generated by the Derivative Works, if and
+       wherever such third-party notices normally appear. The contents
+       of the NOTICE file are for informational purposes only and
+       do not modify the License. You may add Your own attribution
+       notices within Derivative Works that You distribute, alongside
+       or as an addendum to the NOTICE text from the Work, provided
+       that such additional attribution notices cannot be construed
+       as modifying the License.
+
+   You may add Your own copyright statement to Your modifications and
+   may provide additional or different license terms and conditions
+   for use, reproduction, or distribution of Your modifications, or
+   for any such Derivative Works as a whole, provided Your use,
+   reproduction, and distribution of the Work otherwise complies with
+   the conditions stated in this License.
+
+5. Submission of Contributions. Unless You explicitly state otherwise,
+   any Contribution intentionally submitted for inclusion in the Work
+   by You to the Licensor shall be under the terms and conditions of
+   this License, without any additional terms or conditions.
+   Notwithstanding the above, nothing herein shall supersede or modify
+   the terms of any separate license agreement you may have executed
+   with Licensor regarding such Contributions.
+
+6. Trademarks. This License does not grant permission to use the trade
+   names, trademarks, service marks, or product names of the Licensor,
+   except as required for reasonable and customary use in describing the
+   origin of the Work and reproducing the content of the NOTICE file.
+
+7. Disclaimer of Warranty. Unless required by applicable law or
+   agreed to in writing, Licensor provides the Work (and each
+   Contributor provides its Contributions) on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+   implied, including, without limitation, any warranties or conditions
+   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+   PARTICULAR PURPOSE. You are solely responsible for determining the
+   appropriateness of using or redistributing the Work and assume any
+   risks associated with Your exercise of permissions under this License.
+
+8. Limitation of Liability. In no event and under no legal theory,
+   whether in tort (including negligence), contract, or otherwise,
+   unless required by applicable law (such as deliberate and grossly
+   negligent acts) or agreed to in writing, shall any Contributor be
+   liable to You for damages, including any direct, indirect, special,
+   incidental, or consequential damages of any character arising as a
+   result of this License or out of the use or inability to use the
+   Work (including but not limited to damages for loss of goodwill,
+   work stoppage, computer failure or malfunction, or any and all
+   other commercial damages or losses), even if such Contributor
+   has been advised of the possibility of such damages.
+
+9. Accepting Warranty or Additional Liability. While redistributing
+   the Work or Derivative Works thereof, You may choose to offer,
+   and charge a fee for, acceptance of support, warranty, indemnity,
+   or other liability obligations and/or rights consistent with this
+   License. However, in accepting such obligations, You may act only
+   on Your own behalf and on Your sole responsibility, not on behalf
+   of any other Contributor, and only if You agree to indemnify,
+   defend, and hold each Contributor harmless for any liability
+   incurred by, or claims asserted against, such Contributor by reason
+   of your accepting any such warranty or additional liability.
+
+END OF TERMS AND CONDITIONS
+
+                
+
+ +
+ LICENSE-MIT +
+Copyright 2018 Developers of the Rand project
+Copyright (c) 2014 The Rust Project Developers
+
+Permission is hereby granted, free of charge, to any
+person obtaining a copy of this software and associated
+documentation files (the "Software"), to deal in the
+Software without restriction, including without
+limitation the rights to use, copy, modify, merge,
+publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software
+is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice
+shall be included in all copies or substantial portions
+of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
+TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
+PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
+SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+DEALINGS IN THE SOFTWARE.
+
+                
+
+ +

+ + +

📦 rustc-demangle-0.1.27

+

URL: https://crates.io/crates/rustc-demangle/0.1.27

+

Authors: Alex Crichton <alex@alexcrichton.com>

+

License: MIT/Apache-2.0

+ + +

Notices: + +

+ LICENSE-APACHE +
+                              Apache License
+                        Version 2.0, January 2004
+                     http://www.apache.org/licenses/
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions.
+
+   "License" shall mean the terms and conditions for use, reproduction,
+   and distribution as defined by Sections 1 through 9 of this document.
+
+   "Licensor" shall mean the copyright owner or entity authorized by
+   the copyright owner that is granting the License.
+
+   "Legal Entity" shall mean the union of the acting entity and all
+   other entities that control, are controlled by, or are under common
+   control with that entity. For the purposes of this definition,
+   "control" means (i) the power, direct or indirect, to cause the
+   direction or management of such entity, whether by contract or
+   otherwise, or (ii) ownership of fifty percent (50%) or more of the
+   outstanding shares, or (iii) beneficial ownership of such entity.
+
+   "You" (or "Your") shall mean an individual or Legal Entity
+   exercising permissions granted by this License.
+
+   "Source" form shall mean the preferred form for making modifications,
+   including but not limited to software source code, documentation
+   source, and configuration files.
+
+   "Object" form shall mean any form resulting from mechanical
+   transformation or translation of a Source form, including but
+   not limited to compiled object code, generated documentation,
+   and conversions to other media types.
+
+   "Work" shall mean the work of authorship, whether in Source or
+   Object form, made available under the License, as indicated by a
+   copyright notice that is included in or attached to the work
+   (an example is provided in the Appendix below).
+
+   "Derivative Works" shall mean any work, whether in Source or Object
+   form, that is based on (or derived from) the Work and for which the
+   editorial revisions, annotations, elaborations, or other modifications
+   represent, as a whole, an original work of authorship. For the purposes
+   of this License, Derivative Works shall not include works that remain
+   separable from, or merely link (or bind by name) to the interfaces of,
+   the Work and Derivative Works thereof.
+
+   "Contribution" shall mean any work of authorship, including
+   the original version of the Work and any modifications or additions
+   to that Work or Derivative Works thereof, that is intentionally
+   submitted to Licensor for inclusion in the Work by the copyright owner
+   or by an individual or Legal Entity authorized to submit on behalf of
+   the copyright owner. For the purposes of this definition, "submitted"
+   means any form of electronic, verbal, or written communication sent
+   to the Licensor or its representatives, including but not limited to
+   communication on electronic mailing lists, source code control systems,
+   and issue tracking systems that are managed by, or on behalf of, the
+   Licensor for the purpose of discussing and improving the Work, but
+   excluding communication that is conspicuously marked or otherwise
+   designated in writing by the copyright owner as "Not a Contribution."
+
+   "Contributor" shall mean Licensor and any individual or Legal Entity
+   on behalf of whom a Contribution has been received by Licensor and
+   subsequently incorporated within the Work.
+
+2. Grant of Copyright License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   copyright license to reproduce, prepare Derivative Works of,
+   publicly display, publicly perform, sublicense, and distribute the
+   Work and such Derivative Works in Source or Object form.
+
+3. Grant of Patent License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   (except as stated in this section) patent license to make, have made,
+   use, offer to sell, sell, import, and otherwise transfer the Work,
+   where such license applies only to those patent claims licensable
+   by such Contributor that are necessarily infringed by their
+   Contribution(s) alone or by combination of their Contribution(s)
+   with the Work to which such Contribution(s) was submitted. If You
+   institute patent litigation against any entity (including a
+   cross-claim or counterclaim in a lawsuit) alleging that the Work
+   or a Contribution incorporated within the Work constitutes direct
+   or contributory patent infringement, then any patent licenses
+   granted to You under this License for that Work shall terminate
+   as of the date such litigation is filed.
+
+4. Redistribution. You may reproduce and distribute copies of the
+   Work or Derivative Works thereof in any medium, with or without
+   modifications, and in Source or Object form, provided that You
+   meet the following conditions:
+
+   (a) You must give any other recipients of the Work or
+       Derivative Works a copy of this License; and
+
+   (b) You must cause any modified files to carry prominent notices
+       stating that You changed the files; and
+
+   (c) You must retain, in the Source form of any Derivative Works
+       that You distribute, all copyright, patent, trademark, and
+       attribution notices from the Source form of the Work,
+       excluding those notices that do not pertain to any part of
+       the Derivative Works; and
+
+   (d) If the Work includes a "NOTICE" text file as part of its
+       distribution, then any Derivative Works that You distribute must
+       include a readable copy of the attribution notices contained
+       within such NOTICE file, excluding those notices that do not
+       pertain to any part of the Derivative Works, in at least one
+       of the following places: within a NOTICE text file distributed
+       as part of the Derivative Works; within the Source form or
+       documentation, if provided along with the Derivative Works; or,
+       within a display generated by the Derivative Works, if and
+       wherever such third-party notices normally appear. The contents
+       of the NOTICE file are for informational purposes only and
+       do not modify the License. You may add Your own attribution
+       notices within Derivative Works that You distribute, alongside
+       or as an addendum to the NOTICE text from the Work, provided
+       that such additional attribution notices cannot be construed
+       as modifying the License.
+
+   You may add Your own copyright statement to Your modifications and
+   may provide additional or different license terms and conditions
+   for use, reproduction, or distribution of Your modifications, or
+   for any such Derivative Works as a whole, provided Your use,
+   reproduction, and distribution of the Work otherwise complies with
+   the conditions stated in this License.
+
+5. Submission of Contributions. Unless You explicitly state otherwise,
+   any Contribution intentionally submitted for inclusion in the Work
+   by You to the Licensor shall be under the terms and conditions of
+   this License, without any additional terms or conditions.
+   Notwithstanding the above, nothing herein shall supersede or modify
+   the terms of any separate license agreement you may have executed
+   with Licensor regarding such Contributions.
+
+6. Trademarks. This License does not grant permission to use the trade
+   names, trademarks, service marks, or product names of the Licensor,
+   except as required for reasonable and customary use in describing the
+   origin of the Work and reproducing the content of the NOTICE file.
+
+7. Disclaimer of Warranty. Unless required by applicable law or
+   agreed to in writing, Licensor provides the Work (and each
+   Contributor provides its Contributions) on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+   implied, including, without limitation, any warranties or conditions
+   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+   PARTICULAR PURPOSE. You are solely responsible for determining the
+   appropriateness of using or redistributing the Work and assume any
+   risks associated with Your exercise of permissions under this License.
+
+8. Limitation of Liability. In no event and under no legal theory,
+   whether in tort (including negligence), contract, or otherwise,
+   unless required by applicable law (such as deliberate and grossly
+   negligent acts) or agreed to in writing, shall any Contributor be
+   liable to You for damages, including any direct, indirect, special,
+   incidental, or consequential damages of any character arising as a
+   result of this License or out of the use or inability to use the
+   Work (including but not limited to damages for loss of goodwill,
+   work stoppage, computer failure or malfunction, or any and all
+   other commercial damages or losses), even if such Contributor
+   has been advised of the possibility of such damages.
+
+9. Accepting Warranty or Additional Liability. While redistributing
+   the Work or Derivative Works thereof, You may choose to offer,
+   and charge a fee for, acceptance of support, warranty, indemnity,
+   or other liability obligations and/or rights consistent with this
+   License. However, in accepting such obligations, You may act only
+   on Your own behalf and on Your sole responsibility, not on behalf
+   of any other Contributor, and only if You agree to indemnify,
+   defend, and hold each Contributor harmless for any liability
+   incurred by, or claims asserted against, such Contributor by reason
+   of your accepting any such warranty or additional liability.
+
+END OF TERMS AND CONDITIONS
+
+APPENDIX: How to apply the Apache License to your work.
+
+   To apply the Apache License to your work, attach the following
+   boilerplate notice, with the fields enclosed by brackets "[]"
+   replaced with your own identifying information. (Don't include
+   the brackets!)  The text should be enclosed in the appropriate
+   comment syntax for the file format. We also recommend that a
+   file or class name and description of purpose be included on the
+   same "printed page" as the copyright notice for easier
+   identification within third-party archives.
+
+Copyright [yyyy] [name of copyright owner]
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+	http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+
+                
+
+ +
+ LICENSE-MIT +
+Copyright (c) 2014 Alex Crichton
+
+Permission is hereby granted, free of charge, to any
+person obtaining a copy of this software and associated
+documentation files (the "Software"), to deal in the
+Software without restriction, including without
+limitation the rights to use, copy, modify, merge,
+publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software
+is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice
+shall be included in all copies or substantial portions
+of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
+TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
+PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
+SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+DEALINGS IN THE SOFTWARE.
+
+                
+
+ +

+ + +

📦 rustc-literal-escaper-0.0.7

+

URL: https://crates.io/crates/rustc-literal-escaper/0.0.7

+

Authors:

+

License: Apache-2.0 OR MIT

+ + +

Notices: + +

+ LICENSE-APACHE +
+                              Apache License
+                        Version 2.0, January 2004
+                     http://www.apache.org/licenses/
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions.
+
+   "License" shall mean the terms and conditions for use, reproduction,
+   and distribution as defined by Sections 1 through 9 of this document.
+
+   "Licensor" shall mean the copyright owner or entity authorized by
+   the copyright owner that is granting the License.
+
+   "Legal Entity" shall mean the union of the acting entity and all
+   other entities that control, are controlled by, or are under common
+   control with that entity. For the purposes of this definition,
+   "control" means (i) the power, direct or indirect, to cause the
+   direction or management of such entity, whether by contract or
+   otherwise, or (ii) ownership of fifty percent (50%) or more of the
+   outstanding shares, or (iii) beneficial ownership of such entity.
+
+   "You" (or "Your") shall mean an individual or Legal Entity
+   exercising permissions granted by this License.
+
+   "Source" form shall mean the preferred form for making modifications,
+   including but not limited to software source code, documentation
+   source, and configuration files.
+
+   "Object" form shall mean any form resulting from mechanical
+   transformation or translation of a Source form, including but
+   not limited to compiled object code, generated documentation,
+   and conversions to other media types.
+
+   "Work" shall mean the work of authorship, whether in Source or
+   Object form, made available under the License, as indicated by a
+   copyright notice that is included in or attached to the work
+   (an example is provided in the Appendix below).
+
+   "Derivative Works" shall mean any work, whether in Source or Object
+   form, that is based on (or derived from) the Work and for which the
+   editorial revisions, annotations, elaborations, or other modifications
+   represent, as a whole, an original work of authorship. For the purposes
+   of this License, Derivative Works shall not include works that remain
+   separable from, or merely link (or bind by name) to the interfaces of,
+   the Work and Derivative Works thereof.
+
+   "Contribution" shall mean any work of authorship, including
+   the original version of the Work and any modifications or additions
+   to that Work or Derivative Works thereof, that is intentionally
+   submitted to Licensor for inclusion in the Work by the copyright owner
+   or by an individual or Legal Entity authorized to submit on behalf of
+   the copyright owner. For the purposes of this definition, "submitted"
+   means any form of electronic, verbal, or written communication sent
+   to the Licensor or its representatives, including but not limited to
+   communication on electronic mailing lists, source code control systems,
+   and issue tracking systems that are managed by, or on behalf of, the
+   Licensor for the purpose of discussing and improving the Work, but
+   excluding communication that is conspicuously marked or otherwise
+   designated in writing by the copyright owner as "Not a Contribution."
+
+   "Contributor" shall mean Licensor and any individual or Legal Entity
+   on behalf of whom a Contribution has been received by Licensor and
+   subsequently incorporated within the Work.
+
+2. Grant of Copyright License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   copyright license to reproduce, prepare Derivative Works of,
+   publicly display, publicly perform, sublicense, and distribute the
+   Work and such Derivative Works in Source or Object form.
+
+3. Grant of Patent License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   (except as stated in this section) patent license to make, have made,
+   use, offer to sell, sell, import, and otherwise transfer the Work,
+   where such license applies only to those patent claims licensable
+   by such Contributor that are necessarily infringed by their
+   Contribution(s) alone or by combination of their Contribution(s)
+   with the Work to which such Contribution(s) was submitted. If You
+   institute patent litigation against any entity (including a
+   cross-claim or counterclaim in a lawsuit) alleging that the Work
+   or a Contribution incorporated within the Work constitutes direct
+   or contributory patent infringement, then any patent licenses
+   granted to You under this License for that Work shall terminate
+   as of the date such litigation is filed.
+
+4. Redistribution. You may reproduce and distribute copies of the
+   Work or Derivative Works thereof in any medium, with or without
+   modifications, and in Source or Object form, provided that You
+   meet the following conditions:
+
+   (a) You must give any other recipients of the Work or
+       Derivative Works a copy of this License; and
+
+   (b) You must cause any modified files to carry prominent notices
+       stating that You changed the files; and
+
+   (c) You must retain, in the Source form of any Derivative Works
+       that You distribute, all copyright, patent, trademark, and
+       attribution notices from the Source form of the Work,
+       excluding those notices that do not pertain to any part of
+       the Derivative Works; and
+
+   (d) If the Work includes a "NOTICE" text file as part of its
+       distribution, then any Derivative Works that You distribute must
+       include a readable copy of the attribution notices contained
+       within such NOTICE file, excluding those notices that do not
+       pertain to any part of the Derivative Works, in at least one
+       of the following places: within a NOTICE text file distributed
+       as part of the Derivative Works; within the Source form or
+       documentation, if provided along with the Derivative Works; or,
+       within a display generated by the Derivative Works, if and
+       wherever such third-party notices normally appear. The contents
+       of the NOTICE file are for informational purposes only and
+       do not modify the License. You may add Your own attribution
+       notices within Derivative Works that You distribute, alongside
+       or as an addendum to the NOTICE text from the Work, provided
+       that such additional attribution notices cannot be construed
+       as modifying the License.
+
+   You may add Your own copyright statement to Your modifications and
+   may provide additional or different license terms and conditions
+   for use, reproduction, or distribution of Your modifications, or
+   for any such Derivative Works as a whole, provided Your use,
+   reproduction, and distribution of the Work otherwise complies with
+   the conditions stated in this License.
+
+5. Submission of Contributions. Unless You explicitly state otherwise,
+   any Contribution intentionally submitted for inclusion in the Work
+   by You to the Licensor shall be under the terms and conditions of
+   this License, without any additional terms or conditions.
+   Notwithstanding the above, nothing herein shall supersede or modify
+   the terms of any separate license agreement you may have executed
+   with Licensor regarding such Contributions.
+
+6. Trademarks. This License does not grant permission to use the trade
+   names, trademarks, service marks, or product names of the Licensor,
+   except as required for reasonable and customary use in describing the
+   origin of the Work and reproducing the content of the NOTICE file.
+
+7. Disclaimer of Warranty. Unless required by applicable law or
+   agreed to in writing, Licensor provides the Work (and each
+   Contributor provides its Contributions) on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+   implied, including, without limitation, any warranties or conditions
+   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+   PARTICULAR PURPOSE. You are solely responsible for determining the
+   appropriateness of using or redistributing the Work and assume any
+   risks associated with Your exercise of permissions under this License.
+
+8. Limitation of Liability. In no event and under no legal theory,
+   whether in tort (including negligence), contract, or otherwise,
+   unless required by applicable law (such as deliberate and grossly
+   negligent acts) or agreed to in writing, shall any Contributor be
+   liable to You for damages, including any direct, indirect, special,
+   incidental, or consequential damages of any character arising as a
+   result of this License or out of the use or inability to use the
+   Work (including but not limited to damages for loss of goodwill,
+   work stoppage, computer failure or malfunction, or any and all
+   other commercial damages or losses), even if such Contributor
+   has been advised of the possibility of such damages.
+
+9. Accepting Warranty or Additional Liability. While redistributing
+   the Work or Derivative Works thereof, You may choose to offer,
+   and charge a fee for, acceptance of support, warranty, indemnity,
+   or other liability obligations and/or rights consistent with this
+   License. However, in accepting such obligations, You may act only
+   on Your own behalf and on Your sole responsibility, not on behalf
+   of any other Contributor, and only if You agree to indemnify,
+   defend, and hold each Contributor harmless for any liability
+   incurred by, or claims asserted against, such Contributor by reason
+   of your accepting any such warranty or additional liability.
+
+END OF TERMS AND CONDITIONS
+
+                
+
+ +
+ LICENSE-MIT +
+Permission is hereby granted, free of charge, to any
+person obtaining a copy of this software and associated
+documentation files (the "Software"), to deal in the
+Software without restriction, including without
+limitation the rights to use, copy, modify, merge,
+publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software
+is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice
+shall be included in all copies or substantial portions
+of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
+TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
+PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
+SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+DEALINGS IN THE SOFTWARE.
+
+                
+
+ +

+ + +

📦 shlex-1.3.0

+

URL: https://crates.io/crates/shlex/1.3.0

+

Authors: comex <comexk@gmail.com>, Fenhl <fenhl@fenhl.net>, Adrian Taylor <adetaylor@chromium.org>, Alex Touchet <alextouchet@outlook.com>, Daniel Parks <dp+git@oxidized.org>, Garrett Berg <googberg@gmail.com>

+

License: MIT OR Apache-2.0

+ + +

Notices: + +

+ LICENSE-APACHE +
+Copyright 2015 Nicholas Allegra (comex).
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+
+                
+
+ +
+ LICENSE-MIT +
+The MIT License (MIT)
+
+Copyright (c) 2015 Nicholas Allegra (comex).
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+                
+
+ +

+ + +

📦 unwinding-0.2.8

+

URL: https://crates.io/crates/unwinding/0.2.8

+

Authors: Gary Guo <gary@garyguo.net>

+

License: MIT OR Apache-2.0

+ + +

Notices: + +

+ LICENSE-APACHE +
+                              Apache License
+                        Version 2.0, January 2004
+                     http://www.apache.org/licenses/
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions.
+
+   "License" shall mean the terms and conditions for use, reproduction,
+   and distribution as defined by Sections 1 through 9 of this document.
+
+   "Licensor" shall mean the copyright owner or entity authorized by
+   the copyright owner that is granting the License.
+
+   "Legal Entity" shall mean the union of the acting entity and all
+   other entities that control, are controlled by, or are under common
+   control with that entity. For the purposes of this definition,
+   "control" means (i) the power, direct or indirect, to cause the
+   direction or management of such entity, whether by contract or
+   otherwise, or (ii) ownership of fifty percent (50%) or more of the
+   outstanding shares, or (iii) beneficial ownership of such entity.
+
+   "You" (or "Your") shall mean an individual or Legal Entity
+   exercising permissions granted by this License.
+
+   "Source" form shall mean the preferred form for making modifications,
+   including but not limited to software source code, documentation
+   source, and configuration files.
+
+   "Object" form shall mean any form resulting from mechanical
+   transformation or translation of a Source form, including but
+   not limited to compiled object code, generated documentation,
+   and conversions to other media types.
+
+   "Work" shall mean the work of authorship, whether in Source or
+   Object form, made available under the License, as indicated by a
+   copyright notice that is included in or attached to the work
+   (an example is provided in the Appendix below).
+
+   "Derivative Works" shall mean any work, whether in Source or Object
+   form, that is based on (or derived from) the Work and for which the
+   editorial revisions, annotations, elaborations, or other modifications
+   represent, as a whole, an original work of authorship. For the purposes
+   of this License, Derivative Works shall not include works that remain
+   separable from, or merely link (or bind by name) to the interfaces of,
+   the Work and Derivative Works thereof.
+
+   "Contribution" shall mean any work of authorship, including
+   the original version of the Work and any modifications or additions
+   to that Work or Derivative Works thereof, that is intentionally
+   submitted to Licensor for inclusion in the Work by the copyright owner
+   or by an individual or Legal Entity authorized to submit on behalf of
+   the copyright owner. For the purposes of this definition, "submitted"
+   means any form of electronic, verbal, or written communication sent
+   to the Licensor or its representatives, including but not limited to
+   communication on electronic mailing lists, source code control systems,
+   and issue tracking systems that are managed by, or on behalf of, the
+   Licensor for the purpose of discussing and improving the Work, but
+   excluding communication that is conspicuously marked or otherwise
+   designated in writing by the copyright owner as "Not a Contribution."
+
+   "Contributor" shall mean Licensor and any individual or Legal Entity
+   on behalf of whom a Contribution has been received by Licensor and
+   subsequently incorporated within the Work.
+
+2. Grant of Copyright License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   copyright license to reproduce, prepare Derivative Works of,
+   publicly display, publicly perform, sublicense, and distribute the
+   Work and such Derivative Works in Source or Object form.
+
+3. Grant of Patent License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   (except as stated in this section) patent license to make, have made,
+   use, offer to sell, sell, import, and otherwise transfer the Work,
+   where such license applies only to those patent claims licensable
+   by such Contributor that are necessarily infringed by their
+   Contribution(s) alone or by combination of their Contribution(s)
+   with the Work to which such Contribution(s) was submitted. If You
+   institute patent litigation against any entity (including a
+   cross-claim or counterclaim in a lawsuit) alleging that the Work
+   or a Contribution incorporated within the Work constitutes direct
+   or contributory patent infringement, then any patent licenses
+   granted to You under this License for that Work shall terminate
+   as of the date such litigation is filed.
+
+4. Redistribution. You may reproduce and distribute copies of the
+   Work or Derivative Works thereof in any medium, with or without
+   modifications, and in Source or Object form, provided that You
+   meet the following conditions:
+
+   (a) You must give any other recipients of the Work or
+       Derivative Works a copy of this License; and
+
+   (b) You must cause any modified files to carry prominent notices
+       stating that You changed the files; and
+
+   (c) You must retain, in the Source form of any Derivative Works
+       that You distribute, all copyright, patent, trademark, and
+       attribution notices from the Source form of the Work,
+       excluding those notices that do not pertain to any part of
+       the Derivative Works; and
+
+   (d) If the Work includes a "NOTICE" text file as part of its
+       distribution, then any Derivative Works that You distribute must
+       include a readable copy of the attribution notices contained
+       within such NOTICE file, excluding those notices that do not
+       pertain to any part of the Derivative Works, in at least one
+       of the following places: within a NOTICE text file distributed
+       as part of the Derivative Works; within the Source form or
+       documentation, if provided along with the Derivative Works; or,
+       within a display generated by the Derivative Works, if and
+       wherever such third-party notices normally appear. The contents
+       of the NOTICE file are for informational purposes only and
+       do not modify the License. You may add Your own attribution
+       notices within Derivative Works that You distribute, alongside
+       or as an addendum to the NOTICE text from the Work, provided
+       that such additional attribution notices cannot be construed
+       as modifying the License.
+
+   You may add Your own copyright statement to Your modifications and
+   may provide additional or different license terms and conditions
+   for use, reproduction, or distribution of Your modifications, or
+   for any such Derivative Works as a whole, provided Your use,
+   reproduction, and distribution of the Work otherwise complies with
+   the conditions stated in this License.
+
+5. Submission of Contributions. Unless You explicitly state otherwise,
+   any Contribution intentionally submitted for inclusion in the Work
+   by You to the Licensor shall be under the terms and conditions of
+   this License, without any additional terms or conditions.
+   Notwithstanding the above, nothing herein shall supersede or modify
+   the terms of any separate license agreement you may have executed
+   with Licensor regarding such Contributions.
+
+6. Trademarks. This License does not grant permission to use the trade
+   names, trademarks, service marks, or product names of the Licensor,
+   except as required for reasonable and customary use in describing the
+   origin of the Work and reproducing the content of the NOTICE file.
+
+7. Disclaimer of Warranty. Unless required by applicable law or
+   agreed to in writing, Licensor provides the Work (and each
+   Contributor provides its Contributions) on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+   implied, including, without limitation, any warranties or conditions
+   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+   PARTICULAR PURPOSE. You are solely responsible for determining the
+   appropriateness of using or redistributing the Work and assume any
+   risks associated with Your exercise of permissions under this License.
+
+8. Limitation of Liability. In no event and under no legal theory,
+   whether in tort (including negligence), contract, or otherwise,
+   unless required by applicable law (such as deliberate and grossly
+   negligent acts) or agreed to in writing, shall any Contributor be
+   liable to You for damages, including any direct, indirect, special,
+   incidental, or consequential damages of any character arising as a
+   result of this License or out of the use or inability to use the
+   Work (including but not limited to damages for loss of goodwill,
+   work stoppage, computer failure or malfunction, or any and all
+   other commercial damages or losses), even if such Contributor
+   has been advised of the possibility of such damages.
+
+9. Accepting Warranty or Additional Liability. While redistributing
+   the Work or Derivative Works thereof, You may choose to offer,
+   and charge a fee for, acceptance of support, warranty, indemnity,
+   or other liability obligations and/or rights consistent with this
+   License. However, in accepting such obligations, You may act only
+   on Your own behalf and on Your sole responsibility, not on behalf
+   of any other Contributor, and only if You agree to indemnify,
+   defend, and hold each Contributor harmless for any liability
+   incurred by, or claims asserted against, such Contributor by reason
+   of your accepting any such warranty or additional liability.
+
+END OF TERMS AND CONDITIONS
+
+                
+
+ +
+ LICENSE-MIT +
+Permission is hereby granted, free of charge, to any
+person obtaining a copy of this software and associated
+documentation files (the "Software"), to deal in the
+Software without restriction, including without
+limitation the rights to use, copy, modify, merge,
+publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software
+is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice
+shall be included in all copies or substantial portions
+of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
+TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
+PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
+SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+DEALINGS IN THE SOFTWARE.
+
+                
+
+ +

+ + +

📦 vex-sdk-0.27.1

+

URL: https://crates.io/crates/vex-sdk/0.27.1

+

Authors: Tropical

+

License: MIT

+ + + +

📦 wasi-0.11.1+wasi-snapshot-preview1

+

URL: https://crates.io/crates/wasi/0.11.1+wasi-snapshot-preview1

+

Authors: The Cranelift Project Developers

+

License: Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT

+ + +

Notices: + +

+ LICENSE-APACHE +
+                              Apache License
+                        Version 2.0, January 2004
+                     http://www.apache.org/licenses/
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions.
+
+   "License" shall mean the terms and conditions for use, reproduction,
+   and distribution as defined by Sections 1 through 9 of this document.
+
+   "Licensor" shall mean the copyright owner or entity authorized by
+   the copyright owner that is granting the License.
+
+   "Legal Entity" shall mean the union of the acting entity and all
+   other entities that control, are controlled by, or are under common
+   control with that entity. For the purposes of this definition,
+   "control" means (i) the power, direct or indirect, to cause the
+   direction or management of such entity, whether by contract or
+   otherwise, or (ii) ownership of fifty percent (50%) or more of the
+   outstanding shares, or (iii) beneficial ownership of such entity.
+
+   "You" (or "Your") shall mean an individual or Legal Entity
+   exercising permissions granted by this License.
+
+   "Source" form shall mean the preferred form for making modifications,
+   including but not limited to software source code, documentation
+   source, and configuration files.
+
+   "Object" form shall mean any form resulting from mechanical
+   transformation or translation of a Source form, including but
+   not limited to compiled object code, generated documentation,
+   and conversions to other media types.
+
+   "Work" shall mean the work of authorship, whether in Source or
+   Object form, made available under the License, as indicated by a
+   copyright notice that is included in or attached to the work
+   (an example is provided in the Appendix below).
+
+   "Derivative Works" shall mean any work, whether in Source or Object
+   form, that is based on (or derived from) the Work and for which the
+   editorial revisions, annotations, elaborations, or other modifications
+   represent, as a whole, an original work of authorship. For the purposes
+   of this License, Derivative Works shall not include works that remain
+   separable from, or merely link (or bind by name) to the interfaces of,
+   the Work and Derivative Works thereof.
+
+   "Contribution" shall mean any work of authorship, including
+   the original version of the Work and any modifications or additions
+   to that Work or Derivative Works thereof, that is intentionally
+   submitted to Licensor for inclusion in the Work by the copyright owner
+   or by an individual or Legal Entity authorized to submit on behalf of
+   the copyright owner. For the purposes of this definition, "submitted"
+   means any form of electronic, verbal, or written communication sent
+   to the Licensor or its representatives, including but not limited to
+   communication on electronic mailing lists, source code control systems,
+   and issue tracking systems that are managed by, or on behalf of, the
+   Licensor for the purpose of discussing and improving the Work, but
+   excluding communication that is conspicuously marked or otherwise
+   designated in writing by the copyright owner as "Not a Contribution."
+
+   "Contributor" shall mean Licensor and any individual or Legal Entity
+   on behalf of whom a Contribution has been received by Licensor and
+   subsequently incorporated within the Work.
+
+2. Grant of Copyright License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   copyright license to reproduce, prepare Derivative Works of,
+   publicly display, publicly perform, sublicense, and distribute the
+   Work and such Derivative Works in Source or Object form.
+
+3. Grant of Patent License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   (except as stated in this section) patent license to make, have made,
+   use, offer to sell, sell, import, and otherwise transfer the Work,
+   where such license applies only to those patent claims licensable
+   by such Contributor that are necessarily infringed by their
+   Contribution(s) alone or by combination of their Contribution(s)
+   with the Work to which such Contribution(s) was submitted. If You
+   institute patent litigation against any entity (including a
+   cross-claim or counterclaim in a lawsuit) alleging that the Work
+   or a Contribution incorporated within the Work constitutes direct
+   or contributory patent infringement, then any patent licenses
+   granted to You under this License for that Work shall terminate
+   as of the date such litigation is filed.
+
+4. Redistribution. You may reproduce and distribute copies of the
+   Work or Derivative Works thereof in any medium, with or without
+   modifications, and in Source or Object form, provided that You
+   meet the following conditions:
+
+   (a) You must give any other recipients of the Work or
+       Derivative Works a copy of this License; and
+
+   (b) You must cause any modified files to carry prominent notices
+       stating that You changed the files; and
+
+   (c) You must retain, in the Source form of any Derivative Works
+       that You distribute, all copyright, patent, trademark, and
+       attribution notices from the Source form of the Work,
+       excluding those notices that do not pertain to any part of
+       the Derivative Works; and
+
+   (d) If the Work includes a "NOTICE" text file as part of its
+       distribution, then any Derivative Works that You distribute must
+       include a readable copy of the attribution notices contained
+       within such NOTICE file, excluding those notices that do not
+       pertain to any part of the Derivative Works, in at least one
+       of the following places: within a NOTICE text file distributed
+       as part of the Derivative Works; within the Source form or
+       documentation, if provided along with the Derivative Works; or,
+       within a display generated by the Derivative Works, if and
+       wherever such third-party notices normally appear. The contents
+       of the NOTICE file are for informational purposes only and
+       do not modify the License. You may add Your own attribution
+       notices within Derivative Works that You distribute, alongside
+       or as an addendum to the NOTICE text from the Work, provided
+       that such additional attribution notices cannot be construed
+       as modifying the License.
+
+   You may add Your own copyright statement to Your modifications and
+   may provide additional or different license terms and conditions
+   for use, reproduction, or distribution of Your modifications, or
+   for any such Derivative Works as a whole, provided Your use,
+   reproduction, and distribution of the Work otherwise complies with
+   the conditions stated in this License.
+
+5. Submission of Contributions. Unless You explicitly state otherwise,
+   any Contribution intentionally submitted for inclusion in the Work
+   by You to the Licensor shall be under the terms and conditions of
+   this License, without any additional terms or conditions.
+   Notwithstanding the above, nothing herein shall supersede or modify
+   the terms of any separate license agreement you may have executed
+   with Licensor regarding such Contributions.
+
+6. Trademarks. This License does not grant permission to use the trade
+   names, trademarks, service marks, or product names of the Licensor,
+   except as required for reasonable and customary use in describing the
+   origin of the Work and reproducing the content of the NOTICE file.
+
+7. Disclaimer of Warranty. Unless required by applicable law or
+   agreed to in writing, Licensor provides the Work (and each
+   Contributor provides its Contributions) on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+   implied, including, without limitation, any warranties or conditions
+   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+   PARTICULAR PURPOSE. You are solely responsible for determining the
+   appropriateness of using or redistributing the Work and assume any
+   risks associated with Your exercise of permissions under this License.
+
+8. Limitation of Liability. In no event and under no legal theory,
+   whether in tort (including negligence), contract, or otherwise,
+   unless required by applicable law (such as deliberate and grossly
+   negligent acts) or agreed to in writing, shall any Contributor be
+   liable to You for damages, including any direct, indirect, special,
+   incidental, or consequential damages of any character arising as a
+   result of this License or out of the use or inability to use the
+   Work (including but not limited to damages for loss of goodwill,
+   work stoppage, computer failure or malfunction, or any and all
+   other commercial damages or losses), even if such Contributor
+   has been advised of the possibility of such damages.
+
+9. Accepting Warranty or Additional Liability. While redistributing
+   the Work or Derivative Works thereof, You may choose to offer,
+   and charge a fee for, acceptance of support, warranty, indemnity,
+   or other liability obligations and/or rights consistent with this
+   License. However, in accepting such obligations, You may act only
+   on Your own behalf and on Your sole responsibility, not on behalf
+   of any other Contributor, and only if You agree to indemnify,
+   defend, and hold each Contributor harmless for any liability
+   incurred by, or claims asserted against, such Contributor by reason
+   of your accepting any such warranty or additional liability.
+
+END OF TERMS AND CONDITIONS
+
+APPENDIX: How to apply the Apache License to your work.
+
+   To apply the Apache License to your work, attach the following
+   boilerplate notice, with the fields enclosed by brackets "[]"
+   replaced with your own identifying information. (Don't include
+   the brackets!)  The text should be enclosed in the appropriate
+   comment syntax for the file format. We also recommend that a
+   file or class name and description of purpose be included on the
+   same "printed page" as the copyright notice for easier
+   identification within third-party archives.
+
+Copyright [yyyy] [name of copyright owner]
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+	http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+
+                
+
+ +
+ LICENSE-Apache-2.0_WITH_LLVM-exception +
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
+
+--- LLVM Exceptions to the Apache 2.0 License ----
+
+As an exception, if, as a result of your compiling your source code, portions
+of this Software are embedded into an Object form of such source code, you
+may redistribute such embedded portions in such Object form without complying
+with the conditions of Sections 4(a), 4(b) and 4(d) of the License.
+
+In addition, if you combine or link compiled forms of this Software with
+software that is licensed under the GPLv2 ("Combined Software") and if a
+court of competent jurisdiction determines that the patent provision (Section
+3), the indemnity provision (Section 9) or other Section of the License
+conflicts with the conditions of the GPLv2, you may retroactively and
+prospectively choose to deem waived or otherwise exclude such Section(s) of
+the License, but only in their entirety and only with respect to the Combined
+Software.
+
+
+                
+
+ +
+ LICENSE-MIT +
+Permission is hereby granted, free of charge, to any
+person obtaining a copy of this software and associated
+documentation files (the "Software"), to deal in the
+Software without restriction, including without
+limitation the rights to use, copy, modify, merge,
+publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software
+is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice
+shall be included in all copies or substantial portions
+of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
+TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
+PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
+SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+DEALINGS IN THE SOFTWARE.
+
+                
+
+ +

+ + +

📦 wasi-0.14.4+wasi-0.2.4

+

URL: https://crates.io/crates/wasi/0.14.4+wasi-0.2.4

+

Authors: The Cranelift Project Developers

+

License: Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT

+ + +

Notices: + +

+ LICENSE-APACHE +
+                              Apache License
+                        Version 2.0, January 2004
+                     http://www.apache.org/licenses/
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions.
+
+   "License" shall mean the terms and conditions for use, reproduction,
+   and distribution as defined by Sections 1 through 9 of this document.
+
+   "Licensor" shall mean the copyright owner or entity authorized by
+   the copyright owner that is granting the License.
+
+   "Legal Entity" shall mean the union of the acting entity and all
+   other entities that control, are controlled by, or are under common
+   control with that entity. For the purposes of this definition,
+   "control" means (i) the power, direct or indirect, to cause the
+   direction or management of such entity, whether by contract or
+   otherwise, or (ii) ownership of fifty percent (50%) or more of the
+   outstanding shares, or (iii) beneficial ownership of such entity.
+
+   "You" (or "Your") shall mean an individual or Legal Entity
+   exercising permissions granted by this License.
+
+   "Source" form shall mean the preferred form for making modifications,
+   including but not limited to software source code, documentation
+   source, and configuration files.
+
+   "Object" form shall mean any form resulting from mechanical
+   transformation or translation of a Source form, including but
+   not limited to compiled object code, generated documentation,
+   and conversions to other media types.
+
+   "Work" shall mean the work of authorship, whether in Source or
+   Object form, made available under the License, as indicated by a
+   copyright notice that is included in or attached to the work
+   (an example is provided in the Appendix below).
+
+   "Derivative Works" shall mean any work, whether in Source or Object
+   form, that is based on (or derived from) the Work and for which the
+   editorial revisions, annotations, elaborations, or other modifications
+   represent, as a whole, an original work of authorship. For the purposes
+   of this License, Derivative Works shall not include works that remain
+   separable from, or merely link (or bind by name) to the interfaces of,
+   the Work and Derivative Works thereof.
+
+   "Contribution" shall mean any work of authorship, including
+   the original version of the Work and any modifications or additions
+   to that Work or Derivative Works thereof, that is intentionally
+   submitted to Licensor for inclusion in the Work by the copyright owner
+   or by an individual or Legal Entity authorized to submit on behalf of
+   the copyright owner. For the purposes of this definition, "submitted"
+   means any form of electronic, verbal, or written communication sent
+   to the Licensor or its representatives, including but not limited to
+   communication on electronic mailing lists, source code control systems,
+   and issue tracking systems that are managed by, or on behalf of, the
+   Licensor for the purpose of discussing and improving the Work, but
+   excluding communication that is conspicuously marked or otherwise
+   designated in writing by the copyright owner as "Not a Contribution."
+
+   "Contributor" shall mean Licensor and any individual or Legal Entity
+   on behalf of whom a Contribution has been received by Licensor and
+   subsequently incorporated within the Work.
+
+2. Grant of Copyright License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   copyright license to reproduce, prepare Derivative Works of,
+   publicly display, publicly perform, sublicense, and distribute the
+   Work and such Derivative Works in Source or Object form.
+
+3. Grant of Patent License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   (except as stated in this section) patent license to make, have made,
+   use, offer to sell, sell, import, and otherwise transfer the Work,
+   where such license applies only to those patent claims licensable
+   by such Contributor that are necessarily infringed by their
+   Contribution(s) alone or by combination of their Contribution(s)
+   with the Work to which such Contribution(s) was submitted. If You
+   institute patent litigation against any entity (including a
+   cross-claim or counterclaim in a lawsuit) alleging that the Work
+   or a Contribution incorporated within the Work constitutes direct
+   or contributory patent infringement, then any patent licenses
+   granted to You under this License for that Work shall terminate
+   as of the date such litigation is filed.
+
+4. Redistribution. You may reproduce and distribute copies of the
+   Work or Derivative Works thereof in any medium, with or without
+   modifications, and in Source or Object form, provided that You
+   meet the following conditions:
+
+   (a) You must give any other recipients of the Work or
+       Derivative Works a copy of this License; and
+
+   (b) You must cause any modified files to carry prominent notices
+       stating that You changed the files; and
+
+   (c) You must retain, in the Source form of any Derivative Works
+       that You distribute, all copyright, patent, trademark, and
+       attribution notices from the Source form of the Work,
+       excluding those notices that do not pertain to any part of
+       the Derivative Works; and
+
+   (d) If the Work includes a "NOTICE" text file as part of its
+       distribution, then any Derivative Works that You distribute must
+       include a readable copy of the attribution notices contained
+       within such NOTICE file, excluding those notices that do not
+       pertain to any part of the Derivative Works, in at least one
+       of the following places: within a NOTICE text file distributed
+       as part of the Derivative Works; within the Source form or
+       documentation, if provided along with the Derivative Works; or,
+       within a display generated by the Derivative Works, if and
+       wherever such third-party notices normally appear. The contents
+       of the NOTICE file are for informational purposes only and
+       do not modify the License. You may add Your own attribution
+       notices within Derivative Works that You distribute, alongside
+       or as an addendum to the NOTICE text from the Work, provided
+       that such additional attribution notices cannot be construed
+       as modifying the License.
+
+   You may add Your own copyright statement to Your modifications and
+   may provide additional or different license terms and conditions
+   for use, reproduction, or distribution of Your modifications, or
+   for any such Derivative Works as a whole, provided Your use,
+   reproduction, and distribution of the Work otherwise complies with
+   the conditions stated in this License.
+
+5. Submission of Contributions. Unless You explicitly state otherwise,
+   any Contribution intentionally submitted for inclusion in the Work
+   by You to the Licensor shall be under the terms and conditions of
+   this License, without any additional terms or conditions.
+   Notwithstanding the above, nothing herein shall supersede or modify
+   the terms of any separate license agreement you may have executed
+   with Licensor regarding such Contributions.
+
+6. Trademarks. This License does not grant permission to use the trade
+   names, trademarks, service marks, or product names of the Licensor,
+   except as required for reasonable and customary use in describing the
+   origin of the Work and reproducing the content of the NOTICE file.
+
+7. Disclaimer of Warranty. Unless required by applicable law or
+   agreed to in writing, Licensor provides the Work (and each
+   Contributor provides its Contributions) on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+   implied, including, without limitation, any warranties or conditions
+   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+   PARTICULAR PURPOSE. You are solely responsible for determining the
+   appropriateness of using or redistributing the Work and assume any
+   risks associated with Your exercise of permissions under this License.
+
+8. Limitation of Liability. In no event and under no legal theory,
+   whether in tort (including negligence), contract, or otherwise,
+   unless required by applicable law (such as deliberate and grossly
+   negligent acts) or agreed to in writing, shall any Contributor be
+   liable to You for damages, including any direct, indirect, special,
+   incidental, or consequential damages of any character arising as a
+   result of this License or out of the use or inability to use the
+   Work (including but not limited to damages for loss of goodwill,
+   work stoppage, computer failure or malfunction, or any and all
+   other commercial damages or losses), even if such Contributor
+   has been advised of the possibility of such damages.
+
+9. Accepting Warranty or Additional Liability. While redistributing
+   the Work or Derivative Works thereof, You may choose to offer,
+   and charge a fee for, acceptance of support, warranty, indemnity,
+   or other liability obligations and/or rights consistent with this
+   License. However, in accepting such obligations, You may act only
+   on Your own behalf and on Your sole responsibility, not on behalf
+   of any other Contributor, and only if You agree to indemnify,
+   defend, and hold each Contributor harmless for any liability
+   incurred by, or claims asserted against, such Contributor by reason
+   of your accepting any such warranty or additional liability.
+
+END OF TERMS AND CONDITIONS
+
+APPENDIX: How to apply the Apache License to your work.
+
+   To apply the Apache License to your work, attach the following
+   boilerplate notice, with the fields enclosed by brackets "[]"
+   replaced with your own identifying information. (Don't include
+   the brackets!)  The text should be enclosed in the appropriate
+   comment syntax for the file format. We also recommend that a
+   file or class name and description of purpose be included on the
+   same "printed page" as the copyright notice for easier
+   identification within third-party archives.
+
+Copyright [yyyy] [name of copyright owner]
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+	http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+
+                
+
+ +
+ LICENSE-Apache-2.0_WITH_LLVM-exception +
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
+
+--- LLVM Exceptions to the Apache 2.0 License ----
+
+As an exception, if, as a result of your compiling your source code, portions
+of this Software are embedded into an Object form of such source code, you
+may redistribute such embedded portions in such Object form without complying
+with the conditions of Sections 4(a), 4(b) and 4(d) of the License.
+
+In addition, if you combine or link compiled forms of this Software with
+software that is licensed under the GPLv2 ("Combined Software") and if a
+court of competent jurisdiction determines that the patent provision (Section
+3), the indemnity provision (Section 9) or other Section of the License
+conflicts with the conditions of the GPLv2, you may retroactively and
+prospectively choose to deem waived or otherwise exclude such Section(s) of
+the License, but only in their entirety and only with respect to the Combined
+Software.
+
+
+                
+
+ +
+ LICENSE-MIT +
+Permission is hereby granted, free of charge, to any
+person obtaining a copy of this software and associated
+documentation files (the "Software"), to deal in the
+Software without restriction, including without
+limitation the rights to use, copy, modify, merge,
+publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software
+is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice
+shall be included in all copies or substantial portions
+of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
+TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
+PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
+SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+DEALINGS IN THE SOFTWARE.
+
+                
+
+ +

+ + +

📦 windows-link-0.2.1

+

URL: https://crates.io/crates/windows-link/0.2.1

+

Authors:

+

License: MIT OR Apache-2.0

+ + +

Notices: + +

+ license-apache-2.0 +
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright (c) Microsoft Corporation.
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
+                
+
+ +
+ license-mit +
+    MIT License
+
+    Copyright (c) Microsoft Corporation.
+
+    Permission is hereby granted, free of charge, to any person obtaining a copy
+    of this software and associated documentation files (the "Software"), to deal
+    in the Software without restriction, including without limitation the rights
+    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+    copies of the Software, and to permit persons to whom the Software is
+    furnished to do so, subject to the following conditions:
+
+    The above copyright notice and this permission notice shall be included in all
+    copies or substantial portions of the Software.
+
+    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+    SOFTWARE
+
+                
+
+ +

+ + +

📦 windows-sys-0.60.2

+

URL: https://crates.io/crates/windows-sys/0.60.2

+

Authors: Microsoft

+

License: MIT OR Apache-2.0

+ + +

Notices: + +

+ license-apache-2.0 +
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright (c) Microsoft Corporation.
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
+                
+
+ +
+ license-mit +
+    MIT License
+
+    Copyright (c) Microsoft Corporation.
+
+    Permission is hereby granted, free of charge, to any person obtaining a copy
+    of this software and associated documentation files (the "Software"), to deal
+    in the Software without restriction, including without limitation the rights
+    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+    copies of the Software, and to permit persons to whom the Software is
+    furnished to do so, subject to the following conditions:
+
+    The above copyright notice and this permission notice shall be included in all
+    copies or substantial portions of the Software.
+
+    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+    SOFTWARE
+
+                
+
+ +

+ + +

📦 windows-targets-0.53.5

+

URL: https://crates.io/crates/windows-targets/0.53.5

+

Authors:

+

License: MIT OR Apache-2.0

+ + +

Notices: + +

+ license-apache-2.0 +
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright (c) Microsoft Corporation.
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
+                
+
+ +
+ license-mit +
+    MIT License
+
+    Copyright (c) Microsoft Corporation.
+
+    Permission is hereby granted, free of charge, to any person obtaining a copy
+    of this software and associated documentation files (the "Software"), to deal
+    in the Software without restriction, including without limitation the rights
+    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+    copies of the Software, and to permit persons to whom the Software is
+    furnished to do so, subject to the following conditions:
+
+    The above copyright notice and this permission notice shall be included in all
+    copies or substantial portions of the Software.
+
+    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+    SOFTWARE
+
+                
+
+ +

+ + +

📦 windows_aarch64_gnullvm-0.53.1

+

URL: https://crates.io/crates/windows_aarch64_gnullvm/0.53.1

+

Authors:

+

License: MIT OR Apache-2.0

+ + +

Notices: + +

+ license-apache-2.0 +
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright (c) Microsoft Corporation.
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
+                
+
+ +
+ license-mit +
+    MIT License
+
+    Copyright (c) Microsoft Corporation.
+
+    Permission is hereby granted, free of charge, to any person obtaining a copy
+    of this software and associated documentation files (the "Software"), to deal
+    in the Software without restriction, including without limitation the rights
+    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+    copies of the Software, and to permit persons to whom the Software is
+    furnished to do so, subject to the following conditions:
+
+    The above copyright notice and this permission notice shall be included in all
+    copies or substantial portions of the Software.
+
+    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+    SOFTWARE
+
+                
+
+ +

+ + +

📦 windows_aarch64_msvc-0.53.1

+

URL: https://crates.io/crates/windows_aarch64_msvc/0.53.1

+

Authors:

+

License: MIT OR Apache-2.0

+ + +

Notices: + +

+ license-apache-2.0 +
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright (c) Microsoft Corporation.
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
+                
+
+ +
+ license-mit +
+    MIT License
+
+    Copyright (c) Microsoft Corporation.
+
+    Permission is hereby granted, free of charge, to any person obtaining a copy
+    of this software and associated documentation files (the "Software"), to deal
+    in the Software without restriction, including without limitation the rights
+    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+    copies of the Software, and to permit persons to whom the Software is
+    furnished to do so, subject to the following conditions:
+
+    The above copyright notice and this permission notice shall be included in all
+    copies or substantial portions of the Software.
+
+    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+    SOFTWARE
+
+                
+
+ +

+ + +

📦 windows_i686_gnu-0.53.1

+

URL: https://crates.io/crates/windows_i686_gnu/0.53.1

+

Authors:

+

License: MIT OR Apache-2.0

+ + +

Notices: + +

+ license-apache-2.0 +
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright (c) Microsoft Corporation.
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
+                
+
+ +
+ license-mit +
+    MIT License
+
+    Copyright (c) Microsoft Corporation.
+
+    Permission is hereby granted, free of charge, to any person obtaining a copy
+    of this software and associated documentation files (the "Software"), to deal
+    in the Software without restriction, including without limitation the rights
+    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+    copies of the Software, and to permit persons to whom the Software is
+    furnished to do so, subject to the following conditions:
+
+    The above copyright notice and this permission notice shall be included in all
+    copies or substantial portions of the Software.
+
+    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+    SOFTWARE
+
+                
+
+ +

+ + +

📦 windows_i686_gnullvm-0.53.1

+

URL: https://crates.io/crates/windows_i686_gnullvm/0.53.1

+

Authors:

+

License: MIT OR Apache-2.0

+ + +

Notices: + +

+ license-apache-2.0 +
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright (c) Microsoft Corporation.
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
+                
+
+ +
+ license-mit +
+    MIT License
+
+    Copyright (c) Microsoft Corporation.
+
+    Permission is hereby granted, free of charge, to any person obtaining a copy
+    of this software and associated documentation files (the "Software"), to deal
+    in the Software without restriction, including without limitation the rights
+    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+    copies of the Software, and to permit persons to whom the Software is
+    furnished to do so, subject to the following conditions:
+
+    The above copyright notice and this permission notice shall be included in all
+    copies or substantial portions of the Software.
+
+    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+    SOFTWARE
+
+                
+
+ +

+ + +

📦 windows_i686_msvc-0.53.1

+

URL: https://crates.io/crates/windows_i686_msvc/0.53.1

+

Authors:

+

License: MIT OR Apache-2.0

+ + +

Notices: + +

+ license-apache-2.0 +
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright (c) Microsoft Corporation.
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
+                
+
+ +
+ license-mit +
+    MIT License
+
+    Copyright (c) Microsoft Corporation.
+
+    Permission is hereby granted, free of charge, to any person obtaining a copy
+    of this software and associated documentation files (the "Software"), to deal
+    in the Software without restriction, including without limitation the rights
+    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+    copies of the Software, and to permit persons to whom the Software is
+    furnished to do so, subject to the following conditions:
+
+    The above copyright notice and this permission notice shall be included in all
+    copies or substantial portions of the Software.
+
+    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+    SOFTWARE
+
+                
+
+ +

+ + +

📦 windows_x86_64_gnu-0.53.1

+

URL: https://crates.io/crates/windows_x86_64_gnu/0.53.1

+

Authors:

+

License: MIT OR Apache-2.0

+ + +

Notices: + +

+ license-apache-2.0 +
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright (c) Microsoft Corporation.
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
+                
+
+ +
+ license-mit +
+    MIT License
+
+    Copyright (c) Microsoft Corporation.
+
+    Permission is hereby granted, free of charge, to any person obtaining a copy
+    of this software and associated documentation files (the "Software"), to deal
+    in the Software without restriction, including without limitation the rights
+    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+    copies of the Software, and to permit persons to whom the Software is
+    furnished to do so, subject to the following conditions:
+
+    The above copyright notice and this permission notice shall be included in all
+    copies or substantial portions of the Software.
+
+    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+    SOFTWARE
+
+                
+
+ +

+ + +

📦 windows_x86_64_gnullvm-0.53.1

+

URL: https://crates.io/crates/windows_x86_64_gnullvm/0.53.1

+

Authors:

+

License: MIT OR Apache-2.0

+ + +

Notices: + +

+ license-apache-2.0 +
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright (c) Microsoft Corporation.
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
+                
+
+ +
+ license-mit +
+    MIT License
+
+    Copyright (c) Microsoft Corporation.
+
+    Permission is hereby granted, free of charge, to any person obtaining a copy
+    of this software and associated documentation files (the "Software"), to deal
+    in the Software without restriction, including without limitation the rights
+    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+    copies of the Software, and to permit persons to whom the Software is
+    furnished to do so, subject to the following conditions:
+
+    The above copyright notice and this permission notice shall be included in all
+    copies or substantial portions of the Software.
+
+    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+    SOFTWARE
+
+                
+
+ +

+ + +

📦 windows_x86_64_msvc-0.53.1

+

URL: https://crates.io/crates/windows_x86_64_msvc/0.53.1

+

Authors:

+

License: MIT OR Apache-2.0

+ + +

Notices: + +

+ license-apache-2.0 +
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright (c) Microsoft Corporation.
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
+                
+
+ +
+ license-mit +
+    MIT License
+
+    Copyright (c) Microsoft Corporation.
+
+    Permission is hereby granted, free of charge, to any person obtaining a copy
+    of this software and associated documentation files (the "Software"), to deal
+    in the Software without restriction, including without limitation the rights
+    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+    copies of the Software, and to permit persons to whom the Software is
+    furnished to do so, subject to the following conditions:
+
+    The above copyright notice and this permission notice shall be included in all
+    copies or substantial portions of the Software.
+
+    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+    SOFTWARE
+
+                
+
+ +

+ + +

📦 wit-bindgen-0.45.1

+

URL: https://crates.io/crates/wit-bindgen/0.45.1

+

Authors: Alex Crichton <alex@alexcrichton.com>

+

License: Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT

+ + +

Notices: + +

+ LICENSE-APACHE +
+                              Apache License
+                        Version 2.0, January 2004
+                     http://www.apache.org/licenses/
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions.
+
+   "License" shall mean the terms and conditions for use, reproduction,
+   and distribution as defined by Sections 1 through 9 of this document.
+
+   "Licensor" shall mean the copyright owner or entity authorized by
+   the copyright owner that is granting the License.
+
+   "Legal Entity" shall mean the union of the acting entity and all
+   other entities that control, are controlled by, or are under common
+   control with that entity. For the purposes of this definition,
+   "control" means (i) the power, direct or indirect, to cause the
+   direction or management of such entity, whether by contract or
+   otherwise, or (ii) ownership of fifty percent (50%) or more of the
+   outstanding shares, or (iii) beneficial ownership of such entity.
+
+   "You" (or "Your") shall mean an individual or Legal Entity
+   exercising permissions granted by this License.
+
+   "Source" form shall mean the preferred form for making modifications,
+   including but not limited to software source code, documentation
+   source, and configuration files.
+
+   "Object" form shall mean any form resulting from mechanical
+   transformation or translation of a Source form, including but
+   not limited to compiled object code, generated documentation,
+   and conversions to other media types.
+
+   "Work" shall mean the work of authorship, whether in Source or
+   Object form, made available under the License, as indicated by a
+   copyright notice that is included in or attached to the work
+   (an example is provided in the Appendix below).
+
+   "Derivative Works" shall mean any work, whether in Source or Object
+   form, that is based on (or derived from) the Work and for which the
+   editorial revisions, annotations, elaborations, or other modifications
+   represent, as a whole, an original work of authorship. For the purposes
+   of this License, Derivative Works shall not include works that remain
+   separable from, or merely link (or bind by name) to the interfaces of,
+   the Work and Derivative Works thereof.
+
+   "Contribution" shall mean any work of authorship, including
+   the original version of the Work and any modifications or additions
+   to that Work or Derivative Works thereof, that is intentionally
+   submitted to Licensor for inclusion in the Work by the copyright owner
+   or by an individual or Legal Entity authorized to submit on behalf of
+   the copyright owner. For the purposes of this definition, "submitted"
+   means any form of electronic, verbal, or written communication sent
+   to the Licensor or its representatives, including but not limited to
+   communication on electronic mailing lists, source code control systems,
+   and issue tracking systems that are managed by, or on behalf of, the
+   Licensor for the purpose of discussing and improving the Work, but
+   excluding communication that is conspicuously marked or otherwise
+   designated in writing by the copyright owner as "Not a Contribution."
+
+   "Contributor" shall mean Licensor and any individual or Legal Entity
+   on behalf of whom a Contribution has been received by Licensor and
+   subsequently incorporated within the Work.
+
+2. Grant of Copyright License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   copyright license to reproduce, prepare Derivative Works of,
+   publicly display, publicly perform, sublicense, and distribute the
+   Work and such Derivative Works in Source or Object form.
+
+3. Grant of Patent License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   (except as stated in this section) patent license to make, have made,
+   use, offer to sell, sell, import, and otherwise transfer the Work,
+   where such license applies only to those patent claims licensable
+   by such Contributor that are necessarily infringed by their
+   Contribution(s) alone or by combination of their Contribution(s)
+   with the Work to which such Contribution(s) was submitted. If You
+   institute patent litigation against any entity (including a
+   cross-claim or counterclaim in a lawsuit) alleging that the Work
+   or a Contribution incorporated within the Work constitutes direct
+   or contributory patent infringement, then any patent licenses
+   granted to You under this License for that Work shall terminate
+   as of the date such litigation is filed.
+
+4. Redistribution. You may reproduce and distribute copies of the
+   Work or Derivative Works thereof in any medium, with or without
+   modifications, and in Source or Object form, provided that You
+   meet the following conditions:
+
+   (a) You must give any other recipients of the Work or
+       Derivative Works a copy of this License; and
+
+   (b) You must cause any modified files to carry prominent notices
+       stating that You changed the files; and
+
+   (c) You must retain, in the Source form of any Derivative Works
+       that You distribute, all copyright, patent, trademark, and
+       attribution notices from the Source form of the Work,
+       excluding those notices that do not pertain to any part of
+       the Derivative Works; and
+
+   (d) If the Work includes a "NOTICE" text file as part of its
+       distribution, then any Derivative Works that You distribute must
+       include a readable copy of the attribution notices contained
+       within such NOTICE file, excluding those notices that do not
+       pertain to any part of the Derivative Works, in at least one
+       of the following places: within a NOTICE text file distributed
+       as part of the Derivative Works; within the Source form or
+       documentation, if provided along with the Derivative Works; or,
+       within a display generated by the Derivative Works, if and
+       wherever such third-party notices normally appear. The contents
+       of the NOTICE file are for informational purposes only and
+       do not modify the License. You may add Your own attribution
+       notices within Derivative Works that You distribute, alongside
+       or as an addendum to the NOTICE text from the Work, provided
+       that such additional attribution notices cannot be construed
+       as modifying the License.
+
+   You may add Your own copyright statement to Your modifications and
+   may provide additional or different license terms and conditions
+   for use, reproduction, or distribution of Your modifications, or
+   for any such Derivative Works as a whole, provided Your use,
+   reproduction, and distribution of the Work otherwise complies with
+   the conditions stated in this License.
+
+5. Submission of Contributions. Unless You explicitly state otherwise,
+   any Contribution intentionally submitted for inclusion in the Work
+   by You to the Licensor shall be under the terms and conditions of
+   this License, without any additional terms or conditions.
+   Notwithstanding the above, nothing herein shall supersede or modify
+   the terms of any separate license agreement you may have executed
+   with Licensor regarding such Contributions.
+
+6. Trademarks. This License does not grant permission to use the trade
+   names, trademarks, service marks, or product names of the Licensor,
+   except as required for reasonable and customary use in describing the
+   origin of the Work and reproducing the content of the NOTICE file.
+
+7. Disclaimer of Warranty. Unless required by applicable law or
+   agreed to in writing, Licensor provides the Work (and each
+   Contributor provides its Contributions) on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+   implied, including, without limitation, any warranties or conditions
+   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+   PARTICULAR PURPOSE. You are solely responsible for determining the
+   appropriateness of using or redistributing the Work and assume any
+   risks associated with Your exercise of permissions under this License.
+
+8. Limitation of Liability. In no event and under no legal theory,
+   whether in tort (including negligence), contract, or otherwise,
+   unless required by applicable law (such as deliberate and grossly
+   negligent acts) or agreed to in writing, shall any Contributor be
+   liable to You for damages, including any direct, indirect, special,
+   incidental, or consequential damages of any character arising as a
+   result of this License or out of the use or inability to use the
+   Work (including but not limited to damages for loss of goodwill,
+   work stoppage, computer failure or malfunction, or any and all
+   other commercial damages or losses), even if such Contributor
+   has been advised of the possibility of such damages.
+
+9. Accepting Warranty or Additional Liability. While redistributing
+   the Work or Derivative Works thereof, You may choose to offer,
+   and charge a fee for, acceptance of support, warranty, indemnity,
+   or other liability obligations and/or rights consistent with this
+   License. However, in accepting such obligations, You may act only
+   on Your own behalf and on Your sole responsibility, not on behalf
+   of any other Contributor, and only if You agree to indemnify,
+   defend, and hold each Contributor harmless for any liability
+   incurred by, or claims asserted against, such Contributor by reason
+   of your accepting any such warranty or additional liability.
+
+END OF TERMS AND CONDITIONS
+
+APPENDIX: How to apply the Apache License to your work.
+
+   To apply the Apache License to your work, attach the following
+   boilerplate notice, with the fields enclosed by brackets "[]"
+   replaced with your own identifying information. (Don't include
+   the brackets!)  The text should be enclosed in the appropriate
+   comment syntax for the file format. We also recommend that a
+   file or class name and description of purpose be included on the
+   same "printed page" as the copyright notice for easier
+   identification within third-party archives.
+
+Copyright [yyyy] [name of copyright owner]
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+	http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+
+                
+
+ +
+ LICENSE-Apache-2.0_WITH_LLVM-exception +
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
+
+--- LLVM Exceptions to the Apache 2.0 License ----
+
+As an exception, if, as a result of your compiling your source code, portions
+of this Software are embedded into an Object form of such source code, you
+may redistribute such embedded portions in such Object form without complying
+with the conditions of Sections 4(a), 4(b) and 4(d) of the License.
+
+In addition, if you combine or link compiled forms of this Software with
+software that is licensed under the GPLv2 ("Combined Software") and if a
+court of competent jurisdiction determines that the patent provision (Section
+3), the indemnity provision (Section 9) or other Section of the License
+conflicts with the conditions of the GPLv2, you may retroactively and
+prospectively choose to deem waived or otherwise exclude such Section(s) of
+the License, but only in their entirety and only with respect to the Combined
+Software.
+
+
+                
+
+ +
+ LICENSE-MIT +
+Permission is hereby granted, free of charge, to any
+person obtaining a copy of this software and associated
+documentation files (the "Software"), to deal in the
+Software without restriction, including without
+limitation the rights to use, copy, modify, merge,
+publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software
+is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice
+shall be included in all copies or substantial portions
+of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
+TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
+PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
+SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+DEALINGS IN THE SOFTWARE.
+
+                
+
+ +

+ + + + \ No newline at end of file diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/README.md b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/README.md new file mode 100644 index 0000000000000000000000000000000000000000..ed35016eb3a238614741e5922a06b9bf83f9780e --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/README.md @@ -0,0 +1,79 @@ +
+ + + + The Rust Programming Language: A language empowering everyone to build reliable and efficient software + + +[Website][Rust] | [Getting started] | [Learn] | [Documentation] | [Contributing] +
+ +This is the main source code repository for [Rust]. It contains the compiler, +standard library, and documentation. + +[Rust]: https://www.rust-lang.org/ +[Getting Started]: https://www.rust-lang.org/learn/get-started +[Learn]: https://www.rust-lang.org/learn +[Documentation]: https://www.rust-lang.org/learn#learn-use +[Contributing]: CONTRIBUTING.md + +## Why Rust? + +- **Performance:** Fast and memory-efficient, suitable for critical services, embedded devices, and easily integrated with other languages. + +- **Reliability:** Our rich type system and ownership model ensure memory and thread safety, reducing bugs at compile-time. + +- **Productivity:** Comprehensive documentation, a compiler committed to providing great diagnostics, and advanced tooling including package manager and build tool ([Cargo]), auto-formatter ([rustfmt]), linter ([Clippy]) and editor support ([rust-analyzer]). + +[Cargo]: https://github.com/rust-lang/cargo +[rustfmt]: https://github.com/rust-lang/rustfmt +[Clippy]: https://github.com/rust-lang/rust-clippy +[rust-analyzer]: https://github.com/rust-lang/rust-analyzer + +## Quick Start + +Read ["Installation"] from [The Book]. + +["Installation"]: https://doc.rust-lang.org/book/ch01-01-installation.html +[The Book]: https://doc.rust-lang.org/book/index.html + +## Installing from Source + +If you really want to install from source (though this is not recommended), see +[INSTALL.md](INSTALL.md). + +## Getting Help + +See https://www.rust-lang.org/community for a list of chat platforms and forums. + +## Contributing + +See [CONTRIBUTING.md](CONTRIBUTING.md). + +For a detailed explanation of the compiler's architecture and how to begin contributing, see the [rustc-dev-guide](https://rustc-dev-guide.rust-lang.org/). + +## License + +Rust is primarily distributed under the terms of both the MIT license and the +Apache License (Version 2.0), with portions covered by various BSD-like +licenses. + +See [LICENSE-APACHE](LICENSE-APACHE), [LICENSE-MIT](LICENSE-MIT), and +[COPYRIGHT](COPYRIGHT) for details. + +## Trademark + +[The Rust Foundation][rust-foundation] owns and protects the Rust and Cargo +trademarks and logos (the "Rust Trademarks"). + +If you want to use these names or brands, please read the +[Rust language trademark policy][trademark-policy]. + +Third-party logos may be subject to third-party copyrights and trademarks. See +[Licenses][policies-licenses] for details. + +[rust-foundation]: https://rustfoundation.org/ +[trademark-policy]: https://rustfoundation.org/policy/rust-trademark-policy/ +[policies-licenses]: https://www.rust-lang.org/policies/licenses diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/Apache-2.0.txt b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/Apache-2.0.txt new file mode 100644 index 0000000000000000000000000000000000000000..137069b823873b8bcf42979bcf8e9371052d26a2 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/Apache-2.0.txt @@ -0,0 +1,73 @@ +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + + (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + + You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + +To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/BSD-2-Clause.txt b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/BSD-2-Clause.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f662b354cd40cd5339d5aa05d74b15405138230 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/BSD-2-Clause.txt @@ -0,0 +1,9 @@ +Copyright (c) + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/CC-BY-SA-4.0.txt b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/CC-BY-SA-4.0.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d4f96c54aa155a17387e64501c50b6a0469932c --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/CC-BY-SA-4.0.txt @@ -0,0 +1,427 @@ +Attribution-ShareAlike 4.0 International + +======================================================================= + +Creative Commons Corporation ("Creative Commons") is not a law firm and +does not provide legal services or legal advice. Distribution of +Creative Commons public licenses does not create a lawyer-client or +other relationship. Creative Commons makes its licenses and related +information available on an "as-is" basis. Creative Commons gives no +warranties regarding its licenses, any material licensed under their +terms and conditions, or any related information. Creative Commons +disclaims all liability for damages resulting from their use to the +fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and +conditions that creators and other rights holders may use to share +original works of authorship and other material subject to copyright +and certain other rights specified in the public license below. The +following considerations are for informational purposes only, are not +exhaustive, and do not form part of our licenses. + + Considerations for licensors: Our public licenses are + intended for use by those authorized to give the public + permission to use material in ways otherwise restricted by + copyright and certain other rights. Our licenses are + irrevocable. Licensors should read and understand the terms + and conditions of the license they choose before applying it. + Licensors should also secure all rights necessary before + applying our licenses so that the public can reuse the + material as expected. Licensors should clearly mark any + material not subject to the license. This includes other CC- + licensed material, or material used under an exception or + limitation to copyright. More considerations for licensors: + wiki.creativecommons.org/Considerations_for_licensors + + Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the + licensed material under specified terms and conditions. If + the licensor's permission is not necessary for any reason--for + example, because of any applicable exception or limitation to + copyright--then that use is not regulated by the license. Our + licenses grant only permissions under copyright and certain + other rights that a licensor has authority to grant. Use of + the licensed material may still be restricted for other + reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, + such as asking that all changes be marked or described. + Although not required by our licenses, you are encouraged to + respect those requests where reasonable. More considerations + for the public: + wiki.creativecommons.org/Considerations_for_licensees + +======================================================================= + +Creative Commons Attribution-ShareAlike 4.0 International Public +License + +By exercising the Licensed Rights (defined below), You accept and agree +to be bound by the terms and conditions of this Creative Commons +Attribution-ShareAlike 4.0 International Public License ("Public +License"). To the extent this Public License may be interpreted as a +contract, You are granted the Licensed Rights in consideration of Your +acceptance of these terms and conditions, and the Licensor grants You +such rights in consideration of benefits the Licensor receives from +making the Licensed Material available under these terms and +conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + + b. Adapter's License means the license You apply to Your Copyright + and Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + + c. BY-SA Compatible License means a license listed at + creativecommons.org/compatiblelicenses, approved by Creative + Commons as essentially the equivalent of this Public License. + + d. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + + e. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + + f. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + + g. License Elements means the license attributes listed in the name + of a Creative Commons Public License. The License Elements of this + Public License are Attribution and ShareAlike. + + h. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + i. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + + j. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + k. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + + l. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + + m. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + +Section 2 -- Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + + a. reproduce and Share the Licensed Material, in whole or + in part; and + + b. produce, reproduce, and Share Adapted Material. + + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + + 3. Term. The term of this Public License is specified in Section + 6(a). + + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + + 5. Downstream recipients. + + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + + b. Additional offer from the Licensor -- Adapted Material. + Every recipient of Adapted Material from You + automatically receives an offer from the Licensor to + exercise the Licensed Rights in the Adapted Material + under the conditions of the Adapter's License You apply. + + c. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + + b. Other rights. + + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this + Public License. + + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties. + + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the +following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material (including in modified + form), You must: + + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of + warranties; + + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + + b. ShareAlike. + + In addition to the conditions in Section 3(a), if You Share + Adapted Material You produce, the following conditions also apply. + + 1. The Adapter's License You apply must be a Creative Commons + license with the same License Elements, this version or + later, or a BY-SA Compatible License. + + 2. You must include the text of, or the URI or hyperlink to, the + Adapter's License You apply. You may satisfy this condition + in any reasonable manner based on the medium, means, and + context in which You Share Adapted Material. + + 3. You may not offer or impose any additional or different terms + or conditions on, or apply any Effective Technological + Measures to, Adapted Material that restrict exercise of the + rights granted under the Adapter's License You apply. + + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that +apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database; + + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material, + including for purposes of Section 3(b); and + + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not +replace Your obligations under this Public License where the Licensed +Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. + + +======================================================================= + +Creative Commons is not a party to its public +licenses. Notwithstanding, Creative Commons may elect to apply one of +its public licenses to material it publishes and in those instances +will be considered the “Licensor.” The text of the Creative Commons +public licenses is dedicated to the public domain under the CC0 Public +Domain Dedication. Except for the limited purpose of indicating that +material is shared under a Creative Commons public license or as +otherwise permitted by the Creative Commons policies published at +creativecommons.org/policies, Creative Commons does not authorize the +use of the trademark "Creative Commons" or any other trademark or logo +of Creative Commons without its prior written consent including, +without limitation, in connection with any unauthorized modifications +to any of its public licenses or any other arrangements, +understandings, or agreements concerning use of licensed material. For +the avoidance of doubt, this paragraph does not form part of the +public licenses. + +Creative Commons may be contacted at creativecommons.org. diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/GCC-exception-3.1.txt b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/GCC-exception-3.1.txt new file mode 100644 index 0000000000000000000000000000000000000000..eecede4d0707e2b8ff69c24c5c0160f00ada80e9 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/GCC-exception-3.1.txt @@ -0,0 +1,30 @@ +GCC RUNTIME LIBRARY EXCEPTION + +Version 3.1, 31 March 2009 + +Copyright © 2009 Free Software Foundation, Inc. + +Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + +This GCC Runtime Library Exception ("Exception") is an additional permission under section 7 of the GNU General Public License, version 3 ("GPLv3"). It applies to a given file (the "Runtime Library") that bears a notice placed by the copyright holder of the file stating that the file is governed by GPLv3 along with this Exception. + +When you use GCC to compile a program, GCC may combine portions of certain GCC header files and runtime libraries with the compiled program. The purpose of this Exception is to allow compilation of non-GPL (including proprietary) programs to use, in this way, the header files and runtime libraries covered by this Exception. +0. Definitions. + +A file is an "Independent Module" if it either requires the Runtime Library for execution after a Compilation Process, or makes use of an interface provided by the Runtime Library, but is not otherwise based on the Runtime Library. + +"GCC" means a version of the GNU Compiler Collection, with or without modifications, governed by version 3 (or a specified later version) of the GNU General Public License (GPL) with the option of using any subsequent versions published by the FSF. + +"GPL-compatible Software" is software whose conditions of propagation, modification and use would permit combination with GCC in accord with the license of GCC. + +"Target Code" refers to output from any compiler for a real or virtual target processor architecture, in executable form or suitable for input to an assembler, loader, linker and/or execution phase. Notwithstanding that, Target Code does not include data in any format that is used as a compiler intermediate representation, or used for producing a compiler intermediate representation. + +The "Compilation Process" transforms code entirely represented in non-intermediate languages designed for human-written code, and/or in Java Virtual Machine byte code, into Target Code. Thus, for example, use of source code generators and preprocessors need not be considered part of the Compilation Process, since the Compilation Process can be understood as starting with the output of the generators or preprocessors. + +A Compilation Process is "Eligible" if it is done using GCC, alone or with other GPL-compatible software, or if it is done without using any work based on GCC. For example, using non-GPL-compatible Software to optimize any GCC intermediate representations would not qualify as an Eligible Compilation Process. +1. Grant of Additional Permission. + +You have permission to propagate a work of Target Code formed by combining the Runtime Library with Independent Modules, even if such propagation would otherwise violate the terms of GPLv3, provided that all Target Code was generated by Eligible Compilation Processes. You may then convey such a combination under terms of your choice, consistent with the licensing of the Independent Modules. +2. No Weakening of GCC Copyleft. + +The availability of this Exception does not imply any general presumption that third-party software is unaffected by the copyleft requirements of the license of GCC. diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/GPL-2.0-only.txt b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/GPL-2.0-only.txt new file mode 100644 index 0000000000000000000000000000000000000000..492485e09b411a53771ce08b50cfc4cb1bf4edde --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/GPL-2.0-only.txt @@ -0,0 +1,133 @@ +GNU GENERAL PUBLIC LICENSE + +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + +Everyone is permitted to copy and distribute verbatim copies +of this license document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification follow. +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. + b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. + c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. + +3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. + +This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. +END OF TERMS AND CONDITIONS +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. + +one line to give the program's name and an idea of what it does. +Copyright (C) yyyy name of author + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it starts in an interactive mode: + +Gnomovision version 69, Copyright (C) year name of author +Gnomovision comes with ABSOLUTELY NO WARRANTY; for details +type `show w'. This is free software, and you are welcome +to redistribute it under certain conditions; type `show c' +for details. + +The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: + +Yoyodyne, Inc., hereby disclaims all copyright +interest in the program `Gnomovision' +(which makes passes at compilers) written +by James Hacker. + +signature of Ty Coon, 1 April 1989 +Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/GPL-3.0-or-later.txt b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/GPL-3.0-or-later.txt new file mode 100644 index 0000000000000000000000000000000000000000..37b6b8e91b85e34ac07f77bb6d5d9f90626f8d60 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/GPL-3.0-or-later.txt @@ -0,0 +1,202 @@ +GNU GENERAL PUBLIC LICENSE + +Version 3, 29 June 2007 + +Copyright © 2007 Free Software Foundation, Inc. + +Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + +Preamble + +The GNU General Public License is a free, copyleft license for software and other kinds of works. + +The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. + +To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. + +Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. + +For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. + +Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. + +Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. + +The precise terms and conditions for copying, distribution and modification follow. + +TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based on the Program. + + To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. + 1. Source Code. + The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. + + A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. + + The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. + + The Corresponding Source for a work in source code form is that same work. + 2. Basic Permissions. + All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. + + When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. + 4. Conveying Verbatim Copies. + You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. + 5. Conveying Modified Source Versions. + You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: + a) The work must carry prominent notices stating that you modified it, and giving a relevant date. + b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". + c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. + d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. + + A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. + 6. Conveying Non-Source Forms. + You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: + a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. + b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. + c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. + d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. + e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. + + If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). + + The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. + 7. Additional Terms. + "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: + a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or + b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or + c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or + d) Limiting the use for publicity purposes of names of licensors or authors of the material; or + e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or + f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. + + All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. + 8. Termination. + You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). + + However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. + + Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. + 9. Acceptance Not Required for Having Copies. + You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. + 10. Automatic Licensing of Downstream Recipients. + Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. + 11. Patents. + A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. + + If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. + + A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. + 12. No Surrender of Others' Freedom. + If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. + 13. Use with the GNU Affero General Public License. + Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. + 14. Revised Versions of this License. + The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. + + Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. + 15. Disclaimer of Warranty. + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + 16. Limitation of Liability. + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. + + +Copyright (C) + +This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + +If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: + + Copyright (C) +This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. +This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". + +You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . + +The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/ISC.txt b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/ISC.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f41c8c63b96e0460597a8dc1255d9c7a65482fa --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/ISC.txt @@ -0,0 +1,7 @@ +ISC License + + + +Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/LLVM-exception.txt b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/LLVM-exception.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa4b725a0ee50ef723ce5292865e54de7b0bfca4 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/LLVM-exception.txt @@ -0,0 +1,15 @@ +---- LLVM Exceptions to the Apache 2.0 License ---- + + As an exception, if, as a result of your compiling your source code, portions + of this Software are embedded into an Object form of such source code, you + may redistribute such embedded portions in such Object form without complying + with the conditions of Sections 4(a), 4(b) and 4(d) of the License. + + In addition, if you combine or link compiled forms of this Software with + software that is licensed under the GPLv2 ("Combined Software") and if a + court of competent jurisdiction determines that the patent provision (Section + 3), the indemnity provision (Section 9) or other Section of the License + conflicts with the conditions of the GPLv2, you may retroactively and + prospectively choose to deem waived or otherwise exclude such Section(s) of + the License, but only in their entirety and only with respect to the Combined + Software. diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/MIT.txt b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/MIT.txt new file mode 100644 index 0000000000000000000000000000000000000000..2071b23b0e08594ea6bc99ac71129ef992abf498 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/MIT.txt @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/NCSA.txt b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/NCSA.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb193323bf615d67c591d677636dfdcfba6ec7ff --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/NCSA.txt @@ -0,0 +1,29 @@ +Copyright (c) . All rights reserved. + +Developed by: + + + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to +do so, subject to the following conditions: +* Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the documentation + and/or other materials provided with the distribution. +* Neither the names of , , + nor the names of its contributors may be used to endorse or promote products + derived from this Software without specific prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. + diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/OFL-1.1.txt b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/OFL-1.1.txt new file mode 100644 index 0000000000000000000000000000000000000000..6fe84ee21ebe5d2b54dc63b53b4d5c404c083409 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/OFL-1.1.txt @@ -0,0 +1,43 @@ +SIL OPEN FONT LICENSE + +Version 1.1 - 26 February 2007 + +PREAMBLE + +The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. + +The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. + +DEFINITIONS + +"Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the copyright statement(s). + +"Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, or substituting — in part or in whole — any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. + +"Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS + +Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. + +5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. + +TERMINATION + +This license becomes null and void if any of the above conditions are not met. + +DISCLAIMER + +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/Unicode-3.0.txt b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/Unicode-3.0.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee8e69b233293872fcb4d6d4930ec196b63626e7 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/licenses/Unicode-3.0.txt @@ -0,0 +1,39 @@ +UNICODE LICENSE V3 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright © 1991-2024 Unicode, Inc. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF +THIRD PARTY RIGHTS. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA +FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rustfmt/LICENSE-APACHE b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rustfmt/LICENSE-APACHE new file mode 100644 index 0000000000000000000000000000000000000000..212ba1f3184810909ef2186137ec0d9a6aea4a6b --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rustfmt/LICENSE-APACHE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright 2016-2021 The Rust Project Developers + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rustfmt/LICENSE-MIT b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rustfmt/LICENSE-MIT new file mode 100644 index 0000000000000000000000000000000000000000..1baa137f605b700051933fb00de4ab5c73977cde --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rustfmt/LICENSE-MIT @@ -0,0 +1,25 @@ +Copyright (c) 2016-2021 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rustfmt/README.md b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rustfmt/README.md new file mode 100644 index 0000000000000000000000000000000000000000..77e3335cf2cc491b7cf8c8ba0d65248f9d809470 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rustfmt/README.md @@ -0,0 +1,255 @@ +# rustfmt [![linux](https://github.com/rust-lang/rustfmt/actions/workflows/linux.yml/badge.svg?event=push)](https://github.com/rust-lang/rustfmt/actions/workflows/linux.yml) [![mac](https://github.com/rust-lang/rustfmt/actions/workflows/mac.yml/badge.svg?event=push)](https://github.com/rust-lang/rustfmt/actions/workflows/mac.yml) [![windows](https://github.com/rust-lang/rustfmt/actions/workflows/windows.yml/badge.svg?event=push)](https://github.com/rust-lang/rustfmt/actions/workflows/windows.yml) [![crates.io](https://img.shields.io/crates/v/rustfmt-nightly.svg)](https://crates.io/crates/rustfmt-nightly) + +A tool for formatting Rust code according to style guidelines. + +If you'd like to help out (and you should, it's a fun project!), see +[Contributing.md](Contributing.md) and our [Code of +Conduct](CODE_OF_CONDUCT.md). + +You can use rustfmt in Travis CI builds. We provide a minimal Travis CI +configuration (see [here](#checking-style-on-a-ci-server)). + +## Quick start + +You can run `rustfmt` with Rust 1.24 and above. + +### On the Stable toolchain + +To install: + +```sh +rustup component add rustfmt +``` + +To run on a cargo project in the current working directory: + +```sh +cargo fmt +``` + +### On the Nightly toolchain + +For the latest and greatest `rustfmt`, nightly is required. + +To install: + +```sh +rustup component add rustfmt --toolchain nightly +``` + +To run on a cargo project in the current working directory: + +```sh +cargo +nightly fmt +``` + +## Limitations + +Rustfmt tries to work on as much Rust code as possible. Sometimes, the code +doesn't even need to compile! In general, we are looking to limit areas of +instability; in particular, post-1.0, the formatting of most code should not +change as Rustfmt improves. However, there are some things that Rustfmt can't +do or can't do well (and thus where formatting might change significantly, +even post-1.0). We would like to reduce the list of limitations over time. + +The following list enumerates areas where Rustfmt does not work or where the +stability guarantees do not apply (we don't make a distinction between the two +because in the future Rustfmt might work on code where it currently does not): + +* a program where any part of the program does not parse (parsing is an early + stage of compilation and in Rust includes macro expansion). +* Macro declarations and uses (current status: some macro declarations and uses + are formatted). +* Comments, including any AST node with a comment 'inside' (Rustfmt does not + currently attempt to format comments, it does format code with comments inside, but that formatting may change in the future). +* Rust code in code blocks in comments. +* Any fragment of a program (i.e., stability guarantees only apply to whole + programs, even where fragments of a program can be formatted today). +* Code containing non-ascii unicode characters (we believe Rustfmt mostly works + here, but do not have the test coverage or experience to be 100% sure). +* Bugs in Rustfmt (like any software, Rustfmt has bugs, we do not consider bug + fixes to break our stability guarantees). + + +## Running + +You can run Rustfmt by just typing `rustfmt filename` if you used `cargo +install`. This runs rustfmt on the given file, if the file includes out of line +modules, then we reformat those too. So to run on a whole module or crate, you +just need to run on the root file (usually mod.rs or lib.rs). Rustfmt can also +read data from stdin. Alternatively, you can use `cargo fmt` to format all +binary and library targets of your crate. + +You can run `rustfmt --help` for information about available arguments. +The easiest way to run rustfmt against a project is with `cargo fmt`. `cargo fmt` works on both +single-crate projects and [cargo workspaces](https://doc.rust-lang.org/book/ch14-03-cargo-workspaces.html). +Please see `cargo fmt --help` for usage information. + +You can specify the path to your own `rustfmt` binary for cargo to use by setting the`RUSTFMT` +environment variable. This was added in v1.4.22, so you must have this version or newer to leverage this feature (`cargo fmt --version`) + +### Running `rustfmt` directly + +To format individual files or arbitrary codes from stdin, the `rustfmt` binary should be used. Some +examples follow: + +- `rustfmt lib.rs main.rs` will format "lib.rs" and "main.rs" in place +- `rustfmt` will read a code from stdin and write formatting to stdout + - `echo "fn main() {}" | rustfmt` would emit "fn main() {}". + +For more information, including arguments and emit options, see `rustfmt --help`. + +### Verifying code is formatted + +When running with `--check`, Rustfmt will exit with `0` if Rustfmt would not +make any formatting changes to the input, and `1` if Rustfmt would make changes. +In other modes, Rustfmt will exit with `1` if there was some error during +formatting (for example a parsing or internal error) and `0` if formatting +completed without error (whether or not changes were made). + + + +## Running Rustfmt from your editor + +* [Vim](https://github.com/rust-lang/rust.vim#formatting-with-rustfmt) +* [Emacs](https://github.com/rust-lang/rust-mode) +* [Sublime Text 3](https://packagecontrol.io/packages/RustFmt) +* [Atom](atom.md) +* [Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer) +* [IntelliJ or CLion](intellij.md) + + +## Checking style on a CI server + +To keep your code base consistently formatted, it can be helpful to fail the CI build +when a pull request contains unformatted code. Using `--check` instructs +rustfmt to exit with an error code if the input is not formatted correctly. +It will also print any found differences. (Older versions of Rustfmt don't +support `--check`, use `--write-mode diff`). + +A minimal Travis setup could look like this (requires Rust 1.31.0 or greater): + +```yaml +language: rust +before_script: +- rustup component add rustfmt +script: +- cargo build +- cargo test +- cargo fmt --all -- --check +``` + +See [this blog post](https://medium.com/@ag_dubs/enforcing-style-in-ci-for-rust-projects-18f6b09ec69d) +for more info. + +## How to build and test + +`cargo build` to build. + +`cargo test` to run all tests. + +To run rustfmt after this, use `cargo run --bin rustfmt -- filename`. See the +notes above on running rustfmt. + + +## Configuring Rustfmt + +Rustfmt is designed to be very configurable. You can create a TOML file called +`rustfmt.toml` or `.rustfmt.toml`, place it in the project or any other parent +directory and it will apply the options in that file. See `rustfmt +--help=config` for the options which are available, or if you prefer to see +visual style previews, [GitHub page](https://rust-lang.github.io/rustfmt/). + +By default, Rustfmt uses a style which conforms to the [Rust style guide][style +guide] that has been formalized through the [style RFC +process][fmt rfcs]. + +Configuration options are either stable or unstable. Stable options can always +be used, while unstable ones are only available on a nightly toolchain, and opt-in. +See [GitHub page](https://rust-lang.github.io/rustfmt/) for details. + +### Rust's Editions + +The `edition` option determines the Rust language edition used for parsing the code. This is important for syntax compatibility but does not directly control formatting behavior (see [Style Editions](#style-editions)). + +When running `cargo fmt`, the `edition` is automatically read from the `Cargo.toml` file. However, when running `rustfmt` directly, the `edition` defaults to 2015. For consistent parsing between rustfmt and `cargo fmt`, you should configure the `edition` in your `rustfmt.toml` file: + +```toml +edition = "2018" +``` + +### Style Editions + +This option is inferred from the [`edition`](#rusts-editions) if not specified. + +See [Rust Style Editions] for details on formatting differences between style editions. +rustfmt has a default style edition of `2015` while `cargo fmt` infers the style edition from the `edition` set in `Cargo.toml`. This can lead to inconsistencies between `rustfmt` and `cargo fmt` if the style edition is not explicitly configured. + +To ensure consistent formatting, it is recommended to specify the `style_edition` in a `rustfmt.toml` configuration file. For example: + +```toml +style_edition = "2024" +``` +[Rust Style Editions]: https://doc.rust-lang.org/nightly/style-guide/editions.html?highlight=editions#rust-style-editions +[Rust Style Guide]: https://doc.rust-lang.org/nightly/style-guide/ +[RFC 3338]: https://rust-lang.github.io/rfcs/3338-style-evolution.html + +## Tips + +* To ensure consistent parsing between `cargo fmt` and `rustfmt`, you should configure the [`edition`](#rusts-editions) in your `rustfmt.toml` file. +* To ensure consistent formatting between `cargo fmt` and `rustfmt`, you should configure the [`style_edition`](#style-editions) in your `rustfmt.toml` file. + +* For things you do not want rustfmt to mangle, use `#[rustfmt::skip]` +* To prevent rustfmt from formatting a macro or an attribute, + use `#[rustfmt::skip::macros(target_macro_name)]` or + `#[rustfmt::skip::attributes(target_attribute_name)]` + + Example: + + ```rust + #![rustfmt::skip::attributes(custom_attribute)] + + #[custom_attribute(formatting , here , should , be , Skipped)] + #[rustfmt::skip::macros(html)] + fn main() { + let macro_result1 = html! {
+ Hello
+ }.to_string(); + ``` +* When you run rustfmt, place a file named `rustfmt.toml` or `.rustfmt.toml` in + target file directory or its parents to override the default settings of + rustfmt. You can generate a file containing the default configuration with + `rustfmt --print-config default rustfmt.toml` and customize as needed. +* After successful compilation, a `rustfmt` executable can be found in the + target directory. +* If you're having issues compiling Rustfmt (or compile errors when trying to + install), make sure you have the most recent version of Rust installed. + +* You can change the way rustfmt emits the changes with the --emit flag: + + Example: + + ```sh + cargo fmt -- --emit files + ``` + + Options: + + | Flag |Description| Nightly Only | + |:---:|:---:|:---:| + | files | overwrites output to files | No | + | stdout | writes output to stdout | No | + | coverage | displays how much of the input file was processed | Yes | + | checkstyle | emits in a checkstyle format | Yes | + | json | emits diffs in a json format | Yes | + +## License + +Rustfmt is distributed under the terms of both the MIT license and the +Apache License (Version 2.0). + +See [LICENSE-APACHE](LICENSE-APACHE) and [LICENSE-MIT](LICENSE-MIT) for details. + +[rust]: https://github.com/rust-lang/rust +[fmt rfcs]: https://github.com/rust-dev-tools/fmt-rfcs +[style guide]: https://doc.rust-lang.org/nightly/style-guide/ diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-remove.1 b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-remove.1 new file mode 100644 index 0000000000000000000000000000000000000000..cc65aa28aea47f123885b6f244aced2d8b7682a4 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-remove.1 @@ -0,0 +1,214 @@ +'\" t +.TH "CARGO\-REMOVE" "1" +.nh +.ad l +.ss \n[.ss] 0 +.SH "NAME" +cargo\-remove \[em] Remove dependencies from a Cargo.toml manifest file +.SH "SYNOPSIS" +\fBcargo remove\fR [\fIoptions\fR] \fIdependency\fR\[u2026] +.SH "DESCRIPTION" +Remove one or more dependencies from a \fBCargo.toml\fR manifest. +.SH "OPTIONS" +.SS "Section options" +.sp +\fB\-\-dev\fR +.RS 4 +Remove as a \fIdevelopment dependency\fR \&. +.RE +.sp +\fB\-\-build\fR +.RS 4 +Remove as a \fIbuild dependency\fR \&. +.RE +.sp +\fB\-\-target\fR \fItarget\fR +.RS 4 +Remove as a dependency to the \fIgiven target platform\fR \&. +.sp +To avoid unexpected shell expansions, you may use quotes around each target, e.g., \fB\-\-target 'cfg(unix)'\fR\&. +.RE +.SS "Miscellaneous Options" +.sp +\fB\-\-dry\-run\fR +.RS 4 +Don\[cq]t actually write to the manifest. +.RE +.SS "Display Options" +.sp +\fB\-v\fR, +\fB\-\-verbose\fR +.RS 4 +Use verbose output. May be specified twice for \[lq]very verbose\[rq] output which +includes extra output such as dependency warnings and build script output. +May also be specified with the \fBterm.verbose\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-q\fR, +\fB\-\-quiet\fR +.RS 4 +Do not print cargo log messages. +May also be specified with the \fBterm.quiet\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-\-color\fR \fIwhen\fR +.RS 4 +Control when colored output is used. Valid values: +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBauto\fR (default): Automatically detect if color support is available on the +terminal. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBalways\fR: Always display colors. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBnever\fR: Never display colors. +.RE +.sp +May also be specified with the \fBterm.color\fR +\fIconfig value\fR \&. +.RE +.SS "Manifest Options" +.sp +\fB\-\-manifest\-path\fR \fIpath\fR +.RS 4 +Path to the \fBCargo.toml\fR file. By default, Cargo searches for the +\fBCargo.toml\fR file in the current directory or any parent directory. +.RE +.sp +\fB\-\-locked\fR +.RS 4 +Asserts that the exact same dependencies and versions are used as when the +existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an +error when either of the following scenarios arises: +.sp +.RS 4 +\h'-04'\(bu\h'+03'The lock file is missing. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'Cargo attempted to change the lock file due to a different dependency resolution. +.RE +.sp +It may be used in environments where deterministic builds are desired, +such as in CI pipelines. +.RE +.sp +\fB\-\-offline\fR +.RS 4 +Prevents Cargo from accessing the network for any reason. Without this +flag, Cargo will stop with an error if it needs to access the network and +the network is not available. With this flag, Cargo will attempt to +proceed without the network if possible. +.sp +Beware that this may result in different dependency resolution than online +mode. Cargo will restrict itself to crates that are downloaded locally, even +if there might be a newer version as indicated in the local copy of the index. +See the \fBcargo\-fetch\fR(1) command to download dependencies before going +offline. +.sp +May also be specified with the \fBnet.offline\fR \fIconfig value\fR \&. +.RE +.sp +\fB\-\-frozen\fR +.RS 4 +Equivalent to specifying both \fB\-\-locked\fR and \fB\-\-offline\fR\&. +.RE +.SS "Package Selection" +.sp +\fB\-p\fR \fIspec\fR\[u2026], +\fB\-\-package\fR \fIspec\fR\[u2026] +.RS 4 +Package to remove from. +.RE +.SS "Common Options" +.sp +\fB+\fR\fItoolchain\fR +.RS 4 +If Cargo has been installed with rustup, and the first argument to \fBcargo\fR +begins with \fB+\fR, it will be interpreted as a rustup toolchain name (such +as \fB+stable\fR or \fB+nightly\fR). +See the \fIrustup documentation\fR +for more information about how toolchain overrides work. +.RE +.sp +\fB\-\-config\fR \fIKEY=VALUE\fR or \fIPATH\fR +.RS 4 +Overrides a Cargo configuration value. The argument should be in TOML syntax of \fBKEY=VALUE\fR, +or provided as a path to an extra configuration file. This flag may be specified multiple times. +See the \fIcommand\-line overrides section\fR for more information. +.RE +.sp +\fB\-C\fR \fIPATH\fR +.RS 4 +Changes the current working directory before executing any specified operations. This affects +things like where cargo looks by default for the project manifest (\fBCargo.toml\fR), as well as +the directories searched for discovering \fB\&.cargo/config.toml\fR, for example. This option must +appear before the command name, for example \fBcargo \-C path/to/my\-project build\fR\&. +.sp +This option is only available on the \fInightly +channel\fR and +requires the \fB\-Z unstable\-options\fR flag to enable (see +\fI#10098\fR ). +.RE +.sp +\fB\-h\fR, +\fB\-\-help\fR +.RS 4 +Prints help information. +.RE +.sp +\fB\-Z\fR \fIflag\fR +.RS 4 +Unstable (nightly\-only) flags to Cargo. Run \fBcargo \-Z help\fR for details. +.RE +.SH "ENVIRONMENT" +See \fIthe reference\fR for +details on environment variables that Cargo reads. +.SH "EXIT STATUS" +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB0\fR: Cargo succeeded. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB101\fR: Cargo failed to complete. +.RE +.SH "EXAMPLES" +.sp +.RS 4 +\h'-04' 1.\h'+01'Remove \fBregex\fR as a dependency +.sp +.RS 4 +.nf +cargo remove regex +.fi +.RE +.RE +.sp +.RS 4 +\h'-04' 2.\h'+01'Remove \fBtrybuild\fR as a dev\-dependency +.sp +.RS 4 +.nf +cargo remove \-\-dev trybuild +.fi +.RE +.RE +.sp +.RS 4 +\h'-04' 3.\h'+01'Remove \fBnom\fR from the \fBwasm32\-unknown\-unknown\fR dependencies table +.sp +.RS 4 +.nf +cargo remove \-\-target wasm32\-unknown\-unknown nom +.fi +.RE +.RE +.SH "SEE ALSO" +\fBcargo\fR(1), \fBcargo\-add\fR(1) diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-report-future-incompatibilities.1 b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-report-future-incompatibilities.1 new file mode 100644 index 0000000000000000000000000000000000000000..5c749f189bb2132188cd71b3586f676b3d9362d6 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-report-future-incompatibilities.1 @@ -0,0 +1,188 @@ +'\" t +.TH "CARGO\-REPORT\-FUTURE\-INCOMPATIBILITIES" "1" +.nh +.ad l +.ss \n[.ss] 0 +.SH "NAME" +cargo\-report\-future\-incompatibilities \[em] Reports any crates which will eventually stop compiling +.SH "SYNOPSIS" +\fBcargo report future\-incompatibilities\fR [\fIoptions\fR] +.SH "DESCRIPTION" +Displays a report of future\-incompatible warnings that were emitted during +previous builds. +These are warnings for changes that may become hard errors in the future, +causing dependencies to stop building in a future version of rustc. +.sp +For more, see the chapter on \fIFuture incompat report\fR \&. +.SH "OPTIONS" +.sp +\fB\-\-id\fR \fIid\fR +.RS 4 +Show the report with the specified Cargo\-generated id. +If not specified, shows the most recent report. +.RE +.SS "Package Selection" +By default, the package in the current working directory is selected. The \fB\-p\fR +flag can be used to choose a different package in a workspace. +.sp +\fB\-p\fR \fIspec\fR, +\fB\-\-package\fR \fIspec\fR +.RS 4 +The package to display a report for. See \fBcargo\-pkgid\fR(1) for the SPEC +format. +.RE +.SS "Display Options" +.sp +\fB\-v\fR, +\fB\-\-verbose\fR +.RS 4 +Use verbose output. May be specified twice for \[lq]very verbose\[rq] output which +includes extra output such as dependency warnings and build script output. +May also be specified with the \fBterm.verbose\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-q\fR, +\fB\-\-quiet\fR +.RS 4 +Do not print cargo log messages. +May also be specified with the \fBterm.quiet\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-\-color\fR \fIwhen\fR +.RS 4 +Control when colored output is used. Valid values: +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBauto\fR (default): Automatically detect if color support is available on the +terminal. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBalways\fR: Always display colors. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBnever\fR: Never display colors. +.RE +.sp +May also be specified with the \fBterm.color\fR +\fIconfig value\fR \&. +.RE +.SS "Manifest Options" +.sp +\fB\-\-locked\fR +.RS 4 +Asserts that the exact same dependencies and versions are used as when the +existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an +error when either of the following scenarios arises: +.sp +.RS 4 +\h'-04'\(bu\h'+03'The lock file is missing. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'Cargo attempted to change the lock file due to a different dependency resolution. +.RE +.sp +It may be used in environments where deterministic builds are desired, +such as in CI pipelines. +.RE +.sp +\fB\-\-offline\fR +.RS 4 +Prevents Cargo from accessing the network for any reason. Without this +flag, Cargo will stop with an error if it needs to access the network and +the network is not available. With this flag, Cargo will attempt to +proceed without the network if possible. +.sp +Beware that this may result in different dependency resolution than online +mode. Cargo will restrict itself to crates that are downloaded locally, even +if there might be a newer version as indicated in the local copy of the index. +See the \fBcargo\-fetch\fR(1) command to download dependencies before going +offline. +.sp +May also be specified with the \fBnet.offline\fR \fIconfig value\fR \&. +.RE +.sp +\fB\-\-frozen\fR +.RS 4 +Equivalent to specifying both \fB\-\-locked\fR and \fB\-\-offline\fR\&. +.RE +.SS "Common Options" +.sp +\fB+\fR\fItoolchain\fR +.RS 4 +If Cargo has been installed with rustup, and the first argument to \fBcargo\fR +begins with \fB+\fR, it will be interpreted as a rustup toolchain name (such +as \fB+stable\fR or \fB+nightly\fR). +See the \fIrustup documentation\fR +for more information about how toolchain overrides work. +.RE +.sp +\fB\-\-config\fR \fIKEY=VALUE\fR or \fIPATH\fR +.RS 4 +Overrides a Cargo configuration value. The argument should be in TOML syntax of \fBKEY=VALUE\fR, +or provided as a path to an extra configuration file. This flag may be specified multiple times. +See the \fIcommand\-line overrides section\fR for more information. +.RE +.sp +\fB\-C\fR \fIPATH\fR +.RS 4 +Changes the current working directory before executing any specified operations. This affects +things like where cargo looks by default for the project manifest (\fBCargo.toml\fR), as well as +the directories searched for discovering \fB\&.cargo/config.toml\fR, for example. This option must +appear before the command name, for example \fBcargo \-C path/to/my\-project build\fR\&. +.sp +This option is only available on the \fInightly +channel\fR and +requires the \fB\-Z unstable\-options\fR flag to enable (see +\fI#10098\fR ). +.RE +.sp +\fB\-h\fR, +\fB\-\-help\fR +.RS 4 +Prints help information. +.RE +.sp +\fB\-Z\fR \fIflag\fR +.RS 4 +Unstable (nightly\-only) flags to Cargo. Run \fBcargo \-Z help\fR for details. +.RE +.SH "ENVIRONMENT" +See \fIthe reference\fR for +details on environment variables that Cargo reads. +.SH "EXIT STATUS" +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB0\fR: Cargo succeeded. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB101\fR: Cargo failed to complete. +.RE +.SH "EXAMPLES" +.sp +.RS 4 +\h'-04' 1.\h'+01'Display the latest future\-incompat report: +.sp +.RS 4 +.nf +cargo report future\-incompat +.fi +.RE +.RE +.sp +.RS 4 +\h'-04' 2.\h'+01'Display the latest future\-incompat report for a specific package: +.sp +.RS 4 +.nf +cargo report future\-incompat \-\-package my\-dep@0.0.1 +.fi +.RE +.RE +.SH "SEE ALSO" +\fBcargo\fR(1), \fBcargo\-report\fR(1), \fBcargo\-build\fR(1) diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-report.1 b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-report.1 new file mode 100644 index 0000000000000000000000000000000000000000..f507d6853e6d53170d0a801a81f7204e5e82d1dc --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-report.1 @@ -0,0 +1,157 @@ +'\" t +.TH "CARGO\-REPORT" "1" +.nh +.ad l +.ss \n[.ss] 0 +.SH "NAME" +cargo\-report \[em] Generate and display various kinds of reports +.SH "SYNOPSIS" +\fBcargo report\fR \fItype\fR [\fIoptions\fR] +.SH "DESCRIPTION" +Displays a report of the given \fItype\fR \[em] currently, only \fBfuture\-incompat\fR is supported +.SH "OPTIONS" +.SS "Display Options" +.sp +\fB\-v\fR, +\fB\-\-verbose\fR +.RS 4 +Use verbose output. May be specified twice for \[lq]very verbose\[rq] output which +includes extra output such as dependency warnings and build script output. +May also be specified with the \fBterm.verbose\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-q\fR, +\fB\-\-quiet\fR +.RS 4 +Do not print cargo log messages. +May also be specified with the \fBterm.quiet\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-\-color\fR \fIwhen\fR +.RS 4 +Control when colored output is used. Valid values: +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBauto\fR (default): Automatically detect if color support is available on the +terminal. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBalways\fR: Always display colors. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBnever\fR: Never display colors. +.RE +.sp +May also be specified with the \fBterm.color\fR +\fIconfig value\fR \&. +.RE +.SS "Manifest Options" +.sp +\fB\-\-locked\fR +.RS 4 +Asserts that the exact same dependencies and versions are used as when the +existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an +error when either of the following scenarios arises: +.sp +.RS 4 +\h'-04'\(bu\h'+03'The lock file is missing. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'Cargo attempted to change the lock file due to a different dependency resolution. +.RE +.sp +It may be used in environments where deterministic builds are desired, +such as in CI pipelines. +.RE +.sp +\fB\-\-offline\fR +.RS 4 +Prevents Cargo from accessing the network for any reason. Without this +flag, Cargo will stop with an error if it needs to access the network and +the network is not available. With this flag, Cargo will attempt to +proceed without the network if possible. +.sp +Beware that this may result in different dependency resolution than online +mode. Cargo will restrict itself to crates that are downloaded locally, even +if there might be a newer version as indicated in the local copy of the index. +See the \fBcargo\-fetch\fR(1) command to download dependencies before going +offline. +.sp +May also be specified with the \fBnet.offline\fR \fIconfig value\fR \&. +.RE +.sp +\fB\-\-frozen\fR +.RS 4 +Equivalent to specifying both \fB\-\-locked\fR and \fB\-\-offline\fR\&. +.RE +.SS "Common Options" +.sp +\fB+\fR\fItoolchain\fR +.RS 4 +If Cargo has been installed with rustup, and the first argument to \fBcargo\fR +begins with \fB+\fR, it will be interpreted as a rustup toolchain name (such +as \fB+stable\fR or \fB+nightly\fR). +See the \fIrustup documentation\fR +for more information about how toolchain overrides work. +.RE +.sp +\fB\-\-config\fR \fIKEY=VALUE\fR or \fIPATH\fR +.RS 4 +Overrides a Cargo configuration value. The argument should be in TOML syntax of \fBKEY=VALUE\fR, +or provided as a path to an extra configuration file. This flag may be specified multiple times. +See the \fIcommand\-line overrides section\fR for more information. +.RE +.sp +\fB\-C\fR \fIPATH\fR +.RS 4 +Changes the current working directory before executing any specified operations. This affects +things like where cargo looks by default for the project manifest (\fBCargo.toml\fR), as well as +the directories searched for discovering \fB\&.cargo/config.toml\fR, for example. This option must +appear before the command name, for example \fBcargo \-C path/to/my\-project build\fR\&. +.sp +This option is only available on the \fInightly +channel\fR and +requires the \fB\-Z unstable\-options\fR flag to enable (see +\fI#10098\fR ). +.RE +.sp +\fB\-h\fR, +\fB\-\-help\fR +.RS 4 +Prints help information. +.RE +.sp +\fB\-Z\fR \fIflag\fR +.RS 4 +Unstable (nightly\-only) flags to Cargo. Run \fBcargo \-Z help\fR for details. +.RE +.SH "ENVIRONMENT" +See \fIthe reference\fR for +details on environment variables that Cargo reads. +.SH "EXIT STATUS" +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB0\fR: Cargo succeeded. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB101\fR: Cargo failed to complete. +.RE +.SH "EXAMPLES" +.sp +.RS 4 +\h'-04' 1.\h'+01'Display the available kinds of reports: +.sp +.RS 4 +.nf +cargo report \-\-help +.fi +.RE +.RE +.SH "SEE ALSO" +\fBcargo\fR(1), \fBcargo\-report\-future\-incompatibilities\fR(1) diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-run.1 b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-run.1 new file mode 100644 index 0000000000000000000000000000000000000000..2e95cf4f7f3523b231b02e0374ded310883a996d --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-run.1 @@ -0,0 +1,361 @@ +'\" t +.TH "CARGO\-RUN" "1" +.nh +.ad l +.ss \n[.ss] 0 +.SH "NAME" +cargo\-run \[em] Run the current package +.SH "SYNOPSIS" +\fBcargo run\fR [\fIoptions\fR] [\fB\-\-\fR \fIargs\fR] +.SH "DESCRIPTION" +Run a binary or example of the local package. +.sp +All the arguments following the two dashes (\fB\-\-\fR) are passed to the binary to +run. If you\[cq]re passing arguments to both Cargo and the binary, the ones after +\fB\-\-\fR go to the binary, the ones before go to Cargo. +.sp +Unlike \fBcargo\-test\fR(1) and \fBcargo\-bench\fR(1), \fBcargo run\fR sets the +working directory of the binary executed to the current working directory, same +as if it was executed in the shell directly. +.SH "OPTIONS" +.SS "Package Selection" +By default, the package in the current working directory is selected. The \fB\-p\fR +flag can be used to choose a different package in a workspace. +.sp +\fB\-p\fR \fIspec\fR, +\fB\-\-package\fR \fIspec\fR +.RS 4 +The package to run. See \fBcargo\-pkgid\fR(1) for the SPEC +format. +.RE +.SS "Target Selection" +When no target selection options are given, \fBcargo run\fR will run the binary +target. If there are multiple binary targets, you must pass a target flag to +choose one. Or, the \fBdefault\-run\fR field may be specified in the \fB[package]\fR +section of \fBCargo.toml\fR to choose the name of the binary to run by default. +.sp +\fB\-\-bin\fR \fIname\fR +.RS 4 +Run the specified binary. +.RE +.sp +\fB\-\-example\fR \fIname\fR +.RS 4 +Run the specified example. +.RE +.SS "Feature Selection" +The feature flags allow you to control which features are enabled. When no +feature options are given, the \fBdefault\fR feature is activated for every +selected package. +.sp +See \fIthe features documentation\fR +for more details. +.sp +\fB\-F\fR \fIfeatures\fR, +\fB\-\-features\fR \fIfeatures\fR +.RS 4 +Space or comma separated list of features to activate. Features of workspace +members may be enabled with \fBpackage\-name/feature\-name\fR syntax. This flag may +be specified multiple times, which enables all specified features. +.RE +.sp +\fB\-\-all\-features\fR +.RS 4 +Activate all available features of all selected packages. +.RE +.sp +\fB\-\-no\-default\-features\fR +.RS 4 +Do not activate the \fBdefault\fR feature of the selected packages. +.RE +.SS "Compilation Options" +.sp +\fB\-\-target\fR \fItriple\fR +.RS 4 +Run for the specified target architecture. The default is the host architecture. The general format of the triple is +\fB\-\-\-\fR\&. +.sp +Possible values: +.sp +.RS 4 +\h'-04'\(bu\h'+03'Any supported target in \fBrustc \-\-print target\-list\fR\&. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB"host\-tuple"\fR, which will internally be substituted by the host\[cq]s target. This can be particularly useful if you\[cq]re cross\-compiling some crates, and don\[cq]t want to specify your host\[cq]s machine as a target (for instance, an \fBxtask\fR in a shared project that may be worked on by many hosts). +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'A path to a custom target specification. See \fICustom Target Lookup Path\fR for more information. +.RE +.sp +This may also be specified with the \fBbuild.target\fR \fIconfig value\fR \&. +.sp +Note that specifying this flag makes Cargo run in a different mode where the +target artifacts are placed in a separate directory. See the +\fIbuild cache\fR documentation for more details. +.RE +.sp +\fB\-r\fR, +\fB\-\-release\fR +.RS 4 +Run optimized artifacts with the \fBrelease\fR profile. +See also the \fB\-\-profile\fR option for choosing a specific profile by name. +.RE +.sp +\fB\-\-profile\fR \fIname\fR +.RS 4 +Run with the given profile. +See \fIthe reference\fR for more details on profiles. +.RE +.sp +\fB\-\-timings\fR +.RS 4 +Output information how long each compilation takes, and track concurrency +information over time. +.sp +A file \fBcargo\-timing.html\fR will be written to the \fBtarget/cargo\-timings\fR +directory at the end of the build. An additional report with a timestamp +in its filename is also written if you want to look at a previous run. +These reports are suitable for human consumption only, and do not provide +machine\-readable timing data. +.RE +.SS "Output Options" +.sp +\fB\-\-target\-dir\fR \fIdirectory\fR +.RS 4 +Directory for all generated artifacts and intermediate files. May also be +specified with the \fBCARGO_TARGET_DIR\fR environment variable, or the +\fBbuild.target\-dir\fR \fIconfig value\fR \&. +Defaults to \fBtarget\fR in the root of the workspace. +.RE +.SS "Display Options" +.sp +\fB\-v\fR, +\fB\-\-verbose\fR +.RS 4 +Use verbose output. May be specified twice for \[lq]very verbose\[rq] output which +includes extra output such as dependency warnings and build script output. +May also be specified with the \fBterm.verbose\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-q\fR, +\fB\-\-quiet\fR +.RS 4 +Do not print cargo log messages. +May also be specified with the \fBterm.quiet\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-\-color\fR \fIwhen\fR +.RS 4 +Control when colored output is used. Valid values: +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBauto\fR (default): Automatically detect if color support is available on the +terminal. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBalways\fR: Always display colors. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBnever\fR: Never display colors. +.RE +.sp +May also be specified with the \fBterm.color\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-\-message\-format\fR \fIfmt\fR +.RS 4 +The output format for diagnostic messages. Can be specified multiple times +and consists of comma\-separated values. Valid values: +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBhuman\fR (default): Display in a human\-readable text format. Conflicts with +\fBshort\fR and \fBjson\fR\&. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBshort\fR: Emit shorter, human\-readable text messages. Conflicts with \fBhuman\fR +and \fBjson\fR\&. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBjson\fR: Emit JSON messages to stdout. See +\fIthe reference\fR +for more details. Conflicts with \fBhuman\fR and \fBshort\fR\&. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBjson\-diagnostic\-short\fR: Ensure the \fBrendered\fR field of JSON messages contains +the \[lq]short\[rq] rendering from rustc. Cannot be used with \fBhuman\fR or \fBshort\fR\&. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBjson\-diagnostic\-rendered\-ansi\fR: Ensure the \fBrendered\fR field of JSON messages +contains embedded ANSI color codes for respecting rustc\[cq]s default color +scheme. Cannot be used with \fBhuman\fR or \fBshort\fR\&. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBjson\-render\-diagnostics\fR: Instruct Cargo to not include rustc diagnostics +in JSON messages printed, but instead Cargo itself should render the +JSON diagnostics coming from rustc. Cargo\[cq]s own JSON diagnostics and others +coming from rustc are still emitted. Cannot be used with \fBhuman\fR or \fBshort\fR\&. +.RE +.RE +.SS "Manifest Options" +.sp +\fB\-\-manifest\-path\fR \fIpath\fR +.RS 4 +Path to the \fBCargo.toml\fR file. By default, Cargo searches for the +\fBCargo.toml\fR file in the current directory or any parent directory. +.RE +.sp +\fB\-\-ignore\-rust\-version\fR +.RS 4 +Ignore \fBrust\-version\fR specification in packages. +.RE +.sp +\fB\-\-locked\fR +.RS 4 +Asserts that the exact same dependencies and versions are used as when the +existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an +error when either of the following scenarios arises: +.sp +.RS 4 +\h'-04'\(bu\h'+03'The lock file is missing. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'Cargo attempted to change the lock file due to a different dependency resolution. +.RE +.sp +It may be used in environments where deterministic builds are desired, +such as in CI pipelines. +.RE +.sp +\fB\-\-offline\fR +.RS 4 +Prevents Cargo from accessing the network for any reason. Without this +flag, Cargo will stop with an error if it needs to access the network and +the network is not available. With this flag, Cargo will attempt to +proceed without the network if possible. +.sp +Beware that this may result in different dependency resolution than online +mode. Cargo will restrict itself to crates that are downloaded locally, even +if there might be a newer version as indicated in the local copy of the index. +See the \fBcargo\-fetch\fR(1) command to download dependencies before going +offline. +.sp +May also be specified with the \fBnet.offline\fR \fIconfig value\fR \&. +.RE +.sp +\fB\-\-frozen\fR +.RS 4 +Equivalent to specifying both \fB\-\-locked\fR and \fB\-\-offline\fR\&. +.RE +.SS "Common Options" +.sp +\fB+\fR\fItoolchain\fR +.RS 4 +If Cargo has been installed with rustup, and the first argument to \fBcargo\fR +begins with \fB+\fR, it will be interpreted as a rustup toolchain name (such +as \fB+stable\fR or \fB+nightly\fR). +See the \fIrustup documentation\fR +for more information about how toolchain overrides work. +.RE +.sp +\fB\-\-config\fR \fIKEY=VALUE\fR or \fIPATH\fR +.RS 4 +Overrides a Cargo configuration value. The argument should be in TOML syntax of \fBKEY=VALUE\fR, +or provided as a path to an extra configuration file. This flag may be specified multiple times. +See the \fIcommand\-line overrides section\fR for more information. +.RE +.sp +\fB\-C\fR \fIPATH\fR +.RS 4 +Changes the current working directory before executing any specified operations. This affects +things like where cargo looks by default for the project manifest (\fBCargo.toml\fR), as well as +the directories searched for discovering \fB\&.cargo/config.toml\fR, for example. This option must +appear before the command name, for example \fBcargo \-C path/to/my\-project build\fR\&. +.sp +This option is only available on the \fInightly +channel\fR and +requires the \fB\-Z unstable\-options\fR flag to enable (see +\fI#10098\fR ). +.RE +.sp +\fB\-h\fR, +\fB\-\-help\fR +.RS 4 +Prints help information. +.RE +.sp +\fB\-Z\fR \fIflag\fR +.RS 4 +Unstable (nightly\-only) flags to Cargo. Run \fBcargo \-Z help\fR for details. +.RE +.SS "Miscellaneous Options" +.sp +\fB\-j\fR \fIN\fR, +\fB\-\-jobs\fR \fIN\fR +.RS 4 +Number of parallel jobs to run. May also be specified with the +\fBbuild.jobs\fR \fIconfig value\fR \&. Defaults to +the number of logical CPUs. If negative, it sets the maximum number of +parallel jobs to the number of logical CPUs plus provided value. If +a string \fBdefault\fR is provided, it sets the value back to defaults. +Should not be 0. +.RE +.sp +\fB\-\-keep\-going\fR +.RS 4 +Build as many crates in the dependency graph as possible, rather than aborting +the build on the first one that fails to build. +.sp +For example if the current package depends on dependencies \fBfails\fR and \fBworks\fR, +one of which fails to build, \fBcargo run \-j1\fR may or may not build the +one that succeeds (depending on which one of the two builds Cargo picked to run +first), whereas \fBcargo run \-j1 \-\-keep\-going\fR would definitely run both +builds, even if the one run first fails. +.RE +.SH "ENVIRONMENT" +See \fIthe reference\fR for +details on environment variables that Cargo reads. +.SH "EXIT STATUS" +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB0\fR: Cargo succeeded. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB101\fR: Cargo failed to complete. +.RE +.SH "EXAMPLES" +.sp +.RS 4 +\h'-04' 1.\h'+01'Build the local package and run its main target (assuming only one binary): +.sp +.RS 4 +.nf +cargo run +.fi +.RE +.RE +.sp +.RS 4 +\h'-04' 2.\h'+01'Run an example with extra arguments: +.sp +.RS 4 +.nf +cargo run \-\-example exname \-\- \-\-exoption exarg1 exarg2 +.fi +.RE +.RE +.SH "SEE ALSO" +\fBcargo\fR(1), \fBcargo\-build\fR(1) diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-rustc.1 b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-rustc.1 new file mode 100644 index 0000000000000000000000000000000000000000..971c921871619030a739910e154d037ecd8316a2 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-rustc.1 @@ -0,0 +1,495 @@ +'\" t +.TH "CARGO\-RUSTC" "1" +.nh +.ad l +.ss \n[.ss] 0 +.SH "NAME" +cargo\-rustc \[em] Compile the current package, and pass extra options to the compiler +.SH "SYNOPSIS" +\fBcargo rustc\fR [\fIoptions\fR] [\fB\-\-\fR \fIargs\fR] +.SH "DESCRIPTION" +The specified target for the current package (or package specified by \fB\-p\fR if +provided) will be compiled along with all of its dependencies. The specified +\fIargs\fR will all be passed to the final compiler invocation, not any of the +dependencies. Note that the compiler will still unconditionally receive +arguments such as \fB\-L\fR, \fB\-\-extern\fR, and \fB\-\-crate\-type\fR, and the specified +\fIargs\fR will simply be added to the compiler invocation. +.sp +See for documentation on rustc +flags. +.sp +This command requires that only one target is being compiled when additional +arguments are provided. If more than one target is available for the current +package the filters of \fB\-\-lib\fR, \fB\-\-bin\fR, etc, must be used to select which +target is compiled. +.sp +To pass flags to all compiler processes spawned by Cargo, use the \fBRUSTFLAGS\fR +\fIenvironment variable\fR or the +\fBbuild.rustflags\fR \fIconfig value\fR \&. +.SH "OPTIONS" +.SS "Package Selection" +By default, the package in the current working directory is selected. The \fB\-p\fR +flag can be used to choose a different package in a workspace. +.sp +\fB\-p\fR \fIspec\fR, +\fB\-\-package\fR \fIspec\fR +.RS 4 +The package to build. See \fBcargo\-pkgid\fR(1) for the SPEC +format. +.RE +.SS "Target Selection" +When no target selection options are given, \fBcargo rustc\fR will build all +binary and library targets of the selected package. +.sp +Binary targets are automatically built if there is an integration test or +benchmark being selected to build. This allows an integration +test to execute the binary to exercise and test its behavior. +The \fBCARGO_BIN_EXE_\fR +\fIenvironment variable\fR +is set when the integration test is built and run so that it can use the +\fI\f(BIenv\fI macro\fR or the +\fI\f(BIvar\fI function\fR to locate the +executable. +.sp +Passing target selection flags will build only the specified +targets. +.sp +Note that \fB\-\-bin\fR, \fB\-\-example\fR, \fB\-\-test\fR and \fB\-\-bench\fR flags also +support common Unix glob patterns like \fB*\fR, \fB?\fR and \fB[]\fR\&. However, to avoid your +shell accidentally expanding glob patterns before Cargo handles them, you must +use single quotes or double quotes around each glob pattern. +.sp +\fB\-\-lib\fR +.RS 4 +Build the package\[cq]s library. +.RE +.sp +\fB\-\-bin\fR \fIname\fR\[u2026] +.RS 4 +Build the specified binary. This flag may be specified multiple times +and supports common Unix glob patterns. +.RE +.sp +\fB\-\-bins\fR +.RS 4 +Build all binary targets. +.RE +.sp +\fB\-\-example\fR \fIname\fR\[u2026] +.RS 4 +Build the specified example. This flag may be specified multiple times +and supports common Unix glob patterns. +.RE +.sp +\fB\-\-examples\fR +.RS 4 +Build all example targets. +.RE +.sp +\fB\-\-test\fR \fIname\fR\[u2026] +.RS 4 +Build the specified integration test. This flag may be specified +multiple times and supports common Unix glob patterns. +.RE +.sp +\fB\-\-tests\fR +.RS 4 +Build all targets that have the \fBtest = true\fR manifest +flag set. By default this includes the library and binaries built as +unittests, and integration tests. Be aware that this will also build any +required dependencies, so the lib target may be built twice (once as a +unittest, and once as a dependency for binaries, integration tests, etc.). +Targets may be enabled or disabled by setting the \fBtest\fR flag in the +manifest settings for the target. +.RE +.sp +\fB\-\-bench\fR \fIname\fR\[u2026] +.RS 4 +Build the specified benchmark. This flag may be specified multiple +times and supports common Unix glob patterns. +.RE +.sp +\fB\-\-benches\fR +.RS 4 +Build all targets that have the \fBbench = true\fR +manifest flag set. By default this includes the library and binaries built +as benchmarks, and bench targets. Be aware that this will also build any +required dependencies, so the lib target may be built twice (once as a +benchmark, and once as a dependency for binaries, benchmarks, etc.). +Targets may be enabled or disabled by setting the \fBbench\fR flag in the +manifest settings for the target. +.RE +.sp +\fB\-\-all\-targets\fR +.RS 4 +Build all targets. This is equivalent to specifying \fB\-\-lib \-\-bins \-\-tests \-\-benches \-\-examples\fR\&. +.RE +.SS "Feature Selection" +The feature flags allow you to control which features are enabled. When no +feature options are given, the \fBdefault\fR feature is activated for every +selected package. +.sp +See \fIthe features documentation\fR +for more details. +.sp +\fB\-F\fR \fIfeatures\fR, +\fB\-\-features\fR \fIfeatures\fR +.RS 4 +Space or comma separated list of features to activate. Features of workspace +members may be enabled with \fBpackage\-name/feature\-name\fR syntax. This flag may +be specified multiple times, which enables all specified features. +.RE +.sp +\fB\-\-all\-features\fR +.RS 4 +Activate all available features of all selected packages. +.RE +.sp +\fB\-\-no\-default\-features\fR +.RS 4 +Do not activate the \fBdefault\fR feature of the selected packages. +.RE +.SS "Compilation Options" +.sp +\fB\-\-target\fR \fItriple\fR +.RS 4 +Build for the specified target architecture. Flag may be specified multiple times. The default is the host architecture. The general format of the triple is +\fB\-\-\-\fR\&. +.sp +Possible values: +.sp +.RS 4 +\h'-04'\(bu\h'+03'Any supported target in \fBrustc \-\-print target\-list\fR\&. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB"host\-tuple"\fR, which will internally be substituted by the host\[cq]s target. This can be particularly useful if you\[cq]re cross\-compiling some crates, and don\[cq]t want to specify your host\[cq]s machine as a target (for instance, an \fBxtask\fR in a shared project that may be worked on by many hosts). +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'A path to a custom target specification. See \fICustom Target Lookup Path\fR for more information. +.RE +.sp +This may also be specified with the \fBbuild.target\fR \fIconfig value\fR \&. +.sp +Note that specifying this flag makes Cargo run in a different mode where the +target artifacts are placed in a separate directory. See the +\fIbuild cache\fR documentation for more details. +.RE +.sp +\fB\-r\fR, +\fB\-\-release\fR +.RS 4 +Build optimized artifacts with the \fBrelease\fR profile. +See also the \fB\-\-profile\fR option for choosing a specific profile by name. +.RE +.sp +\fB\-\-profile\fR \fIname\fR +.RS 4 +Build with the given profile. +.sp +The \fBrustc\fR subcommand will treat the following named profiles with special behaviors: +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBcheck\fR \[em] Builds in the same way as the \fBcargo\-check\fR(1) command with +the \fBdev\fR profile. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBtest\fR \[em] Builds in the same way as the \fBcargo\-test\fR(1) command, +enabling building in test mode which will enable tests and enable the \fBtest\fR +cfg option. See \fIrustc +tests\fR for more detail. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBbench\fR \[em] Builds in the same was as the \fBcargo\-bench\fR(1) command, +similar to the \fBtest\fR profile. +.RE +.sp +See \fIthe reference\fR for more details on profiles. +.RE +.sp +\fB\-\-timings\fR +.RS 4 +Output information how long each compilation takes, and track concurrency +information over time. +.sp +A file \fBcargo\-timing.html\fR will be written to the \fBtarget/cargo\-timings\fR +directory at the end of the build. An additional report with a timestamp +in its filename is also written if you want to look at a previous run. +These reports are suitable for human consumption only, and do not provide +machine\-readable timing data. +.RE +.sp +\fB\-\-crate\-type\fR \fIcrate\-type\fR +.RS 4 +Build for the given crate type. This flag accepts a comma\-separated list of +1 or more crate types, of which the allowed values are the same as \fBcrate\-type\fR +field in the manifest for configuring a Cargo target. See +\fI\f(BIcrate\-type\fI field\fR +for possible values. +.sp +If the manifest contains a list, and \fB\-\-crate\-type\fR is provided, +the command\-line argument value will override what is in the manifest. +.sp +This flag only works when building a \fBlib\fR or \fBexample\fR library target. +.RE +.SS "Output Options" +.sp +\fB\-\-target\-dir\fR \fIdirectory\fR +.RS 4 +Directory for all generated artifacts and intermediate files. May also be +specified with the \fBCARGO_TARGET_DIR\fR environment variable, or the +\fBbuild.target\-dir\fR \fIconfig value\fR \&. +Defaults to \fBtarget\fR in the root of the workspace. +.RE +.SS "Display Options" +.sp +\fB\-v\fR, +\fB\-\-verbose\fR +.RS 4 +Use verbose output. May be specified twice for \[lq]very verbose\[rq] output which +includes extra output such as dependency warnings and build script output. +May also be specified with the \fBterm.verbose\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-q\fR, +\fB\-\-quiet\fR +.RS 4 +Do not print cargo log messages. +May also be specified with the \fBterm.quiet\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-\-color\fR \fIwhen\fR +.RS 4 +Control when colored output is used. Valid values: +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBauto\fR (default): Automatically detect if color support is available on the +terminal. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBalways\fR: Always display colors. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBnever\fR: Never display colors. +.RE +.sp +May also be specified with the \fBterm.color\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-\-message\-format\fR \fIfmt\fR +.RS 4 +The output format for diagnostic messages. Can be specified multiple times +and consists of comma\-separated values. Valid values: +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBhuman\fR (default): Display in a human\-readable text format. Conflicts with +\fBshort\fR and \fBjson\fR\&. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBshort\fR: Emit shorter, human\-readable text messages. Conflicts with \fBhuman\fR +and \fBjson\fR\&. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBjson\fR: Emit JSON messages to stdout. See +\fIthe reference\fR +for more details. Conflicts with \fBhuman\fR and \fBshort\fR\&. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBjson\-diagnostic\-short\fR: Ensure the \fBrendered\fR field of JSON messages contains +the \[lq]short\[rq] rendering from rustc. Cannot be used with \fBhuman\fR or \fBshort\fR\&. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBjson\-diagnostic\-rendered\-ansi\fR: Ensure the \fBrendered\fR field of JSON messages +contains embedded ANSI color codes for respecting rustc\[cq]s default color +scheme. Cannot be used with \fBhuman\fR or \fBshort\fR\&. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBjson\-render\-diagnostics\fR: Instruct Cargo to not include rustc diagnostics +in JSON messages printed, but instead Cargo itself should render the +JSON diagnostics coming from rustc. Cargo\[cq]s own JSON diagnostics and others +coming from rustc are still emitted. Cannot be used with \fBhuman\fR or \fBshort\fR\&. +.RE +.RE +.SS "Manifest Options" +.sp +\fB\-\-manifest\-path\fR \fIpath\fR +.RS 4 +Path to the \fBCargo.toml\fR file. By default, Cargo searches for the +\fBCargo.toml\fR file in the current directory or any parent directory. +.RE +.sp +\fB\-\-ignore\-rust\-version\fR +.RS 4 +Ignore \fBrust\-version\fR specification in packages. +.RE +.sp +\fB\-\-locked\fR +.RS 4 +Asserts that the exact same dependencies and versions are used as when the +existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an +error when either of the following scenarios arises: +.sp +.RS 4 +\h'-04'\(bu\h'+03'The lock file is missing. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'Cargo attempted to change the lock file due to a different dependency resolution. +.RE +.sp +It may be used in environments where deterministic builds are desired, +such as in CI pipelines. +.RE +.sp +\fB\-\-offline\fR +.RS 4 +Prevents Cargo from accessing the network for any reason. Without this +flag, Cargo will stop with an error if it needs to access the network and +the network is not available. With this flag, Cargo will attempt to +proceed without the network if possible. +.sp +Beware that this may result in different dependency resolution than online +mode. Cargo will restrict itself to crates that are downloaded locally, even +if there might be a newer version as indicated in the local copy of the index. +See the \fBcargo\-fetch\fR(1) command to download dependencies before going +offline. +.sp +May also be specified with the \fBnet.offline\fR \fIconfig value\fR \&. +.RE +.sp +\fB\-\-frozen\fR +.RS 4 +Equivalent to specifying both \fB\-\-locked\fR and \fB\-\-offline\fR\&. +.RE +.SS "Common Options" +.sp +\fB+\fR\fItoolchain\fR +.RS 4 +If Cargo has been installed with rustup, and the first argument to \fBcargo\fR +begins with \fB+\fR, it will be interpreted as a rustup toolchain name (such +as \fB+stable\fR or \fB+nightly\fR). +See the \fIrustup documentation\fR +for more information about how toolchain overrides work. +.RE +.sp +\fB\-\-config\fR \fIKEY=VALUE\fR or \fIPATH\fR +.RS 4 +Overrides a Cargo configuration value. The argument should be in TOML syntax of \fBKEY=VALUE\fR, +or provided as a path to an extra configuration file. This flag may be specified multiple times. +See the \fIcommand\-line overrides section\fR for more information. +.RE +.sp +\fB\-C\fR \fIPATH\fR +.RS 4 +Changes the current working directory before executing any specified operations. This affects +things like where cargo looks by default for the project manifest (\fBCargo.toml\fR), as well as +the directories searched for discovering \fB\&.cargo/config.toml\fR, for example. This option must +appear before the command name, for example \fBcargo \-C path/to/my\-project build\fR\&. +.sp +This option is only available on the \fInightly +channel\fR and +requires the \fB\-Z unstable\-options\fR flag to enable (see +\fI#10098\fR ). +.RE +.sp +\fB\-h\fR, +\fB\-\-help\fR +.RS 4 +Prints help information. +.RE +.sp +\fB\-Z\fR \fIflag\fR +.RS 4 +Unstable (nightly\-only) flags to Cargo. Run \fBcargo \-Z help\fR for details. +.RE +.SS "Miscellaneous Options" +.sp +\fB\-j\fR \fIN\fR, +\fB\-\-jobs\fR \fIN\fR +.RS 4 +Number of parallel jobs to run. May also be specified with the +\fBbuild.jobs\fR \fIconfig value\fR \&. Defaults to +the number of logical CPUs. If negative, it sets the maximum number of +parallel jobs to the number of logical CPUs plus provided value. If +a string \fBdefault\fR is provided, it sets the value back to defaults. +Should not be 0. +.RE +.sp +\fB\-\-keep\-going\fR +.RS 4 +Build as many crates in the dependency graph as possible, rather than aborting +the build on the first one that fails to build. +.sp +For example if the current package depends on dependencies \fBfails\fR and \fBworks\fR, +one of which fails to build, \fBcargo rustc \-j1\fR may or may not build the +one that succeeds (depending on which one of the two builds Cargo picked to run +first), whereas \fBcargo rustc \-j1 \-\-keep\-going\fR would definitely run both +builds, even if the one run first fails. +.RE +.sp +\fB\-\-future\-incompat\-report\fR +.RS 4 +Displays a future\-incompat report for any future\-incompatible warnings +produced during execution of this command +.sp +See \fBcargo\-report\fR(1) +.RE +.SH "ENVIRONMENT" +See \fIthe reference\fR for +details on environment variables that Cargo reads. +.SH "EXIT STATUS" +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB0\fR: Cargo succeeded. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB101\fR: Cargo failed to complete. +.RE +.SH "EXAMPLES" +.sp +.RS 4 +\h'-04' 1.\h'+01'Check if your package (not including dependencies) uses unsafe code: +.sp +.RS 4 +.nf +cargo rustc \-\-lib \-\- \-D unsafe\-code +.fi +.RE +.RE +.sp +.RS 4 +\h'-04' 2.\h'+01'Try an experimental flag on the nightly compiler, such as this which prints +the size of every type: +.sp +.RS 4 +.nf +cargo rustc \-\-lib \-\- \-Z print\-type\-sizes +.fi +.RE +.RE +.sp +.RS 4 +\h'-04' 3.\h'+01'Override \fBcrate\-type\fR field in Cargo.toml with command\-line option: +.sp +.RS 4 +.nf +cargo rustc \-\-lib \-\-crate\-type lib,cdylib +.fi +.RE +.RE +.SH "SEE ALSO" +\fBcargo\fR(1), \fBcargo\-build\fR(1), \fBrustc\fR(1) diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-rustdoc.1 b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-rustdoc.1 new file mode 100644 index 0000000000000000000000000000000000000000..c624de72c2f6fc94b7632289292e4c4129452465 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-rustdoc.1 @@ -0,0 +1,449 @@ +'\" t +.TH "CARGO\-RUSTDOC" "1" +.nh +.ad l +.ss \n[.ss] 0 +.SH "NAME" +cargo\-rustdoc \[em] Build a package\[cq]s documentation, using specified custom flags +.SH "SYNOPSIS" +\fBcargo rustdoc\fR [\fIoptions\fR] [\fB\-\-\fR \fIargs\fR] +.SH "DESCRIPTION" +The specified target for the current package (or package specified by \fB\-p\fR if +provided) will be documented with the specified \fIargs\fR being passed to the +final rustdoc invocation. Dependencies will not be documented as part of this +command. Note that rustdoc will still unconditionally receive arguments such +as \fB\-L\fR, \fB\-\-extern\fR, and \fB\-\-crate\-type\fR, and the specified \fIargs\fR will simply +be added to the rustdoc invocation. +.sp +See for documentation on rustdoc +flags. +.sp +This command requires that only one target is being compiled when additional +arguments are provided. If more than one target is available for the current +package the filters of \fB\-\-lib\fR, \fB\-\-bin\fR, etc, must be used to select which +target is compiled. +.sp +To pass flags to all rustdoc processes spawned by Cargo, use the +\fBRUSTDOCFLAGS\fR \fIenvironment variable\fR +or the \fBbuild.rustdocflags\fR \fIconfig value\fR \&. +.SH "OPTIONS" +.SS "Documentation Options" +.sp +\fB\-\-open\fR +.RS 4 +Open the docs in a browser after building them. This will use your default +browser unless you define another one in the \fBBROWSER\fR environment variable +or use the \fI\f(BIdoc.browser\fI\fR configuration +option. +.RE +.SS "Package Selection" +By default, the package in the current working directory is selected. The \fB\-p\fR +flag can be used to choose a different package in a workspace. +.sp +\fB\-p\fR \fIspec\fR, +\fB\-\-package\fR \fIspec\fR +.RS 4 +The package to document. See \fBcargo\-pkgid\fR(1) for the SPEC +format. +.RE +.SS "Target Selection" +When no target selection options are given, \fBcargo rustdoc\fR will document all +binary and library targets of the selected package. The binary will be skipped +if its name is the same as the lib target. Binaries are skipped if they have +\fBrequired\-features\fR that are missing. +.sp +Passing target selection flags will document only the specified +targets. +.sp +Note that \fB\-\-bin\fR, \fB\-\-example\fR, \fB\-\-test\fR and \fB\-\-bench\fR flags also +support common Unix glob patterns like \fB*\fR, \fB?\fR and \fB[]\fR\&. However, to avoid your +shell accidentally expanding glob patterns before Cargo handles them, you must +use single quotes or double quotes around each glob pattern. +.sp +\fB\-\-lib\fR +.RS 4 +Document the package\[cq]s library. +.RE +.sp +\fB\-\-bin\fR \fIname\fR\[u2026] +.RS 4 +Document the specified binary. This flag may be specified multiple times +and supports common Unix glob patterns. +.RE +.sp +\fB\-\-bins\fR +.RS 4 +Document all binary targets. +.RE +.sp +\fB\-\-example\fR \fIname\fR\[u2026] +.RS 4 +Document the specified example. This flag may be specified multiple times +and supports common Unix glob patterns. +.RE +.sp +\fB\-\-examples\fR +.RS 4 +Document all example targets. +.RE +.sp +\fB\-\-test\fR \fIname\fR\[u2026] +.RS 4 +Document the specified integration test. This flag may be specified +multiple times and supports common Unix glob patterns. +.RE +.sp +\fB\-\-tests\fR +.RS 4 +Document all targets that have the \fBtest = true\fR manifest +flag set. By default this includes the library and binaries built as +unittests, and integration tests. Be aware that this will also build any +required dependencies, so the lib target may be built twice (once as a +unittest, and once as a dependency for binaries, integration tests, etc.). +Targets may be enabled or disabled by setting the \fBtest\fR flag in the +manifest settings for the target. +.RE +.sp +\fB\-\-bench\fR \fIname\fR\[u2026] +.RS 4 +Document the specified benchmark. This flag may be specified multiple +times and supports common Unix glob patterns. +.RE +.sp +\fB\-\-benches\fR +.RS 4 +Document all targets that have the \fBbench = true\fR +manifest flag set. By default this includes the library and binaries built +as benchmarks, and bench targets. Be aware that this will also build any +required dependencies, so the lib target may be built twice (once as a +benchmark, and once as a dependency for binaries, benchmarks, etc.). +Targets may be enabled or disabled by setting the \fBbench\fR flag in the +manifest settings for the target. +.RE +.sp +\fB\-\-all\-targets\fR +.RS 4 +Document all targets. This is equivalent to specifying \fB\-\-lib \-\-bins \-\-tests \-\-benches \-\-examples\fR\&. +.RE +.SS "Feature Selection" +The feature flags allow you to control which features are enabled. When no +feature options are given, the \fBdefault\fR feature is activated for every +selected package. +.sp +See \fIthe features documentation\fR +for more details. +.sp +\fB\-F\fR \fIfeatures\fR, +\fB\-\-features\fR \fIfeatures\fR +.RS 4 +Space or comma separated list of features to activate. Features of workspace +members may be enabled with \fBpackage\-name/feature\-name\fR syntax. This flag may +be specified multiple times, which enables all specified features. +.RE +.sp +\fB\-\-all\-features\fR +.RS 4 +Activate all available features of all selected packages. +.RE +.sp +\fB\-\-no\-default\-features\fR +.RS 4 +Do not activate the \fBdefault\fR feature of the selected packages. +.RE +.SS "Compilation Options" +.sp +\fB\-\-target\fR \fItriple\fR +.RS 4 +Document for the specified target architecture. Flag may be specified multiple times. The default is the host architecture. The general format of the triple is +\fB\-\-\-\fR\&. +.sp +Possible values: +.sp +.RS 4 +\h'-04'\(bu\h'+03'Any supported target in \fBrustc \-\-print target\-list\fR\&. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB"host\-tuple"\fR, which will internally be substituted by the host\[cq]s target. This can be particularly useful if you\[cq]re cross\-compiling some crates, and don\[cq]t want to specify your host\[cq]s machine as a target (for instance, an \fBxtask\fR in a shared project that may be worked on by many hosts). +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'A path to a custom target specification. See \fICustom Target Lookup Path\fR for more information. +.RE +.sp +This may also be specified with the \fBbuild.target\fR \fIconfig value\fR \&. +.sp +Note that specifying this flag makes Cargo run in a different mode where the +target artifacts are placed in a separate directory. See the +\fIbuild cache\fR documentation for more details. +.RE +.sp +\fB\-r\fR, +\fB\-\-release\fR +.RS 4 +Document optimized artifacts with the \fBrelease\fR profile. +See also the \fB\-\-profile\fR option for choosing a specific profile by name. +.RE +.sp +\fB\-\-profile\fR \fIname\fR +.RS 4 +Document with the given profile. +See \fIthe reference\fR for more details on profiles. +.RE +.sp +\fB\-\-timings\fR +.RS 4 +Output information how long each compilation takes, and track concurrency +information over time. +.sp +A file \fBcargo\-timing.html\fR will be written to the \fBtarget/cargo\-timings\fR +directory at the end of the build. An additional report with a timestamp +in its filename is also written if you want to look at a previous run. +These reports are suitable for human consumption only, and do not provide +machine\-readable timing data. +.RE +.SS "Output Options" +.sp +\fB\-\-target\-dir\fR \fIdirectory\fR +.RS 4 +Directory for all generated artifacts and intermediate files. May also be +specified with the \fBCARGO_TARGET_DIR\fR environment variable, or the +\fBbuild.target\-dir\fR \fIconfig value\fR \&. +Defaults to \fBtarget\fR in the root of the workspace. +.RE +.SS "Display Options" +.sp +\fB\-v\fR, +\fB\-\-verbose\fR +.RS 4 +Use verbose output. May be specified twice for \[lq]very verbose\[rq] output which +includes extra output such as dependency warnings and build script output. +May also be specified with the \fBterm.verbose\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-q\fR, +\fB\-\-quiet\fR +.RS 4 +Do not print cargo log messages. +May also be specified with the \fBterm.quiet\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-\-color\fR \fIwhen\fR +.RS 4 +Control when colored output is used. Valid values: +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBauto\fR (default): Automatically detect if color support is available on the +terminal. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBalways\fR: Always display colors. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBnever\fR: Never display colors. +.RE +.sp +May also be specified with the \fBterm.color\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-\-message\-format\fR \fIfmt\fR +.RS 4 +The output format for diagnostic messages. Can be specified multiple times +and consists of comma\-separated values. Valid values: +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBhuman\fR (default): Display in a human\-readable text format. Conflicts with +\fBshort\fR and \fBjson\fR\&. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBshort\fR: Emit shorter, human\-readable text messages. Conflicts with \fBhuman\fR +and \fBjson\fR\&. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBjson\fR: Emit JSON messages to stdout. See +\fIthe reference\fR +for more details. Conflicts with \fBhuman\fR and \fBshort\fR\&. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBjson\-diagnostic\-short\fR: Ensure the \fBrendered\fR field of JSON messages contains +the \[lq]short\[rq] rendering from rustc. Cannot be used with \fBhuman\fR or \fBshort\fR\&. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBjson\-diagnostic\-rendered\-ansi\fR: Ensure the \fBrendered\fR field of JSON messages +contains embedded ANSI color codes for respecting rustc\[cq]s default color +scheme. Cannot be used with \fBhuman\fR or \fBshort\fR\&. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBjson\-render\-diagnostics\fR: Instruct Cargo to not include rustc diagnostics +in JSON messages printed, but instead Cargo itself should render the +JSON diagnostics coming from rustc. Cargo\[cq]s own JSON diagnostics and others +coming from rustc are still emitted. Cannot be used with \fBhuman\fR or \fBshort\fR\&. +.RE +.RE +.SS "Manifest Options" +.sp +\fB\-\-manifest\-path\fR \fIpath\fR +.RS 4 +Path to the \fBCargo.toml\fR file. By default, Cargo searches for the +\fBCargo.toml\fR file in the current directory or any parent directory. +.RE +.sp +\fB\-\-ignore\-rust\-version\fR +.RS 4 +Ignore \fBrust\-version\fR specification in packages. +.RE +.sp +\fB\-\-locked\fR +.RS 4 +Asserts that the exact same dependencies and versions are used as when the +existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an +error when either of the following scenarios arises: +.sp +.RS 4 +\h'-04'\(bu\h'+03'The lock file is missing. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'Cargo attempted to change the lock file due to a different dependency resolution. +.RE +.sp +It may be used in environments where deterministic builds are desired, +such as in CI pipelines. +.RE +.sp +\fB\-\-offline\fR +.RS 4 +Prevents Cargo from accessing the network for any reason. Without this +flag, Cargo will stop with an error if it needs to access the network and +the network is not available. With this flag, Cargo will attempt to +proceed without the network if possible. +.sp +Beware that this may result in different dependency resolution than online +mode. Cargo will restrict itself to crates that are downloaded locally, even +if there might be a newer version as indicated in the local copy of the index. +See the \fBcargo\-fetch\fR(1) command to download dependencies before going +offline. +.sp +May also be specified with the \fBnet.offline\fR \fIconfig value\fR \&. +.RE +.sp +\fB\-\-frozen\fR +.RS 4 +Equivalent to specifying both \fB\-\-locked\fR and \fB\-\-offline\fR\&. +.RE +.SS "Common Options" +.sp +\fB+\fR\fItoolchain\fR +.RS 4 +If Cargo has been installed with rustup, and the first argument to \fBcargo\fR +begins with \fB+\fR, it will be interpreted as a rustup toolchain name (such +as \fB+stable\fR or \fB+nightly\fR). +See the \fIrustup documentation\fR +for more information about how toolchain overrides work. +.RE +.sp +\fB\-\-config\fR \fIKEY=VALUE\fR or \fIPATH\fR +.RS 4 +Overrides a Cargo configuration value. The argument should be in TOML syntax of \fBKEY=VALUE\fR, +or provided as a path to an extra configuration file. This flag may be specified multiple times. +See the \fIcommand\-line overrides section\fR for more information. +.RE +.sp +\fB\-C\fR \fIPATH\fR +.RS 4 +Changes the current working directory before executing any specified operations. This affects +things like where cargo looks by default for the project manifest (\fBCargo.toml\fR), as well as +the directories searched for discovering \fB\&.cargo/config.toml\fR, for example. This option must +appear before the command name, for example \fBcargo \-C path/to/my\-project build\fR\&. +.sp +This option is only available on the \fInightly +channel\fR and +requires the \fB\-Z unstable\-options\fR flag to enable (see +\fI#10098\fR ). +.RE +.sp +\fB\-h\fR, +\fB\-\-help\fR +.RS 4 +Prints help information. +.RE +.sp +\fB\-Z\fR \fIflag\fR +.RS 4 +Unstable (nightly\-only) flags to Cargo. Run \fBcargo \-Z help\fR for details. +.RE +.SS "Miscellaneous Options" +.sp +\fB\-j\fR \fIN\fR, +\fB\-\-jobs\fR \fIN\fR +.RS 4 +Number of parallel jobs to run. May also be specified with the +\fBbuild.jobs\fR \fIconfig value\fR \&. Defaults to +the number of logical CPUs. If negative, it sets the maximum number of +parallel jobs to the number of logical CPUs plus provided value. If +a string \fBdefault\fR is provided, it sets the value back to defaults. +Should not be 0. +.RE +.sp +\fB\-\-keep\-going\fR +.RS 4 +Build as many crates in the dependency graph as possible, rather than aborting +the build on the first one that fails to build. +.sp +For example if the current package depends on dependencies \fBfails\fR and \fBworks\fR, +one of which fails to build, \fBcargo rustdoc \-j1\fR may or may not build the +one that succeeds (depending on which one of the two builds Cargo picked to run +first), whereas \fBcargo rustdoc \-j1 \-\-keep\-going\fR would definitely run both +builds, even if the one run first fails. +.RE +.sp +\fB\-\-output\-format\fR +.RS 4 +The output type for the documentation emitted. Valid values: +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBhtml\fR (default): Emit the documentation in HTML format. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBjson\fR: Emit the documentation in the \fIexperimental JSON format\fR \&. +.RE +.sp +This option is only available on the \fInightly channel\fR +and requires the \fB\-Z unstable\-options\fR flag to enable. +.RE +.SH "ENVIRONMENT" +See \fIthe reference\fR for +details on environment variables that Cargo reads. +.SH "EXIT STATUS" +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB0\fR: Cargo succeeded. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB101\fR: Cargo failed to complete. +.RE +.SH "EXAMPLES" +.sp +.RS 4 +\h'-04' 1.\h'+01'Build documentation with custom CSS included from a given file: +.sp +.RS 4 +.nf +cargo rustdoc \-\-lib \-\- \-\-extend\-css extra.css +.fi +.RE +.RE +.SH "SEE ALSO" +\fBcargo\fR(1), \fBcargo\-doc\fR(1), \fBrustdoc\fR(1) diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-search.1 b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-search.1 new file mode 100644 index 0000000000000000000000000000000000000000..a48c0397ea8d7a73c7f0144214f09b9fe373186d --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-search.1 @@ -0,0 +1,138 @@ +'\" t +.TH "CARGO\-SEARCH" "1" +.nh +.ad l +.ss \n[.ss] 0 +.SH "NAME" +cargo\-search \[em] Search packages in the registry. Default registry is crates.io +.SH "SYNOPSIS" +\fBcargo search\fR [\fIoptions\fR] [\fIquery\fR\[u2026]] +.SH "DESCRIPTION" +This performs a textual search for crates on \&. The matching +crates will be displayed along with their description in TOML format suitable +for copying into a \fBCargo.toml\fR manifest. +.SH "OPTIONS" +.SS "Search Options" +.sp +\fB\-\-limit\fR \fIlimit\fR +.RS 4 +Limit the number of results (default: 10, max: 100). +.RE +.sp +\fB\-\-index\fR \fIindex\fR +.RS 4 +The URL of the registry index to use. +.RE +.sp +\fB\-\-registry\fR \fIregistry\fR +.RS 4 +Name of the registry to use. Registry names are defined in \fICargo config +files\fR \&. If not specified, the default registry is used, +which is defined by the \fBregistry.default\fR config key which defaults to +\fBcrates\-io\fR\&. +.RE +.SS "Display Options" +.sp +\fB\-v\fR, +\fB\-\-verbose\fR +.RS 4 +Use verbose output. May be specified twice for \[lq]very verbose\[rq] output which +includes extra output such as dependency warnings and build script output. +May also be specified with the \fBterm.verbose\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-q\fR, +\fB\-\-quiet\fR +.RS 4 +Do not print cargo log messages. +May also be specified with the \fBterm.quiet\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-\-color\fR \fIwhen\fR +.RS 4 +Control when colored output is used. Valid values: +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBauto\fR (default): Automatically detect if color support is available on the +terminal. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBalways\fR: Always display colors. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBnever\fR: Never display colors. +.RE +.sp +May also be specified with the \fBterm.color\fR +\fIconfig value\fR \&. +.RE +.SS "Common Options" +.sp +\fB+\fR\fItoolchain\fR +.RS 4 +If Cargo has been installed with rustup, and the first argument to \fBcargo\fR +begins with \fB+\fR, it will be interpreted as a rustup toolchain name (such +as \fB+stable\fR or \fB+nightly\fR). +See the \fIrustup documentation\fR +for more information about how toolchain overrides work. +.RE +.sp +\fB\-\-config\fR \fIKEY=VALUE\fR or \fIPATH\fR +.RS 4 +Overrides a Cargo configuration value. The argument should be in TOML syntax of \fBKEY=VALUE\fR, +or provided as a path to an extra configuration file. This flag may be specified multiple times. +See the \fIcommand\-line overrides section\fR for more information. +.RE +.sp +\fB\-C\fR \fIPATH\fR +.RS 4 +Changes the current working directory before executing any specified operations. This affects +things like where cargo looks by default for the project manifest (\fBCargo.toml\fR), as well as +the directories searched for discovering \fB\&.cargo/config.toml\fR, for example. This option must +appear before the command name, for example \fBcargo \-C path/to/my\-project build\fR\&. +.sp +This option is only available on the \fInightly +channel\fR and +requires the \fB\-Z unstable\-options\fR flag to enable (see +\fI#10098\fR ). +.RE +.sp +\fB\-h\fR, +\fB\-\-help\fR +.RS 4 +Prints help information. +.RE +.sp +\fB\-Z\fR \fIflag\fR +.RS 4 +Unstable (nightly\-only) flags to Cargo. Run \fBcargo \-Z help\fR for details. +.RE +.SH "ENVIRONMENT" +See \fIthe reference\fR for +details on environment variables that Cargo reads. +.SH "EXIT STATUS" +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB0\fR: Cargo succeeded. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB101\fR: Cargo failed to complete. +.RE +.SH "EXAMPLES" +.sp +.RS 4 +\h'-04' 1.\h'+01'Search for a package from crates.io: +.sp +.RS 4 +.nf +cargo search serde +.fi +.RE +.RE +.SH "SEE ALSO" +\fBcargo\fR(1), \fBcargo\-install\fR(1), \fBcargo\-publish\fR(1) diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-test.1 b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-test.1 new file mode 100644 index 0000000000000000000000000000000000000000..57175befad3c2d7ba0d2b8e794c552db11fdc4ae --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-test.1 @@ -0,0 +1,613 @@ +'\" t +.TH "CARGO\-TEST" "1" +.nh +.ad l +.ss \n[.ss] 0 +.SH "NAME" +cargo\-test \[em] Execute unit and integration tests of a package +.SH "SYNOPSIS" +\fBcargo test\fR [\fIoptions\fR] [\fItestname\fR] [\fB\-\-\fR \fItest\-options\fR] +.SH "DESCRIPTION" +Compile and execute unit, integration, and documentation tests. +.sp +The test filtering argument \fBTESTNAME\fR and all the arguments following the two +dashes (\fB\-\-\fR) are passed to the test binaries and thus to \fIlibtest\fR (rustc\[cq]s +built in unit\-test and micro\-benchmarking framework). If you\[cq]re passing +arguments to both Cargo and the binary, the ones after \fB\-\-\fR go to the binary, +the ones before go to Cargo. For details about libtest\[cq]s arguments see the +output of \fBcargo test \-\- \-\-help\fR and check out the rustc book\[cq]s chapter on +how tests work at \&. +.sp +As an example, this will filter for tests with \fBfoo\fR in their name and run them +on 3 threads in parallel: +.sp +.RS 4 +.nf +cargo test foo \-\- \-\-test\-threads 3 +.fi +.RE +.sp +Tests are built with the \fB\-\-test\fR option to \fBrustc\fR which creates a special +executable by linking your code with libtest. The executable automatically +runs all functions annotated with the \fB#[test]\fR attribute in multiple threads. +\fB#[bench]\fR annotated functions will also be run with one iteration to verify +that they are functional. +.sp +If the package contains multiple test targets, each target compiles to a +special executable as aforementioned, and then is run serially. +.sp +The libtest harness may be disabled by setting \fBharness = false\fR in the target +manifest settings, in which case your code will need to provide its own \fBmain\fR +function to handle running tests. +.SS "Documentation tests" +Documentation tests are also run by default, which is handled by \fBrustdoc\fR\&. It +extracts code samples from documentation comments of the library target, and +then executes them. +.sp +Different from normal test targets, each code block compiles to a doctest +executable on the fly with \fBrustc\fR\&. These executables run in parallel in +separate processes. The compilation of a code block is in fact a part of test +function controlled by libtest, so some options such as \fB\-\-jobs\fR might not +take effect. Note that this execution model of doctests is not guaranteed +and may change in the future; beware of depending on it. +.sp +See the \fIrustdoc book\fR for more information +on writing doc tests. +.SS "Working directory of tests" +The working directory when running each unit and integration test is set to the +root directory of the package the test belongs to. +Setting the working directory of tests to the package\[cq]s root directory makes it +possible for tests to reliably access the package\[cq]s files using relative paths, +regardless from where \fBcargo test\fR was executed from. +.sp +For documentation tests, the working directory when invoking \fBrustdoc\fR is set to +the workspace root directory, and is also the directory \fBrustdoc\fR uses as the +compilation directory of each documentation test. +The working directory when running each documentation test is set to the root +directory of the package the test belongs to, and is controlled via \fBrustdoc\fR\[cq]s +\fB\-\-test\-run\-directory\fR option. +.SH "OPTIONS" +.SS "Test Options" +.sp +\fB\-\-no\-run\fR +.RS 4 +Compile, but don\[cq]t run tests. +.RE +.sp +\fB\-\-no\-fail\-fast\fR +.RS 4 +Run all tests regardless of failure. Without this flag, Cargo will exit +after the first executable fails. The Rust test harness will run all tests +within the executable to completion, this flag only applies to the executable +as a whole. +.RE +.SS "Package Selection" +By default, when no package selection options are given, the packages selected +depend on the selected manifest file (based on the current working directory if +\fB\-\-manifest\-path\fR is not given). If the manifest is the root of a workspace then +the workspaces default members are selected, otherwise only the package defined +by the manifest will be selected. +.sp +The default members of a workspace can be set explicitly with the +\fBworkspace.default\-members\fR key in the root manifest. If this is not set, a +virtual workspace will include all workspace members (equivalent to passing +\fB\-\-workspace\fR), and a non\-virtual workspace will include only the root crate itself. +.sp +\fB\-p\fR \fIspec\fR\[u2026], +\fB\-\-package\fR \fIspec\fR\[u2026] +.RS 4 +Test only the specified packages. See \fBcargo\-pkgid\fR(1) for the +SPEC format. This flag may be specified multiple times and supports common Unix +glob patterns like \fB*\fR, \fB?\fR and \fB[]\fR\&. However, to avoid your shell accidentally +expanding glob patterns before Cargo handles them, you must use single quotes or +double quotes around each pattern. +.RE +.sp +\fB\-\-workspace\fR +.RS 4 +Test all members in the workspace. +.RE +.sp +\fB\-\-all\fR +.RS 4 +Deprecated alias for \fB\-\-workspace\fR\&. +.RE +.sp +\fB\-\-exclude\fR \fISPEC\fR\[u2026] +.RS 4 +Exclude the specified packages. Must be used in conjunction with the +\fB\-\-workspace\fR flag. This flag may be specified multiple times and supports +common Unix glob patterns like \fB*\fR, \fB?\fR and \fB[]\fR\&. However, to avoid your shell +accidentally expanding glob patterns before Cargo handles them, you must use +single quotes or double quotes around each pattern. +.RE +.SS "Target Selection" +When no target selection options are given, \fBcargo test\fR will build the +following targets of the selected packages: +.sp +.RS 4 +\h'-04'\(bu\h'+03'lib \[em] used to link with binaries, examples, integration tests, and doc tests +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'bins (only if integration tests are built and required features are +available) +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'examples \[em] to ensure they compile +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'lib as a unit test +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'bins as unit tests +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'integration tests +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'doc tests for the lib target +.RE +.sp +The default behavior can be changed by setting the \fBtest\fR flag for the target +in the manifest settings. Setting examples to \fBtest = true\fR will build and run +the example as a test, replacing the example\[cq]s \fBmain\fR function with the +libtest harness. If you don\[cq]t want the \fBmain\fR function replaced, also include +\fBharness = false\fR, in which case the example will be built and executed as\-is. +.sp +Setting targets to \fBtest = false\fR will stop them from being tested by default. +Target selection options that take a target by name (such as \fB\-\-example foo\fR) +ignore the \fBtest\fR flag and will always test the given target. +.sp +Doc tests for libraries may be disabled by setting \fBdoctest = false\fR for the +library in the manifest. +.sp +See \fIConfiguring a target\fR +for more information on per\-target settings. +.sp +Binary targets are automatically built if there is an integration test or +benchmark being selected to test. This allows an integration +test to execute the binary to exercise and test its behavior. +The \fBCARGO_BIN_EXE_\fR +\fIenvironment variable\fR +is set when the integration test is built and run so that it can use the +\fI\f(BIenv\fI macro\fR or the +\fI\f(BIvar\fI function\fR to locate the +executable. +.sp +Passing target selection flags will test only the specified +targets. +.sp +Note that \fB\-\-bin\fR, \fB\-\-example\fR, \fB\-\-test\fR and \fB\-\-bench\fR flags also +support common Unix glob patterns like \fB*\fR, \fB?\fR and \fB[]\fR\&. However, to avoid your +shell accidentally expanding glob patterns before Cargo handles them, you must +use single quotes or double quotes around each glob pattern. +.sp +\fB\-\-lib\fR +.RS 4 +Test the package\[cq]s library. +.RE +.sp +\fB\-\-bin\fR \fIname\fR\[u2026] +.RS 4 +Test the specified binary. This flag may be specified multiple times +and supports common Unix glob patterns. +.RE +.sp +\fB\-\-bins\fR +.RS 4 +Test all binary targets. +.RE +.sp +\fB\-\-example\fR \fIname\fR\[u2026] +.RS 4 +Test the specified example. This flag may be specified multiple times +and supports common Unix glob patterns. +.RE +.sp +\fB\-\-examples\fR +.RS 4 +Test all example targets. +.RE +.sp +\fB\-\-test\fR \fIname\fR\[u2026] +.RS 4 +Test the specified integration test. This flag may be specified +multiple times and supports common Unix glob patterns. +.RE +.sp +\fB\-\-tests\fR +.RS 4 +Test all targets that have the \fBtest = true\fR manifest +flag set. By default this includes the library and binaries built as +unittests, and integration tests. Be aware that this will also build any +required dependencies, so the lib target may be built twice (once as a +unittest, and once as a dependency for binaries, integration tests, etc.). +Targets may be enabled or disabled by setting the \fBtest\fR flag in the +manifest settings for the target. +.RE +.sp +\fB\-\-bench\fR \fIname\fR\[u2026] +.RS 4 +Test the specified benchmark. This flag may be specified multiple +times and supports common Unix glob patterns. +.RE +.sp +\fB\-\-benches\fR +.RS 4 +Test all targets that have the \fBbench = true\fR +manifest flag set. By default this includes the library and binaries built +as benchmarks, and bench targets. Be aware that this will also build any +required dependencies, so the lib target may be built twice (once as a +benchmark, and once as a dependency for binaries, benchmarks, etc.). +Targets may be enabled or disabled by setting the \fBbench\fR flag in the +manifest settings for the target. +.RE +.sp +\fB\-\-all\-targets\fR +.RS 4 +Test all targets. This is equivalent to specifying \fB\-\-lib \-\-bins \-\-tests \-\-benches \-\-examples\fR\&. +.RE +.sp +\fB\-\-doc\fR +.RS 4 +Test only the library\[cq]s documentation. This cannot be mixed with other +target options. +.RE +.SS "Feature Selection" +The feature flags allow you to control which features are enabled. When no +feature options are given, the \fBdefault\fR feature is activated for every +selected package. +.sp +See \fIthe features documentation\fR +for more details. +.sp +\fB\-F\fR \fIfeatures\fR, +\fB\-\-features\fR \fIfeatures\fR +.RS 4 +Space or comma separated list of features to activate. Features of workspace +members may be enabled with \fBpackage\-name/feature\-name\fR syntax. This flag may +be specified multiple times, which enables all specified features. +.RE +.sp +\fB\-\-all\-features\fR +.RS 4 +Activate all available features of all selected packages. +.RE +.sp +\fB\-\-no\-default\-features\fR +.RS 4 +Do not activate the \fBdefault\fR feature of the selected packages. +.RE +.SS "Compilation Options" +.sp +\fB\-\-target\fR \fItriple\fR +.RS 4 +Test for the specified target architecture. Flag may be specified multiple times. The default is the host architecture. The general format of the triple is +\fB\-\-\-\fR\&. +.sp +Possible values: +.sp +.RS 4 +\h'-04'\(bu\h'+03'Any supported target in \fBrustc \-\-print target\-list\fR\&. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB"host\-tuple"\fR, which will internally be substituted by the host\[cq]s target. This can be particularly useful if you\[cq]re cross\-compiling some crates, and don\[cq]t want to specify your host\[cq]s machine as a target (for instance, an \fBxtask\fR in a shared project that may be worked on by many hosts). +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'A path to a custom target specification. See \fICustom Target Lookup Path\fR for more information. +.RE +.sp +This may also be specified with the \fBbuild.target\fR \fIconfig value\fR \&. +.sp +Note that specifying this flag makes Cargo run in a different mode where the +target artifacts are placed in a separate directory. See the +\fIbuild cache\fR documentation for more details. +.RE +.sp +\fB\-r\fR, +\fB\-\-release\fR +.RS 4 +Test optimized artifacts with the \fBrelease\fR profile. +See also the \fB\-\-profile\fR option for choosing a specific profile by name. +.RE +.sp +\fB\-\-profile\fR \fIname\fR +.RS 4 +Test with the given profile. +See \fIthe reference\fR for more details on profiles. +.RE +.sp +\fB\-\-timings\fR +.RS 4 +Output information how long each compilation takes, and track concurrency +information over time. +.sp +A file \fBcargo\-timing.html\fR will be written to the \fBtarget/cargo\-timings\fR +directory at the end of the build. An additional report with a timestamp +in its filename is also written if you want to look at a previous run. +These reports are suitable for human consumption only, and do not provide +machine\-readable timing data. +.RE +.SS "Output Options" +.sp +\fB\-\-target\-dir\fR \fIdirectory\fR +.RS 4 +Directory for all generated artifacts and intermediate files. May also be +specified with the \fBCARGO_TARGET_DIR\fR environment variable, or the +\fBbuild.target\-dir\fR \fIconfig value\fR \&. +Defaults to \fBtarget\fR in the root of the workspace. +.RE +.SS "Display Options" +By default the Rust test harness hides output from test execution to keep +results readable. Test output can be recovered (e.g., for debugging) by passing +\fB\-\-no\-capture\fR to the test binaries: +.sp +.RS 4 +.nf +cargo test \-\- \-\-no\-capture +.fi +.RE +.sp +\fB\-v\fR, +\fB\-\-verbose\fR +.RS 4 +Use verbose output. May be specified twice for \[lq]very verbose\[rq] output which +includes extra output such as dependency warnings and build script output. +May also be specified with the \fBterm.verbose\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-q\fR, +\fB\-\-quiet\fR +.RS 4 +Do not print cargo log messages. +May also be specified with the \fBterm.quiet\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-\-color\fR \fIwhen\fR +.RS 4 +Control when colored output is used. Valid values: +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBauto\fR (default): Automatically detect if color support is available on the +terminal. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBalways\fR: Always display colors. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBnever\fR: Never display colors. +.RE +.sp +May also be specified with the \fBterm.color\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-\-message\-format\fR \fIfmt\fR +.RS 4 +The output format for diagnostic messages. Can be specified multiple times +and consists of comma\-separated values. Valid values: +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBhuman\fR (default): Display in a human\-readable text format. Conflicts with +\fBshort\fR and \fBjson\fR\&. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBshort\fR: Emit shorter, human\-readable text messages. Conflicts with \fBhuman\fR +and \fBjson\fR\&. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBjson\fR: Emit JSON messages to stdout. See +\fIthe reference\fR +for more details. Conflicts with \fBhuman\fR and \fBshort\fR\&. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBjson\-diagnostic\-short\fR: Ensure the \fBrendered\fR field of JSON messages contains +the \[lq]short\[rq] rendering from rustc. Cannot be used with \fBhuman\fR or \fBshort\fR\&. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBjson\-diagnostic\-rendered\-ansi\fR: Ensure the \fBrendered\fR field of JSON messages +contains embedded ANSI color codes for respecting rustc\[cq]s default color +scheme. Cannot be used with \fBhuman\fR or \fBshort\fR\&. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBjson\-render\-diagnostics\fR: Instruct Cargo to not include rustc diagnostics +in JSON messages printed, but instead Cargo itself should render the +JSON diagnostics coming from rustc. Cargo\[cq]s own JSON diagnostics and others +coming from rustc are still emitted. Cannot be used with \fBhuman\fR or \fBshort\fR\&. +.RE +.RE +.SS "Manifest Options" +.sp +\fB\-\-manifest\-path\fR \fIpath\fR +.RS 4 +Path to the \fBCargo.toml\fR file. By default, Cargo searches for the +\fBCargo.toml\fR file in the current directory or any parent directory. +.RE +.sp +\fB\-\-ignore\-rust\-version\fR +.RS 4 +Ignore \fBrust\-version\fR specification in packages. +.RE +.sp +\fB\-\-locked\fR +.RS 4 +Asserts that the exact same dependencies and versions are used as when the +existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an +error when either of the following scenarios arises: +.sp +.RS 4 +\h'-04'\(bu\h'+03'The lock file is missing. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'Cargo attempted to change the lock file due to a different dependency resolution. +.RE +.sp +It may be used in environments where deterministic builds are desired, +such as in CI pipelines. +.RE +.sp +\fB\-\-offline\fR +.RS 4 +Prevents Cargo from accessing the network for any reason. Without this +flag, Cargo will stop with an error if it needs to access the network and +the network is not available. With this flag, Cargo will attempt to +proceed without the network if possible. +.sp +Beware that this may result in different dependency resolution than online +mode. Cargo will restrict itself to crates that are downloaded locally, even +if there might be a newer version as indicated in the local copy of the index. +See the \fBcargo\-fetch\fR(1) command to download dependencies before going +offline. +.sp +May also be specified with the \fBnet.offline\fR \fIconfig value\fR \&. +.RE +.sp +\fB\-\-frozen\fR +.RS 4 +Equivalent to specifying both \fB\-\-locked\fR and \fB\-\-offline\fR\&. +.RE +.SS "Common Options" +.sp +\fB+\fR\fItoolchain\fR +.RS 4 +If Cargo has been installed with rustup, and the first argument to \fBcargo\fR +begins with \fB+\fR, it will be interpreted as a rustup toolchain name (such +as \fB+stable\fR or \fB+nightly\fR). +See the \fIrustup documentation\fR +for more information about how toolchain overrides work. +.RE +.sp +\fB\-\-config\fR \fIKEY=VALUE\fR or \fIPATH\fR +.RS 4 +Overrides a Cargo configuration value. The argument should be in TOML syntax of \fBKEY=VALUE\fR, +or provided as a path to an extra configuration file. This flag may be specified multiple times. +See the \fIcommand\-line overrides section\fR for more information. +.RE +.sp +\fB\-C\fR \fIPATH\fR +.RS 4 +Changes the current working directory before executing any specified operations. This affects +things like where cargo looks by default for the project manifest (\fBCargo.toml\fR), as well as +the directories searched for discovering \fB\&.cargo/config.toml\fR, for example. This option must +appear before the command name, for example \fBcargo \-C path/to/my\-project build\fR\&. +.sp +This option is only available on the \fInightly +channel\fR and +requires the \fB\-Z unstable\-options\fR flag to enable (see +\fI#10098\fR ). +.RE +.sp +\fB\-h\fR, +\fB\-\-help\fR +.RS 4 +Prints help information. +.RE +.sp +\fB\-Z\fR \fIflag\fR +.RS 4 +Unstable (nightly\-only) flags to Cargo. Run \fBcargo \-Z help\fR for details. +.RE +.SS "Miscellaneous Options" +The \fB\-\-jobs\fR argument affects the building of the test executable but does not +affect how many threads are used when running the tests. The Rust test harness +includes an option to control the number of threads used: +.sp +.RS 4 +.nf +cargo test \-j 2 \-\- \-\-test\-threads=2 +.fi +.RE +.sp +\fB\-j\fR \fIN\fR, +\fB\-\-jobs\fR \fIN\fR +.RS 4 +Number of parallel jobs to run. May also be specified with the +\fBbuild.jobs\fR \fIconfig value\fR \&. Defaults to +the number of logical CPUs. If negative, it sets the maximum number of +parallel jobs to the number of logical CPUs plus provided value. If +a string \fBdefault\fR is provided, it sets the value back to defaults. +Should not be 0. +.RE +.sp +\fB\-\-future\-incompat\-report\fR +.RS 4 +Displays a future\-incompat report for any future\-incompatible warnings +produced during execution of this command +.sp +See \fBcargo\-report\fR(1) +.RE +.sp +While \fBcargo test\fR involves compilation, it does not provide a \fB\-\-keep\-going\fR +flag. Use \fB\-\-no\-fail\-fast\fR to run as many tests as possible without stopping at +the first failure. To \[lq]compile\[rq] as many tests as possible, use \fB\-\-tests\fR to +build test binaries separately. For example: +.sp +.RS 4 +.nf +cargo build \-\-tests \-\-keep\-going +cargo test \-\-tests \-\-no\-fail\-fast +.fi +.RE +.SH "ENVIRONMENT" +See \fIthe reference\fR for +details on environment variables that Cargo reads. +.SH "EXIT STATUS" +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB0\fR: Cargo succeeded. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB101\fR: Cargo failed to complete. +.RE +.SH "EXAMPLES" +.sp +.RS 4 +\h'-04' 1.\h'+01'Execute all the unit and integration tests of the current package: +.sp +.RS 4 +.nf +cargo test +.fi +.RE +.RE +.sp +.RS 4 +\h'-04' 2.\h'+01'Run only tests whose names match against a filter string: +.sp +.RS 4 +.nf +cargo test name_filter +.fi +.RE +.RE +.sp +.RS 4 +\h'-04' 3.\h'+01'Run only a specific test within a specific integration test: +.sp +.RS 4 +.nf +cargo test \-\-test int_test_name \-\- modname::test_name +.fi +.RE +.RE +.SH "SEE ALSO" +\fBcargo\fR(1), \fBcargo\-bench\fR(1), \fItypes of tests\fR , \fIhow to write tests\fR diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-tree.1 b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-tree.1 new file mode 100644 index 0000000000000000000000000000000000000000..8dbda8778d2f693094c0a37e1bc393e2862cb565 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-tree.1 @@ -0,0 +1,520 @@ +'\" t +.TH "CARGO\-TREE" "1" +.nh +.ad l +.ss \n[.ss] 0 +.SH "NAME" +cargo\-tree \[em] Display a tree visualization of a dependency graph +.SH "SYNOPSIS" +\fBcargo tree\fR [\fIoptions\fR] +.SH "DESCRIPTION" +This command will display a tree of dependencies to the terminal. An example +of a simple project that depends on the \[lq]rand\[rq] package: +.sp +.RS 4 +.nf +myproject v0.1.0 (/myproject) +`\-\- rand v0.7.3 + |\-\- getrandom v0.1.14 + | |\-\- cfg\-if v0.1.10 + | `\-\- libc v0.2.68 + |\-\- libc v0.2.68 (*) + |\-\- rand_chacha v0.2.2 + | |\-\- ppv\-lite86 v0.2.6 + | `\-\- rand_core v0.5.1 + | `\-\- getrandom v0.1.14 (*) + `\-\- rand_core v0.5.1 (*) +[build\-dependencies] +`\-\- cc v1.0.50 +.fi +.RE +.sp +Packages marked with \fB(*)\fR have been \[lq]de\-duplicated\[rq]\&. The dependencies for the +package have already been shown elsewhere in the graph, and so are not +repeated. Use the \fB\-\-no\-dedupe\fR option to repeat the duplicates. +.sp +The \fB\-e\fR flag can be used to select the dependency kinds to display. The +\[lq]features\[rq] kind changes the output to display the features enabled by +each dependency. For example, \fBcargo tree \-e features\fR: +.sp +.RS 4 +.nf +myproject v0.1.0 (/myproject) +`\-\- log feature "serde" + `\-\- log v0.4.8 + |\-\- serde v1.0.106 + `\-\- cfg\-if feature "default" + `\-\- cfg\-if v0.1.10 +.fi +.RE +.sp +In this tree, \fBmyproject\fR depends on \fBlog\fR with the \fBserde\fR feature. \fBlog\fR in +turn depends on \fBcfg\-if\fR with \[lq]default\[rq] features. When using \fB\-e features\fR it +can be helpful to use \fB\-i\fR flag to show how the features flow into a package. +See the examples below for more detail. +.SS "Feature Unification" +This command shows a graph much closer to a feature\-unified graph Cargo will +build, rather than what you list in \fBCargo.toml\fR\&. For instance, if you specify +the same dependency in both \fB[dependencies]\fR and \fB[dev\-dependencies]\fR but with +different features on. This command may merge all features and show a \fB(*)\fR on +one of the dependency to indicate the duplicate. +.sp +As a result, for a mostly equivalent overview of what \fBcargo build\fR does, +\fBcargo tree \-e normal,build\fR is pretty close; for a mostly equivalent overview +of what \fBcargo test\fR does, \fBcargo tree\fR is pretty close. However, it doesn\[cq]t +guarantee the exact equivalence to what Cargo is going to build, since a +compilation is complex and depends on lots of different factors. +.sp +To learn more about feature unification, check out this +\fIdedicated section\fR \&. +.SH "OPTIONS" +.SS "Tree Options" +.sp +\fB\-i\fR \fIspec\fR, +\fB\-\-invert\fR \fIspec\fR +.RS 4 +Show the reverse dependencies for the given package. This flag will invert +the tree and display the packages that depend on the given package. +.sp +Note that in a workspace, by default it will only display the package\[cq]s +reverse dependencies inside the tree of the workspace member in the current +directory. The \fB\-\-workspace\fR flag can be used to extend it so that it will +show the package\[cq]s reverse dependencies across the entire workspace. The \fB\-p\fR +flag can be used to display the package\[cq]s reverse dependencies only with the +subtree of the package given to \fB\-p\fR\&. +.RE +.sp +\fB\-\-prune\fR \fIspec\fR +.RS 4 +Prune the given package from the display of the dependency tree. +.RE +.sp +\fB\-\-depth\fR \fIdepth\fR +.RS 4 +Maximum display depth of the dependency tree. A depth of 1 displays the direct +dependencies, for example. +.sp +If the given value is \fBworkspace\fR, only shows the dependencies that are member +of the current workspace, instead. +.RE +.sp +\fB\-\-no\-dedupe\fR +.RS 4 +Do not de\-duplicate repeated dependencies. Usually, when a package has already +displayed its dependencies, further occurrences will not re\-display its +dependencies, and will include a \fB(*)\fR to indicate it has already been shown. +This flag will cause those duplicates to be repeated. +.RE +.sp +\fB\-d\fR, +\fB\-\-duplicates\fR +.RS 4 +Show only dependencies which come in multiple versions (implies \fB\-\-invert\fR). +When used with the \fB\-p\fR flag, only shows duplicates within the subtree of the +given package. +.sp +It can be beneficial for build times and executable sizes to avoid building +that same package multiple times. This flag can help identify the offending +packages. You can then investigate if the package that depends on the +duplicate with the older version can be updated to the newer version so that +only one instance is built. +.RE +.sp +\fB\-e\fR \fIkinds\fR, +\fB\-\-edges\fR \fIkinds\fR +.RS 4 +The dependency kinds to display. Takes a comma separated list of values: +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBall\fR \[em] Show all edge kinds. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBnormal\fR \[em] Show normal dependencies. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBbuild\fR \[em] Show build dependencies. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBdev\fR \[em] Show development dependencies. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBfeatures\fR \[em] Show features enabled by each dependency. If this is the only +kind given, then it will automatically include the other dependency kinds. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBno\-normal\fR \[em] Do not include normal dependencies. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBno\-build\fR \[em] Do not include build dependencies. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBno\-dev\fR \[em] Do not include development dependencies. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBno\-proc\-macro\fR \[em] Do not include procedural macro dependencies. +.RE +.sp +The \fBnormal\fR, \fBbuild\fR, \fBdev\fR, and \fBall\fR dependency kinds cannot be mixed with +\fBno\-normal\fR, \fBno\-build\fR, or \fBno\-dev\fR dependency kinds. +.sp +The default is \fBnormal,build,dev\fR\&. +.RE +.sp +\fB\-\-target\fR \fItriple\fR +.RS 4 +Filter dependencies matching the given \fItarget triple\fR \&. +The default is the host platform. Use the value \fBall\fR to include \fIall\fR targets. +.RE +.SS "Tree Formatting Options" +.sp +\fB\-\-charset\fR \fIcharset\fR +.RS 4 +Chooses the character set to use for the tree. Valid values are \[lq]utf8\[rq] or +\[lq]ascii\[rq]\&. When unspecified, cargo will auto\-select a value. +.RE +.sp +\fB\-f\fR \fIformat\fR, +\fB\-\-format\fR \fIformat\fR +.RS 4 +Set the format string for each package. The default is \[lq]{p}\[rq]\&. +.sp +This is an arbitrary string which will be used to display each package. The following +strings will be replaced with the corresponding value: +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB{p}\fR, \fB{package}\fR \[em] The package name. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB{l}\fR, \fB{license}\fR \[em] The package license. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB{r}\fR, \fB{repository}\fR \[em] The package repository URL. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB{f}\fR, \fB{features}\fR \[em] Comma\-separated list of package features that are enabled. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB{lib}\fR \[em] The name, as used in a \fBuse\fR statement, of the package\[cq]s library. +.RE +.RE +.sp +\fB\-\-prefix\fR \fIprefix\fR +.RS 4 +Sets how each line is displayed. The \fIprefix\fR value can be one of: +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBindent\fR (default) \[em] Shows each line indented as a tree. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBdepth\fR \[em] Show as a list, with the numeric depth printed before each entry. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBnone\fR \[em] Show as a flat list. +.RE +.RE +.SS "Package Selection" +By default, when no package selection options are given, the packages selected +depend on the selected manifest file (based on the current working directory if +\fB\-\-manifest\-path\fR is not given). If the manifest is the root of a workspace then +the workspaces default members are selected, otherwise only the package defined +by the manifest will be selected. +.sp +The default members of a workspace can be set explicitly with the +\fBworkspace.default\-members\fR key in the root manifest. If this is not set, a +virtual workspace will include all workspace members (equivalent to passing +\fB\-\-workspace\fR), and a non\-virtual workspace will include only the root crate itself. +.sp +\fB\-p\fR \fIspec\fR\[u2026], +\fB\-\-package\fR \fIspec\fR\[u2026] +.RS 4 +Display only the specified packages. See \fBcargo\-pkgid\fR(1) for the +SPEC format. This flag may be specified multiple times and supports common Unix +glob patterns like \fB*\fR, \fB?\fR and \fB[]\fR\&. However, to avoid your shell accidentally +expanding glob patterns before Cargo handles them, you must use single quotes or +double quotes around each pattern. +.RE +.sp +\fB\-\-workspace\fR +.RS 4 +Display all members in the workspace. +.RE +.sp +\fB\-\-exclude\fR \fISPEC\fR\[u2026] +.RS 4 +Exclude the specified packages. Must be used in conjunction with the +\fB\-\-workspace\fR flag. This flag may be specified multiple times and supports +common Unix glob patterns like \fB*\fR, \fB?\fR and \fB[]\fR\&. However, to avoid your shell +accidentally expanding glob patterns before Cargo handles them, you must use +single quotes or double quotes around each pattern. +.RE +.SS "Manifest Options" +.sp +\fB\-\-manifest\-path\fR \fIpath\fR +.RS 4 +Path to the \fBCargo.toml\fR file. By default, Cargo searches for the +\fBCargo.toml\fR file in the current directory or any parent directory. +.RE +.sp +\fB\-\-locked\fR +.RS 4 +Asserts that the exact same dependencies and versions are used as when the +existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an +error when either of the following scenarios arises: +.sp +.RS 4 +\h'-04'\(bu\h'+03'The lock file is missing. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'Cargo attempted to change the lock file due to a different dependency resolution. +.RE +.sp +It may be used in environments where deterministic builds are desired, +such as in CI pipelines. +.RE +.sp +\fB\-\-offline\fR +.RS 4 +Prevents Cargo from accessing the network for any reason. Without this +flag, Cargo will stop with an error if it needs to access the network and +the network is not available. With this flag, Cargo will attempt to +proceed without the network if possible. +.sp +Beware that this may result in different dependency resolution than online +mode. Cargo will restrict itself to crates that are downloaded locally, even +if there might be a newer version as indicated in the local copy of the index. +See the \fBcargo\-fetch\fR(1) command to download dependencies before going +offline. +.sp +May also be specified with the \fBnet.offline\fR \fIconfig value\fR \&. +.RE +.sp +\fB\-\-frozen\fR +.RS 4 +Equivalent to specifying both \fB\-\-locked\fR and \fB\-\-offline\fR\&. +.RE +.SS "Feature Selection" +The feature flags allow you to control which features are enabled. When no +feature options are given, the \fBdefault\fR feature is activated for every +selected package. +.sp +See \fIthe features documentation\fR +for more details. +.sp +\fB\-F\fR \fIfeatures\fR, +\fB\-\-features\fR \fIfeatures\fR +.RS 4 +Space or comma separated list of features to activate. Features of workspace +members may be enabled with \fBpackage\-name/feature\-name\fR syntax. This flag may +be specified multiple times, which enables all specified features. +.RE +.sp +\fB\-\-all\-features\fR +.RS 4 +Activate all available features of all selected packages. +.RE +.sp +\fB\-\-no\-default\-features\fR +.RS 4 +Do not activate the \fBdefault\fR feature of the selected packages. +.RE +.SS "Display Options" +.sp +\fB\-v\fR, +\fB\-\-verbose\fR +.RS 4 +Use verbose output. May be specified twice for \[lq]very verbose\[rq] output which +includes extra output such as dependency warnings and build script output. +May also be specified with the \fBterm.verbose\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-q\fR, +\fB\-\-quiet\fR +.RS 4 +Do not print cargo log messages. +May also be specified with the \fBterm.quiet\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-\-color\fR \fIwhen\fR +.RS 4 +Control when colored output is used. Valid values: +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBauto\fR (default): Automatically detect if color support is available on the +terminal. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBalways\fR: Always display colors. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBnever\fR: Never display colors. +.RE +.sp +May also be specified with the \fBterm.color\fR +\fIconfig value\fR \&. +.RE +.SS "Common Options" +.sp +\fB+\fR\fItoolchain\fR +.RS 4 +If Cargo has been installed with rustup, and the first argument to \fBcargo\fR +begins with \fB+\fR, it will be interpreted as a rustup toolchain name (such +as \fB+stable\fR or \fB+nightly\fR). +See the \fIrustup documentation\fR +for more information about how toolchain overrides work. +.RE +.sp +\fB\-\-config\fR \fIKEY=VALUE\fR or \fIPATH\fR +.RS 4 +Overrides a Cargo configuration value. The argument should be in TOML syntax of \fBKEY=VALUE\fR, +or provided as a path to an extra configuration file. This flag may be specified multiple times. +See the \fIcommand\-line overrides section\fR for more information. +.RE +.sp +\fB\-C\fR \fIPATH\fR +.RS 4 +Changes the current working directory before executing any specified operations. This affects +things like where cargo looks by default for the project manifest (\fBCargo.toml\fR), as well as +the directories searched for discovering \fB\&.cargo/config.toml\fR, for example. This option must +appear before the command name, for example \fBcargo \-C path/to/my\-project build\fR\&. +.sp +This option is only available on the \fInightly +channel\fR and +requires the \fB\-Z unstable\-options\fR flag to enable (see +\fI#10098\fR ). +.RE +.sp +\fB\-h\fR, +\fB\-\-help\fR +.RS 4 +Prints help information. +.RE +.sp +\fB\-Z\fR \fIflag\fR +.RS 4 +Unstable (nightly\-only) flags to Cargo. Run \fBcargo \-Z help\fR for details. +.RE +.SH "ENVIRONMENT" +See \fIthe reference\fR for +details on environment variables that Cargo reads. +.SH "EXIT STATUS" +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB0\fR: Cargo succeeded. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB101\fR: Cargo failed to complete. +.RE +.SH "EXAMPLES" +.sp +.RS 4 +\h'-04' 1.\h'+01'Display the tree for the package in the current directory: +.sp +.RS 4 +.nf +cargo tree +.fi +.RE +.RE +.sp +.RS 4 +\h'-04' 2.\h'+01'Display all the packages that depend on the \fBsyn\fR package: +.sp +.RS 4 +.nf +cargo tree \-i syn +.fi +.RE +.RE +.sp +.RS 4 +\h'-04' 3.\h'+01'Show the features enabled on each package: +.sp +.RS 4 +.nf +cargo tree \-\-format "{p} {f}" +.fi +.RE +.RE +.sp +.RS 4 +\h'-04' 4.\h'+01'Show all packages that are built multiple times. This can happen if multiple +semver\-incompatible versions appear in the tree (like 1.0.0 and 2.0.0). +.sp +.RS 4 +.nf +cargo tree \-d +.fi +.RE +.RE +.sp +.RS 4 +\h'-04' 5.\h'+01'Explain why features are enabled for the \fBsyn\fR package: +.sp +.RS 4 +.nf +cargo tree \-e features \-i syn +.fi +.RE +.sp +The \fB\-e features\fR flag is used to show features. The \fB\-i\fR flag is used to +invert the graph so that it displays the packages that depend on \fBsyn\fR\&. An +example of what this would display: +.sp +.RS 4 +.nf +syn v1.0.17 +|\-\- syn feature "clone\-impls" +| `\-\- syn feature "default" +| `\-\- rustversion v1.0.2 +| `\-\- rustversion feature "default" +| `\-\- myproject v0.1.0 (/myproject) +| `\-\- myproject feature "default" (command\-line) +|\-\- syn feature "default" (*) +|\-\- syn feature "derive" +| `\-\- syn feature "default" (*) +|\-\- syn feature "full" +| `\-\- rustversion v1.0.2 (*) +|\-\- syn feature "parsing" +| `\-\- syn feature "default" (*) +|\-\- syn feature "printing" +| `\-\- syn feature "default" (*) +|\-\- syn feature "proc\-macro" +| `\-\- syn feature "default" (*) +`\-\- syn feature "quote" + |\-\- syn feature "printing" (*) + `\-\- syn feature "proc\-macro" (*) +.fi +.RE +.sp +To read this graph, you can follow the chain for each feature from the root +to see why it is included. For example, the \[lq]full\[rq] feature is added by the +\fBrustversion\fR crate which is included from \fBmyproject\fR (with the default +features), and \fBmyproject\fR is the package selected on the command\-line. All +of the other \fBsyn\fR features are added by the \[lq]default\[rq] feature (\[lq]quote\[rq] is +added by \[lq]printing\[rq] and \[lq]proc\-macro\[rq], both of which are default features). +.sp +If you\[cq]re having difficulty cross\-referencing the de\-duplicated \fB(*)\fR +entries, try with the \fB\-\-no\-dedupe\fR flag to get the full output. +.RE +.SH "SEE ALSO" +\fBcargo\fR(1), \fBcargo\-metadata\fR(1) diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-uninstall.1 b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-uninstall.1 new file mode 100644 index 0000000000000000000000000000000000000000..141410235cc0080488cccf34b39ae0df2b05996a --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-uninstall.1 @@ -0,0 +1,161 @@ +'\" t +.TH "CARGO\-UNINSTALL" "1" +.nh +.ad l +.ss \n[.ss] 0 +.SH "NAME" +cargo\-uninstall \[em] Remove a Rust binary +.SH "SYNOPSIS" +\fBcargo uninstall\fR [\fIoptions\fR] [\fIspec\fR\[u2026]] +.SH "DESCRIPTION" +This command removes a package installed with \fBcargo\-install\fR(1). The \fIspec\fR +argument is a package ID specification of the package to remove (see +\fBcargo\-pkgid\fR(1)). +.sp +By default all binaries are removed for a crate but the \fB\-\-bin\fR and +\fB\-\-example\fR flags can be used to only remove particular binaries. +.sp +The installation root is determined, in order of precedence: +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB\-\-root\fR option +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBCARGO_INSTALL_ROOT\fR environment variable +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBinstall.root\fR Cargo \fIconfig value\fR +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBCARGO_HOME\fR environment variable +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB$HOME/.cargo\fR +.RE +.SH "OPTIONS" +.SS "Uninstall Options" +.sp +\fB\-p\fR, +\fB\-\-package\fR \fIspec\fR\[u2026] +.RS 4 +Package to uninstall. +.RE +.sp +\fB\-\-bin\fR \fIname\fR\[u2026] +.RS 4 +Only uninstall the binary \fIname\fR\&. +.RE +.sp +\fB\-\-root\fR \fIdir\fR +.RS 4 +Directory to uninstall packages from. +.RE +.SS "Display Options" +.sp +\fB\-v\fR, +\fB\-\-verbose\fR +.RS 4 +Use verbose output. May be specified twice for \[lq]very verbose\[rq] output which +includes extra output such as dependency warnings and build script output. +May also be specified with the \fBterm.verbose\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-q\fR, +\fB\-\-quiet\fR +.RS 4 +Do not print cargo log messages. +May also be specified with the \fBterm.quiet\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-\-color\fR \fIwhen\fR +.RS 4 +Control when colored output is used. Valid values: +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBauto\fR (default): Automatically detect if color support is available on the +terminal. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBalways\fR: Always display colors. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBnever\fR: Never display colors. +.RE +.sp +May also be specified with the \fBterm.color\fR +\fIconfig value\fR \&. +.RE +.SS "Common Options" +.sp +\fB+\fR\fItoolchain\fR +.RS 4 +If Cargo has been installed with rustup, and the first argument to \fBcargo\fR +begins with \fB+\fR, it will be interpreted as a rustup toolchain name (such +as \fB+stable\fR or \fB+nightly\fR). +See the \fIrustup documentation\fR +for more information about how toolchain overrides work. +.RE +.sp +\fB\-\-config\fR \fIKEY=VALUE\fR or \fIPATH\fR +.RS 4 +Overrides a Cargo configuration value. The argument should be in TOML syntax of \fBKEY=VALUE\fR, +or provided as a path to an extra configuration file. This flag may be specified multiple times. +See the \fIcommand\-line overrides section\fR for more information. +.RE +.sp +\fB\-C\fR \fIPATH\fR +.RS 4 +Changes the current working directory before executing any specified operations. This affects +things like where cargo looks by default for the project manifest (\fBCargo.toml\fR), as well as +the directories searched for discovering \fB\&.cargo/config.toml\fR, for example. This option must +appear before the command name, for example \fBcargo \-C path/to/my\-project build\fR\&. +.sp +This option is only available on the \fInightly +channel\fR and +requires the \fB\-Z unstable\-options\fR flag to enable (see +\fI#10098\fR ). +.RE +.sp +\fB\-h\fR, +\fB\-\-help\fR +.RS 4 +Prints help information. +.RE +.sp +\fB\-Z\fR \fIflag\fR +.RS 4 +Unstable (nightly\-only) flags to Cargo. Run \fBcargo \-Z help\fR for details. +.RE +.SH "ENVIRONMENT" +See \fIthe reference\fR for +details on environment variables that Cargo reads. +.SH "EXIT STATUS" +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB0\fR: Cargo succeeded. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB101\fR: Cargo failed to complete. +.RE +.SH "EXAMPLES" +.sp +.RS 4 +\h'-04' 1.\h'+01'Uninstall a previously installed package. +.sp +.RS 4 +.nf +cargo uninstall ripgrep +.fi +.RE +.RE +.SH "SEE ALSO" +\fBcargo\fR(1), \fBcargo\-install\fR(1) diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-update.1 b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-update.1 new file mode 100644 index 0000000000000000000000000000000000000000..3b6a86d91d73d5a8e9e4620793907fa2df27953f --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-update.1 @@ -0,0 +1,269 @@ +'\" t +.TH "CARGO\-UPDATE" "1" +.nh +.ad l +.ss \n[.ss] 0 +.SH "NAME" +cargo\-update \[em] Update dependencies as recorded in the local lock file +.SH "SYNOPSIS" +\fBcargo update\fR [\fIoptions\fR] \fIspec\fR +.SH "DESCRIPTION" +This command will update dependencies in the \fBCargo.lock\fR file to the latest +version. If the \fBCargo.lock\fR file does not exist, it will be created with the +latest available versions. +.SH "OPTIONS" +.SS "Update Options" +.sp +\fIspec\fR\[u2026] +.RS 4 +Update only the specified packages. This flag may be specified +multiple times. See \fBcargo\-pkgid\fR(1) for the SPEC format. +.sp +If packages are specified with \fIspec\fR, then a conservative update of +the lockfile will be performed. This means that only the dependency specified +by SPEC will be updated. Its transitive dependencies will be updated only if +SPEC cannot be updated without updating dependencies. All other dependencies +will remain locked at their currently recorded versions. +.sp +If \fIspec\fR is not specified, all dependencies are updated. +.RE +.sp +\fB\-\-recursive\fR +.RS 4 +When used with \fIspec\fR, dependencies of \fIspec\fR are forced to update as well. +Cannot be used with \fB\-\-precise\fR\&. +.RE +.sp +\fB\-\-precise\fR \fIprecise\fR +.RS 4 +When used with \fIspec\fR, allows you to specify a specific version number to set +the package to. If the package comes from a git repository, this can be a git +revision (such as a SHA hash or tag). +.sp +While not recommended, you can specify a yanked version of a package. +When possible, try other non\-yanked SemVer\-compatible versions or seek help +from the maintainers of the package. +.sp +A compatible \fBpre\-release\fR version can also be specified even when the version +requirement in \fBCargo.toml\fR doesn\[cq]t contain any pre\-release identifier (nightly only). +.RE +.sp +\fB\-\-breaking\fR \fIdirectory\fR +.RS 4 +Update \fIspec\fR to latest SemVer\-breaking version. +.sp +Version requirements will be modified to allow this update. +.sp +This only applies to dependencies when +.sp +.RS 4 +\h'-04'\(bu\h'+03'The package is a dependency of a workspace member +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'The dependency is not renamed +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'A SemVer\-incompatible version is available +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'The \[lq]SemVer operator\[rq] is used (\fB^\fR which is the default) +.RE +.sp +This option is unstable and available only on the +\fInightly channel\fR +and requires the \fB\-Z unstable\-options\fR flag to enable. +See for more information. +.RE +.sp +\fB\-w\fR, +\fB\-\-workspace\fR +.RS 4 +Attempt to update only packages defined in the workspace. Other packages +are updated only if they don\[cq]t already exist in the lockfile. This +option is useful for updating \fBCargo.lock\fR after you\[cq]ve changed version +numbers in \fBCargo.toml\fR\&. +.RE +.sp +\fB\-\-dry\-run\fR +.RS 4 +Displays what would be updated, but doesn\[cq]t actually write the lockfile. +.RE +.SS "Display Options" +.sp +\fB\-v\fR, +\fB\-\-verbose\fR +.RS 4 +Use verbose output. May be specified twice for \[lq]very verbose\[rq] output which +includes extra output such as dependency warnings and build script output. +May also be specified with the \fBterm.verbose\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-q\fR, +\fB\-\-quiet\fR +.RS 4 +Do not print cargo log messages. +May also be specified with the \fBterm.quiet\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-\-color\fR \fIwhen\fR +.RS 4 +Control when colored output is used. Valid values: +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBauto\fR (default): Automatically detect if color support is available on the +terminal. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBalways\fR: Always display colors. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBnever\fR: Never display colors. +.RE +.sp +May also be specified with the \fBterm.color\fR +\fIconfig value\fR \&. +.RE +.SS "Manifest Options" +.sp +\fB\-\-manifest\-path\fR \fIpath\fR +.RS 4 +Path to the \fBCargo.toml\fR file. By default, Cargo searches for the +\fBCargo.toml\fR file in the current directory or any parent directory. +.RE +.sp +\fB\-\-ignore\-rust\-version\fR +.RS 4 +Ignore \fBrust\-version\fR specification in packages. +.RE +.sp +\fB\-\-locked\fR +.RS 4 +Asserts that the exact same dependencies and versions are used as when the +existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an +error when either of the following scenarios arises: +.sp +.RS 4 +\h'-04'\(bu\h'+03'The lock file is missing. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'Cargo attempted to change the lock file due to a different dependency resolution. +.RE +.sp +It may be used in environments where deterministic builds are desired, +such as in CI pipelines. +.RE +.sp +\fB\-\-offline\fR +.RS 4 +Prevents Cargo from accessing the network for any reason. Without this +flag, Cargo will stop with an error if it needs to access the network and +the network is not available. With this flag, Cargo will attempt to +proceed without the network if possible. +.sp +Beware that this may result in different dependency resolution than online +mode. Cargo will restrict itself to crates that are downloaded locally, even +if there might be a newer version as indicated in the local copy of the index. +See the \fBcargo\-fetch\fR(1) command to download dependencies before going +offline. +.sp +May also be specified with the \fBnet.offline\fR \fIconfig value\fR \&. +.RE +.sp +\fB\-\-frozen\fR +.RS 4 +Equivalent to specifying both \fB\-\-locked\fR and \fB\-\-offline\fR\&. +.RE +.SS "Common Options" +.sp +\fB+\fR\fItoolchain\fR +.RS 4 +If Cargo has been installed with rustup, and the first argument to \fBcargo\fR +begins with \fB+\fR, it will be interpreted as a rustup toolchain name (such +as \fB+stable\fR or \fB+nightly\fR). +See the \fIrustup documentation\fR +for more information about how toolchain overrides work. +.RE +.sp +\fB\-\-config\fR \fIKEY=VALUE\fR or \fIPATH\fR +.RS 4 +Overrides a Cargo configuration value. The argument should be in TOML syntax of \fBKEY=VALUE\fR, +or provided as a path to an extra configuration file. This flag may be specified multiple times. +See the \fIcommand\-line overrides section\fR for more information. +.RE +.sp +\fB\-C\fR \fIPATH\fR +.RS 4 +Changes the current working directory before executing any specified operations. This affects +things like where cargo looks by default for the project manifest (\fBCargo.toml\fR), as well as +the directories searched for discovering \fB\&.cargo/config.toml\fR, for example. This option must +appear before the command name, for example \fBcargo \-C path/to/my\-project build\fR\&. +.sp +This option is only available on the \fInightly +channel\fR and +requires the \fB\-Z unstable\-options\fR flag to enable (see +\fI#10098\fR ). +.RE +.sp +\fB\-h\fR, +\fB\-\-help\fR +.RS 4 +Prints help information. +.RE +.sp +\fB\-Z\fR \fIflag\fR +.RS 4 +Unstable (nightly\-only) flags to Cargo. Run \fBcargo \-Z help\fR for details. +.RE +.SH "ENVIRONMENT" +See \fIthe reference\fR for +details on environment variables that Cargo reads. +.SH "EXIT STATUS" +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB0\fR: Cargo succeeded. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB101\fR: Cargo failed to complete. +.RE +.SH "EXAMPLES" +.sp +.RS 4 +\h'-04' 1.\h'+01'Update all dependencies in the lockfile: +.sp +.RS 4 +.nf +cargo update +.fi +.RE +.RE +.sp +.RS 4 +\h'-04' 2.\h'+01'Update only specific dependencies: +.sp +.RS 4 +.nf +cargo update foo bar +.fi +.RE +.RE +.sp +.RS 4 +\h'-04' 3.\h'+01'Set a specific dependency to a specific version: +.sp +.RS 4 +.nf +cargo update foo \-\-precise 1.2.3 +.fi +.RE +.RE +.SH "SEE ALSO" +\fBcargo\fR(1), \fBcargo\-generate\-lockfile\fR(1) diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-vendor.1 b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-vendor.1 new file mode 100644 index 0000000000000000000000000000000000000000..0182f8eb37f5525b99426876cf07d14ca850bdf1 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-vendor.1 @@ -0,0 +1,237 @@ +'\" t +.TH "CARGO\-VENDOR" "1" +.nh +.ad l +.ss \n[.ss] 0 +.SH "NAME" +cargo\-vendor \[em] Vendor all dependencies locally +.SH "SYNOPSIS" +\fBcargo vendor\fR [\fIoptions\fR] [\fIpath\fR] +.SH "DESCRIPTION" +This cargo subcommand will vendor all crates.io and git dependencies for a +project into the specified directory at \fB\fR\&. After this command completes +the vendor directory specified by \fB\fR will contain all remote sources from +dependencies specified. Additional manifests beyond the default one can be +specified with the \fB\-s\fR option. +.sp +The configuration necessary to use the vendored sources would be printed to +stdout after \fBcargo vendor\fR completes the vendoring process. +You will need to add or redirect it to your Cargo configuration file, +which is usually \fB\&.cargo/config.toml\fR locally for the current package. +.sp +Cargo treats vendored sources as read\-only as it does to registry and git sources. +If you intend to modify a crate from a remote source, +use \fB[patch]\fR or a \fBpath\fR dependency pointing to a local copy of that crate. +Cargo will then correctly handle the crate on incremental rebuilds, +as it knows that it is no longer a read\-only dependency. +.SH "OPTIONS" +.SS "Vendor Options" +.sp +\fB\-s\fR \fImanifest\fR, +\fB\-\-sync\fR \fImanifest\fR +.RS 4 +Specify an extra \fBCargo.toml\fR manifest to workspaces which should also be +vendored and synced to the output. May be specified multiple times. +.RE +.sp +\fB\-\-no\-delete\fR +.RS 4 +Don\[cq]t delete the \[lq]vendor\[rq] directory when vendoring, but rather keep all +existing contents of the vendor directory +.RE +.sp +\fB\-\-respect\-source\-config\fR +.RS 4 +Instead of ignoring \fB[source]\fR configuration by default in \fB\&.cargo/config.toml\fR +read it and use it when downloading crates from crates.io, for example +.RE +.sp +\fB\-\-versioned\-dirs\fR +.RS 4 +Normally versions are only added to disambiguate multiple versions of the +same package. This option causes all directories in the \[lq]vendor\[rq] directory +to be versioned, which makes it easier to track the history of vendored +packages over time, and can help with the performance of re\-vendoring when +only a subset of the packages have changed. +.RE +.SS "Manifest Options" +.sp +\fB\-\-manifest\-path\fR \fIpath\fR +.RS 4 +Path to the \fBCargo.toml\fR file. By default, Cargo searches for the +\fBCargo.toml\fR file in the current directory or any parent directory. +.RE +.sp +\fB\-\-locked\fR +.RS 4 +Asserts that the exact same dependencies and versions are used as when the +existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an +error when either of the following scenarios arises: +.sp +.RS 4 +\h'-04'\(bu\h'+03'The lock file is missing. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'Cargo attempted to change the lock file due to a different dependency resolution. +.RE +.sp +It may be used in environments where deterministic builds are desired, +such as in CI pipelines. +.RE +.sp +\fB\-\-offline\fR +.RS 4 +Prevents Cargo from accessing the network for any reason. Without this +flag, Cargo will stop with an error if it needs to access the network and +the network is not available. With this flag, Cargo will attempt to +proceed without the network if possible. +.sp +Beware that this may result in different dependency resolution than online +mode. Cargo will restrict itself to crates that are downloaded locally, even +if there might be a newer version as indicated in the local copy of the index. +See the \fBcargo\-fetch\fR(1) command to download dependencies before going +offline. +.sp +May also be specified with the \fBnet.offline\fR \fIconfig value\fR \&. +.RE +.sp +\fB\-\-frozen\fR +.RS 4 +Equivalent to specifying both \fB\-\-locked\fR and \fB\-\-offline\fR\&. +.RE +.SS "Display Options" +.sp +\fB\-v\fR, +\fB\-\-verbose\fR +.RS 4 +Use verbose output. May be specified twice for \[lq]very verbose\[rq] output which +includes extra output such as dependency warnings and build script output. +May also be specified with the \fBterm.verbose\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-q\fR, +\fB\-\-quiet\fR +.RS 4 +Do not print cargo log messages. +May also be specified with the \fBterm.quiet\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-\-color\fR \fIwhen\fR +.RS 4 +Control when colored output is used. Valid values: +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBauto\fR (default): Automatically detect if color support is available on the +terminal. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBalways\fR: Always display colors. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBnever\fR: Never display colors. +.RE +.sp +May also be specified with the \fBterm.color\fR +\fIconfig value\fR \&. +.RE +.SS "Common Options" +.sp +\fB+\fR\fItoolchain\fR +.RS 4 +If Cargo has been installed with rustup, and the first argument to \fBcargo\fR +begins with \fB+\fR, it will be interpreted as a rustup toolchain name (such +as \fB+stable\fR or \fB+nightly\fR). +See the \fIrustup documentation\fR +for more information about how toolchain overrides work. +.RE +.sp +\fB\-\-config\fR \fIKEY=VALUE\fR or \fIPATH\fR +.RS 4 +Overrides a Cargo configuration value. The argument should be in TOML syntax of \fBKEY=VALUE\fR, +or provided as a path to an extra configuration file. This flag may be specified multiple times. +See the \fIcommand\-line overrides section\fR for more information. +.RE +.sp +\fB\-C\fR \fIPATH\fR +.RS 4 +Changes the current working directory before executing any specified operations. This affects +things like where cargo looks by default for the project manifest (\fBCargo.toml\fR), as well as +the directories searched for discovering \fB\&.cargo/config.toml\fR, for example. This option must +appear before the command name, for example \fBcargo \-C path/to/my\-project build\fR\&. +.sp +This option is only available on the \fInightly +channel\fR and +requires the \fB\-Z unstable\-options\fR flag to enable (see +\fI#10098\fR ). +.RE +.sp +\fB\-h\fR, +\fB\-\-help\fR +.RS 4 +Prints help information. +.RE +.sp +\fB\-Z\fR \fIflag\fR +.RS 4 +Unstable (nightly\-only) flags to Cargo. Run \fBcargo \-Z help\fR for details. +.RE +.SH "ENVIRONMENT" +See \fIthe reference\fR for +details on environment variables that Cargo reads. +.SH "EXIT STATUS" +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB0\fR: Cargo succeeded. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB101\fR: Cargo failed to complete. +.RE +.SH "EXAMPLES" +.sp +.RS 4 +\h'-04' 1.\h'+01'Vendor all dependencies into a local \[lq]vendor\[rq] folder +.sp +.RS 4 +.nf +cargo vendor +.fi +.RE +.RE +.sp +.RS 4 +\h'-04' 2.\h'+01'Vendor all dependencies into a local \[lq]third\-party/vendor\[rq] folder +.sp +.RS 4 +.nf +cargo vendor third\-party/vendor +.fi +.RE +.RE +.sp +.RS 4 +\h'-04' 3.\h'+01'Vendor the current workspace as well as another to \[lq]vendor\[rq] +.sp +.RS 4 +.nf +cargo vendor \-s ../path/to/Cargo.toml +.fi +.RE +.RE +.sp +.RS 4 +\h'-04' 4.\h'+01'Vendor and redirect the necessary vendor configs to a config file. +.sp +.RS 4 +.nf +cargo vendor > path/to/my/cargo/config.toml +.fi +.RE +.RE +.SH "SEE ALSO" +\fBcargo\fR(1) diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-version.1 b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-version.1 new file mode 100644 index 0000000000000000000000000000000000000000..6f1f46303ed427f8a6d62681e7e75d38dd118c41 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-version.1 @@ -0,0 +1,52 @@ +'\" t +.TH "CARGO\-VERSION" "1" +.nh +.ad l +.ss \n[.ss] 0 +.SH "NAME" +cargo\-version \[em] Show version information +.SH "SYNOPSIS" +\fBcargo version\fR [\fIoptions\fR] +.SH "DESCRIPTION" +Displays the version of Cargo. +.SH "OPTIONS" +.sp +\fB\-v\fR, +\fB\-\-verbose\fR +.RS 4 +Display additional version information. +.RE +.SH "EXAMPLES" +.sp +.RS 4 +\h'-04' 1.\h'+01'Display the version: +.sp +.RS 4 +.nf +cargo version +.fi +.RE +.RE +.sp +.RS 4 +\h'-04' 2.\h'+01'The version is also available via flags: +.sp +.RS 4 +.nf +cargo \-\-version +cargo \-V +.fi +.RE +.RE +.sp +.RS 4 +\h'-04' 3.\h'+01'Display extra version information: +.sp +.RS 4 +.nf +cargo \-Vv +.fi +.RE +.RE +.SH "SEE ALSO" +\fBcargo\fR(1) diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-yank.1 b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-yank.1 new file mode 100644 index 0000000000000000000000000000000000000000..a5b2d7dd5f1c952eb979ab00fd2ee1a1061820ac --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo-yank.1 @@ -0,0 +1,249 @@ +'\" t +.TH "CARGO\-YANK" "1" +.nh +.ad l +.ss \n[.ss] 0 +.SH "NAME" +cargo\-yank \[em] Remove a pushed crate from the index +.SH "SYNOPSIS" +\fBcargo yank\fR [\fIoptions\fR] \fIcrate\fR@\fIversion\fR +.br +\fBcargo yank\fR [\fIoptions\fR] \fB\-\-version\fR \fIversion\fR [\fIcrate\fR] +.SH "DESCRIPTION" +The yank command removes a previously published crate\[cq]s version from the +server\[cq]s index. This command does not delete any data, and the crate will +still be available for download via the registry\[cq]s download link. +.sp +Cargo will not use a yanked version for any new project or checkout without a +pre\-existing lockfile, and will generate an error if there are no longer +any compatible versions for your crate. +.sp +This command requires you to be authenticated with either the \fB\-\-token\fR option +or using \fBcargo\-login\fR(1). +.sp +If the crate name is not specified, it will use the package name from the +current directory. +.SS "How yank works" +For example, the \fBfoo\fR crate published version \fB1.5.0\fR and another crate \fBbar\fR +declared a dependency on version \fBfoo = "1.5"\fR\&. Now \fBfoo\fR releases a new, but +not semver compatible, version \fB2.0.0\fR, and finds a critical issue with \fB1.5.0\fR\&. +If \fB1.5.0\fR is yanked, no new project or checkout without an existing lockfile +will be able to use crate \fBbar\fR as it relies on \fB1.5\fR\&. +.sp +In this case, the maintainers of \fBfoo\fR should first publish a semver compatible +version such as \fB1.5.1\fR prior to yanking \fB1.5.0\fR so that \fBbar\fR and all projects +that depend on \fBbar\fR will continue to work. +.sp +As another example, consider a crate \fBbar\fR with published versions \fB1.5.0\fR, +\fB1.5.1\fR, \fB1.5.2\fR, \fB2.0.0\fR and \fB3.0.0\fR\&. The following table identifies the +versions cargo could use in the absence of a lockfile for different SemVer +requirements, following a given release being yanked: + +.TS +allbox tab(:); +lt lt lt lt. +T{ +Yanked Version / SemVer requirement +T}:T{ +\fBbar = "1.5.0"\fR +T}:T{ +\fBbar = "=1.5.0"\fR +T}:T{ +\fBbar = "2.0.0"\fR +T} +T{ +\fB1.5.0\fR +T}:T{ +Use either \fB1.5.1\fR or \fB1.5.2\fR +T}:T{ +\fBReturn Error\fR +T}:T{ +Use \fB2.0.0\fR +T} +T{ +\fB1.5.1\fR +T}:T{ +Use either \fB1.5.0\fR or \fB1.5.2\fR +T}:T{ +Use \fB1.5.0\fR +T}:T{ +Use \fB2.0.0\fR +T} +T{ +\fB2.0.0\fR +T}:T{ +Use either \fB1.5.0\fR, \fB1.5.1\fR or \fB1.5.2\fR +T}:T{ +Use \fB1.5.0\fR +T}:T{ +\fBReturn Error\fR +T} +.TE +.sp +.SS "When to yank" +Crates should only be yanked in exceptional circumstances, for example, an +accidental publish, unintentional SemVer breakages, or a significantly +broken and unusable crate. In the case of security vulnerabilities, \fIRustSec\fR +is typically a less disruptive mechanism to inform users and encourage them +to upgrade, and avoids the possibility of significant downstream disruption +irrespective of susceptibility to the vulnerability in question. +.sp +A common workflow is to yank a crate having already published a semver +compatible version, to reduce the probability of preventing dependent +crates from compiling. +.sp +When addressing copyright, licensing, or personal data issues with a published +crate, simply yanking it may not suffice. In such cases, contact the maintainers +of the registry you used. For crates.io, refer to their \fIpolicies\fR and contact +them at \&. +.sp +If credentials have been leaked, the recommended course of action is to revoke +them immediately. Once a crate has been published, it is impossible to determine +if the leaked credentials have been copied. Yanking only prevents Cargo from +selecting this version when resolving dependencies by default. Existing lock +files or direct downloads are not affected, so yanking cannot stop further +spreading of the leaked credentials. +.SH "OPTIONS" +.SS "Yank Options" +.sp +\fB\-\-vers\fR \fIversion\fR, +\fB\-\-version\fR \fIversion\fR +.RS 4 +The version to yank or un\-yank. +.RE +.sp +\fB\-\-undo\fR +.RS 4 +Undo a yank, putting a version back into the index. +.RE +.sp +\fB\-\-token\fR \fItoken\fR +.RS 4 +API token to use when authenticating. This overrides the token stored in +the credentials file (which is created by \fBcargo\-login\fR(1)). +.sp +\fICargo config\fR environment variables can be +used to override the tokens stored in the credentials file. The token for +crates.io may be specified with the \fBCARGO_REGISTRY_TOKEN\fR environment +variable. Tokens for other registries may be specified with environment +variables of the form \fBCARGO_REGISTRIES_NAME_TOKEN\fR where \fBNAME\fR is the name +of the registry in all capital letters. +.RE +.sp +\fB\-\-index\fR \fIindex\fR +.RS 4 +The URL of the registry index to use. +.RE +.sp +\fB\-\-registry\fR \fIregistry\fR +.RS 4 +Name of the registry to use. Registry names are defined in \fICargo config +files\fR \&. If not specified, the default registry is used, +which is defined by the \fBregistry.default\fR config key which defaults to +\fBcrates\-io\fR\&. +.RE +.SS "Display Options" +.sp +\fB\-v\fR, +\fB\-\-verbose\fR +.RS 4 +Use verbose output. May be specified twice for \[lq]very verbose\[rq] output which +includes extra output such as dependency warnings and build script output. +May also be specified with the \fBterm.verbose\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-q\fR, +\fB\-\-quiet\fR +.RS 4 +Do not print cargo log messages. +May also be specified with the \fBterm.quiet\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-\-color\fR \fIwhen\fR +.RS 4 +Control when colored output is used. Valid values: +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBauto\fR (default): Automatically detect if color support is available on the +terminal. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBalways\fR: Always display colors. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBnever\fR: Never display colors. +.RE +.sp +May also be specified with the \fBterm.color\fR +\fIconfig value\fR \&. +.RE +.SS "Common Options" +.sp +\fB+\fR\fItoolchain\fR +.RS 4 +If Cargo has been installed with rustup, and the first argument to \fBcargo\fR +begins with \fB+\fR, it will be interpreted as a rustup toolchain name (such +as \fB+stable\fR or \fB+nightly\fR). +See the \fIrustup documentation\fR +for more information about how toolchain overrides work. +.RE +.sp +\fB\-\-config\fR \fIKEY=VALUE\fR or \fIPATH\fR +.RS 4 +Overrides a Cargo configuration value. The argument should be in TOML syntax of \fBKEY=VALUE\fR, +or provided as a path to an extra configuration file. This flag may be specified multiple times. +See the \fIcommand\-line overrides section\fR for more information. +.RE +.sp +\fB\-C\fR \fIPATH\fR +.RS 4 +Changes the current working directory before executing any specified operations. This affects +things like where cargo looks by default for the project manifest (\fBCargo.toml\fR), as well as +the directories searched for discovering \fB\&.cargo/config.toml\fR, for example. This option must +appear before the command name, for example \fBcargo \-C path/to/my\-project build\fR\&. +.sp +This option is only available on the \fInightly +channel\fR and +requires the \fB\-Z unstable\-options\fR flag to enable (see +\fI#10098\fR ). +.RE +.sp +\fB\-h\fR, +\fB\-\-help\fR +.RS 4 +Prints help information. +.RE +.sp +\fB\-Z\fR \fIflag\fR +.RS 4 +Unstable (nightly\-only) flags to Cargo. Run \fBcargo \-Z help\fR for details. +.RE +.SH "ENVIRONMENT" +See \fIthe reference\fR for +details on environment variables that Cargo reads. +.SH "EXIT STATUS" +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB0\fR: Cargo succeeded. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB101\fR: Cargo failed to complete. +.RE +.SH "EXAMPLES" +.sp +.RS 4 +\h'-04' 1.\h'+01'Yank a crate from the index: +.sp +.RS 4 +.nf +cargo yank foo@1.0.7 +.fi +.RE +.RE +.SH "SEE ALSO" +\fBcargo\fR(1), \fBcargo\-login\fR(1), \fBcargo\-publish\fR(1) diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo.1 b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo.1 new file mode 100644 index 0000000000000000000000000000000000000000..2fe52e19ae8017272fac4358d985494f5fc7521d --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/cargo.1 @@ -0,0 +1,436 @@ +'\" t +.TH "CARGO" "1" +.nh +.ad l +.ss \n[.ss] 0 +.SH "NAME" +cargo \[em] The Rust package manager +.SH "SYNOPSIS" +\fBcargo\fR [\fIoptions\fR] \fIcommand\fR [\fIargs\fR] +.br +\fBcargo\fR [\fIoptions\fR] \fB\-\-version\fR +.br +\fBcargo\fR [\fIoptions\fR] \fB\-\-list\fR +.br +\fBcargo\fR [\fIoptions\fR] \fB\-\-help\fR +.br +\fBcargo\fR [\fIoptions\fR] \fB\-\-explain\fR \fIcode\fR +.SH "DESCRIPTION" +This program is a package manager and build tool for the Rust language, +available at \&. +.sp +\fIcommand\fR may be one of: +.sp +.RS 4 +\h'-04'\(bu\h'+03'built\-in commands, see below +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fIaliases\fR +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fIexternal tools\fR +.RE +.SH "COMMANDS" +.SS "Build Commands" +\fBcargo\-bench\fR(1) +.br +\ \ \ \ Execute benchmarks of a package. +.sp +\fBcargo\-build\fR(1) +.br +\ \ \ \ Compile a package. +.sp +\fBcargo\-check\fR(1) +.br +\ \ \ \ Check a local package and all of its dependencies for errors. +.sp +\fBcargo\-clean\fR(1) +.br +\ \ \ \ Remove artifacts that Cargo has generated in the past. +.sp +\fBcargo\-doc\fR(1) +.br +\ \ \ \ Build a package\[cq]s documentation. +.sp +\fBcargo\-fetch\fR(1) +.br +\ \ \ \ Fetch dependencies of a package from the network. +.sp +\fBcargo\-fix\fR(1) +.br +\ \ \ \ Automatically fix lint warnings reported by rustc. +.sp +\fBcargo\-run\fR(1) +.br +\ \ \ \ Run a binary or example of the local package. +.sp +\fBcargo\-rustc\fR(1) +.br +\ \ \ \ Compile a package, and pass extra options to the compiler. +.sp +\fBcargo\-rustdoc\fR(1) +.br +\ \ \ \ Build a package\[cq]s documentation, using specified custom flags. +.sp +\fBcargo\-test\fR(1) +.br +\ \ \ \ Execute unit and integration tests of a package. +.SS "Manifest Commands" +\fBcargo\-add\fR(1) +.br +\ \ \ \ Add dependencies to a \fBCargo.toml\fR manifest file. +.sp +\fBcargo\-generate\-lockfile\fR(1) +.br +\ \ \ \ Generate \fBCargo.lock\fR for a project. +.sp +\fBcargo\-info\fR(1) +.br +\ \ \ \ Display information about a package in the registry. Default registry is crates.io. +.sp +\fBcargo\-locate\-project\fR(1) +.br +\ \ \ \ Print a JSON representation of a \fBCargo.toml\fR file\[cq]s location. +.sp +\fBcargo\-metadata\fR(1) +.br +\ \ \ \ Output the resolved dependencies of a package in machine\-readable format. +.sp +\fBcargo\-pkgid\fR(1) +.br +\ \ \ \ Print a fully qualified package specification. +.sp +\fBcargo\-remove\fR(1) +.br +\ \ \ \ Remove dependencies from a \fBCargo.toml\fR manifest file. +.sp +\fBcargo\-tree\fR(1) +.br +\ \ \ \ Display a tree visualization of a dependency graph. +.sp +\fBcargo\-update\fR(1) +.br +\ \ \ \ Update dependencies as recorded in the local lock file. +.sp +\fBcargo\-vendor\fR(1) +.br +\ \ \ \ Vendor all dependencies locally. +.SS "Package Commands" +\fBcargo\-init\fR(1) +.br +\ \ \ \ Create a new Cargo package in an existing directory. +.sp +\fBcargo\-install\fR(1) +.br +\ \ \ \ Build and install a Rust binary. +.sp +\fBcargo\-new\fR(1) +.br +\ \ \ \ Create a new Cargo package. +.sp +\fBcargo\-search\fR(1) +.br +\ \ \ \ Search packages in crates.io. +.sp +\fBcargo\-uninstall\fR(1) +.br +\ \ \ \ Remove a Rust binary. +.SS "Publishing Commands" +\fBcargo\-login\fR(1) +.br +\ \ \ \ Save an API token from the registry locally. +.sp +\fBcargo\-logout\fR(1) +.br +\ \ \ \ Remove an API token from the registry locally. +.sp +\fBcargo\-owner\fR(1) +.br +\ \ \ \ Manage the owners of a crate on the registry. +.sp +\fBcargo\-package\fR(1) +.br +\ \ \ \ Assemble the local package into a distributable tarball. +.sp +\fBcargo\-publish\fR(1) +.br +\ \ \ \ Upload a package to the registry. +.sp +\fBcargo\-yank\fR(1) +.br +\ \ \ \ Remove a pushed crate from the index. +.SS "Report Commands" +\fBcargo\-report\fR(1) +.br +\ \ \ \ Generate and display various kinds of reports. +.sp +\fBcargo\-report\-future\-incompatibilities\fR(1) +.br +\ \ \ \ Reports any crates which will eventually stop compiling. +.SS "General Commands" +\fBcargo\-help\fR(1) +.br +\ \ \ \ Display help information about Cargo. +.sp +\fBcargo\-version\fR(1) +.br +\ \ \ \ Show version information. +.SH "OPTIONS" +.SS "Special Options" +.sp +\fB\-V\fR, +\fB\-\-version\fR +.RS 4 +Print version info and exit. If used with \fB\-\-verbose\fR, prints extra +information. +.RE +.sp +\fB\-\-list\fR +.RS 4 +List all installed Cargo subcommands. If used with \fB\-\-verbose\fR, prints extra +information. +.RE +.sp +\fB\-\-explain\fR \fIcode\fR +.RS 4 +Run \fBrustc \-\-explain CODE\fR which will print out a detailed explanation of an +error message (for example, \fBE0004\fR). +.RE +.SS "Display Options" +.sp +\fB\-v\fR, +\fB\-\-verbose\fR +.RS 4 +Use verbose output. May be specified twice for \[lq]very verbose\[rq] output which +includes extra output such as dependency warnings and build script output. +May also be specified with the \fBterm.verbose\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-q\fR, +\fB\-\-quiet\fR +.RS 4 +Do not print cargo log messages. +May also be specified with the \fBterm.quiet\fR +\fIconfig value\fR \&. +.RE +.sp +\fB\-\-color\fR \fIwhen\fR +.RS 4 +Control when colored output is used. Valid values: +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBauto\fR (default): Automatically detect if color support is available on the +terminal. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBalways\fR: Always display colors. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fBnever\fR: Never display colors. +.RE +.sp +May also be specified with the \fBterm.color\fR +\fIconfig value\fR \&. +.RE +.SS "Manifest Options" +.sp +\fB\-\-locked\fR +.RS 4 +Asserts that the exact same dependencies and versions are used as when the +existing \fBCargo.lock\fR file was originally generated. Cargo will exit with an +error when either of the following scenarios arises: +.sp +.RS 4 +\h'-04'\(bu\h'+03'The lock file is missing. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'Cargo attempted to change the lock file due to a different dependency resolution. +.RE +.sp +It may be used in environments where deterministic builds are desired, +such as in CI pipelines. +.RE +.sp +\fB\-\-offline\fR +.RS 4 +Prevents Cargo from accessing the network for any reason. Without this +flag, Cargo will stop with an error if it needs to access the network and +the network is not available. With this flag, Cargo will attempt to +proceed without the network if possible. +.sp +Beware that this may result in different dependency resolution than online +mode. Cargo will restrict itself to crates that are downloaded locally, even +if there might be a newer version as indicated in the local copy of the index. +See the \fBcargo\-fetch\fR(1) command to download dependencies before going +offline. +.sp +May also be specified with the \fBnet.offline\fR \fIconfig value\fR \&. +.RE +.sp +\fB\-\-frozen\fR +.RS 4 +Equivalent to specifying both \fB\-\-locked\fR and \fB\-\-offline\fR\&. +.RE +.SS "Common Options" +.sp +\fB+\fR\fItoolchain\fR +.RS 4 +If Cargo has been installed with rustup, and the first argument to \fBcargo\fR +begins with \fB+\fR, it will be interpreted as a rustup toolchain name (such +as \fB+stable\fR or \fB+nightly\fR). +See the \fIrustup documentation\fR +for more information about how toolchain overrides work. +.RE +.sp +\fB\-\-config\fR \fIKEY=VALUE\fR or \fIPATH\fR +.RS 4 +Overrides a Cargo configuration value. The argument should be in TOML syntax of \fBKEY=VALUE\fR, +or provided as a path to an extra configuration file. This flag may be specified multiple times. +See the \fIcommand\-line overrides section\fR for more information. +.RE +.sp +\fB\-C\fR \fIPATH\fR +.RS 4 +Changes the current working directory before executing any specified operations. This affects +things like where cargo looks by default for the project manifest (\fBCargo.toml\fR), as well as +the directories searched for discovering \fB\&.cargo/config.toml\fR, for example. This option must +appear before the command name, for example \fBcargo \-C path/to/my\-project build\fR\&. +.sp +This option is only available on the \fInightly +channel\fR and +requires the \fB\-Z unstable\-options\fR flag to enable (see +\fI#10098\fR ). +.RE +.sp +\fB\-h\fR, +\fB\-\-help\fR +.RS 4 +Prints help information. +.RE +.sp +\fB\-Z\fR \fIflag\fR +.RS 4 +Unstable (nightly\-only) flags to Cargo. Run \fBcargo \-Z help\fR for details. +.RE +.SH "ENVIRONMENT" +See \fIthe reference\fR for +details on environment variables that Cargo reads. +.SH "EXIT STATUS" +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB0\fR: Cargo succeeded. +.RE +.sp +.RS 4 +\h'-04'\(bu\h'+03'\fB101\fR: Cargo failed to complete. +.RE +.SH "FILES" +\fB~/.cargo/\fR +.br +\ \ \ \ Default location for Cargo\[cq]s \[lq]home\[rq] directory where it +stores various files. The location can be changed with the \fBCARGO_HOME\fR +environment variable. +.sp +\fB$CARGO_HOME/bin/\fR +.br +\ \ \ \ Binaries installed by \fBcargo\-install\fR(1) will be located here. If using +\fIrustup\fR , executables distributed with Rust are also located here. +.sp +\fB$CARGO_HOME/config.toml\fR +.br +\ \ \ \ The global configuration file. See \fIthe reference\fR +for more information about configuration files. +.sp +\fB\&.cargo/config.toml\fR +.br +\ \ \ \ Cargo automatically searches for a file named \fB\&.cargo/config.toml\fR in the +current directory, and all parent directories. These configuration files +will be merged with the global configuration file. +.sp +\fB$CARGO_HOME/credentials.toml\fR +.br +\ \ \ \ Private authentication information for logging in to a registry. +.sp +\fB$CARGO_HOME/registry/\fR +.br +\ \ \ \ This directory contains cached downloads of the registry index and any +downloaded dependencies. +.sp +\fB$CARGO_HOME/git/\fR +.br +\ \ \ \ This directory contains cached downloads of git dependencies. +.sp +Please note that the internal structure of the \fB$CARGO_HOME\fR directory is not +stable yet and may be subject to change. +.SH "EXAMPLES" +.sp +.RS 4 +\h'-04' 1.\h'+01'Build a local package and all of its dependencies: +.sp +.RS 4 +.nf +cargo build +.fi +.RE +.RE +.sp +.RS 4 +\h'-04' 2.\h'+01'Build a package with optimizations: +.sp +.RS 4 +.nf +cargo build \-\-release +.fi +.RE +.RE +.sp +.RS 4 +\h'-04' 3.\h'+01'Run tests for a cross\-compiled target: +.sp +.RS 4 +.nf +cargo test \-\-target i686\-unknown\-linux\-gnu +.fi +.RE +.RE +.sp +.RS 4 +\h'-04' 4.\h'+01'Create a new package that builds an executable: +.sp +.RS 4 +.nf +cargo new foobar +.fi +.RE +.RE +.sp +.RS 4 +\h'-04' 5.\h'+01'Create a package in the current directory: +.sp +.RS 4 +.nf +mkdir foo && cd foo +cargo init . +.fi +.RE +.RE +.sp +.RS 4 +\h'-04' 6.\h'+01'Learn about a command\[cq]s options and usage: +.sp +.RS 4 +.nf +cargo help clean +.fi +.RE +.RE +.SH "BUGS" +See for issues. +.SH "SEE ALSO" +\fBrustc\fR(1), \fBrustdoc\fR(1) diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/rustc.1 b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/rustc.1 new file mode 100644 index 0000000000000000000000000000000000000000..2a91774d671aca449e7be3d02ac1889a78eb22b5 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/rustc.1 @@ -0,0 +1,314 @@ +.TH RUSTC "1" "April 2019" "rustc " "User Commands" +.SH NAME +rustc \- The Rust compiler +.SH SYNOPSIS +.B rustc +[\fIOPTIONS\fR] \fIINPUT\fR + +.SH DESCRIPTION +This program is a compiler for the Rust language, available at https://www.rust\-lang.org. + +.SH OPTIONS + +.TP +\fB\-h\fR, \fB\-\-help\fR +Display the help message. +.TP +\fB\-\-cfg\fR \fISPEC\fR +Configure the compilation environment. +.TP +\fB\-L\fR [\fIKIND\fR=]\fIPATH\fR +Add a directory to the library search path. +The optional \fIKIND\fR can be one of: +.RS +.TP +\fBdependency\fR +only lookup transitive dependencies here +.TP +.B crate +only lookup local `extern crate` directives here +.TP +.B native +only lookup native libraries here +.TP +.B framework +only look for OSX frameworks here +.TP +.B all +look for anything here (the default) +.RE +.TP +\fB\-l\fR [\fIKIND\fR=]\fINAME\fR +Link the generated crate(s) to the specified library \fINAME\fR. +The optional \fIKIND\fR can be one of \fIstatic\fR, \fIdylib\fR, or +\fIframework\fR. +If omitted, \fIdylib\fR is assumed. +.TP +\fB\-\-crate\-type\fR [bin|lib|rlib|dylib|cdylib|staticlib|proc\-macro] +Comma separated list of types of crates for the compiler to emit. +.TP +\fB\-\-crate\-name\fR \fINAME\fR +Specify the name of the crate being built. +.TP +\fB\-\-emit\fR [asm|llvm\-bc|llvm\-ir|obj|metadata|link|dep\-info|mir][=\fIPATH\fR] +Configure the output that \fBrustc\fR will produce. Each emission may also have +an optional explicit output \fIPATH\fR specified for that particular emission +kind. This path takes precedence over the \fB-o\fR option. +.TP +\fB\-\-print\fR [crate\-name|\:file\-names|\:sysroot|\:target\-libdir|\:cfg|\:target\-list|\:target\-cpus|\:target\-features|\:relocation\-models|\:code\-models|\:tls\-models|\:target\-spec\-json|\:native\-static\-libs|\:stack\-protector\-strategies|\:link\-args] +Comma separated list of compiler information to print on stdout. +.TP +\fB\-g\fR +Equivalent to \fI\-C\ debuginfo=2\fR. +.TP +\fB\-O\fR +Equivalent to \fI\-C\ opt\-level=2\fR. +.TP +\fB\-o\fR \fIFILENAME\fR +Write output to \fIFILENAME\fR. Ignored if multiple \fI\-\-emit\fR outputs are specified which +don't have an explicit path otherwise. +.TP +\fB\-\-out\-dir\fR \fIDIR\fR +Write output to compiler\[hy]chosen filename in \fIDIR\fR. Ignored if \fI\-o\fR is specified. +Defaults to the current directory. +.TP +\fB\-\-explain\fR \fIOPT\fR +Provide a detailed explanation of an error message. +.TP +\fB\-\-test\fR +Build a test harness. +.TP +\fB\-\-target\fR \fITARGET\fR +Target tuple for which the code is compiled. This option defaults to the host’s target +tuple. The target tuple has the general format \-\-\-, where: +.RS +.TP +.B +x86, arm, thumb, mips, etc. +.TP +.B +for example on ARM: v5, v6m, v7a, v7m, etc. +.TP +.B +pc, apple, nvidia, ibm, etc. +.TP +.B +none, linux, win32, darwin, cuda, etc. +.TP +.B +eabi, gnu, android, macho, elf, etc. +.RE +.TP +\fB\-W help\fR +Print 'lint' options and default settings. +.TP +\fB\-W\fR \fIOPT\fR, \fB\-\-warn\fR \fIOPT\fR +Set lint warnings. +.TP +\fB\-A\fR \fIOPT\fR, \fB\-\-allow\fR \fIOPT\fR +Set lint allowed. +.TP +\fB\-D\fR \fIOPT\fR, \fB\-\-deny\fR \fIOPT\fR +Set lint denied. +.TP +\fB\-F\fR \fIOPT\fR, \fB\-\-forbid\fR \fIOPT\fR +Set lint forbidden. +.TP +\fB\-C\fR \fIFLAG\fR[=\fIVAL\fR], \fB\-\-codegen\fR \fIFLAG\fR[=\fIVAL\fR] +Set a codegen\[hy]related flag to the value specified. +Use \fI\-C help\fR to print available flags. +See CODEGEN OPTIONS below. +.TP +\fB\-V\fR, \fB\-\-version\fR +Print version info and exit. +.TP +\fB\-v\fR, \fB\-\-verbose\fR +Use verbose output. +.TP +\fB\-\-remap\-path\-prefix\fR \fIfrom\fR=\fIto\fR +Remap source path prefixes in all output, including compiler diagnostics, debug information, +macro expansions, etc. The \fIfrom\fR=\fIto\fR parameter is scanned from right to left, so \fIfrom\fR +may contain '=', but \fIto\fR may not. + +This is useful for normalizing build products, for example by removing the current directory out of +pathnames emitted into the object files. The replacement is purely textual, with no consideration of +the current system's pathname syntax. For example \fI\-\-remap\-path\-prefix foo=bar\fR will +match \fBfoo/lib.rs\fR but not \fB./foo/lib.rs\fR. +.TP +\fB\-\-extern\fR \fINAME\fR=\fIPATH\fR +Specify where an external rust library is located. These should match +\fIextern\fR declarations in the crate's source code. +.TP +\fB\-\-sysroot\fR \fIPATH\fR +Override the system root. +.TP +\fB\-Z\fR \fIFLAG\fR +Set unstable / perma-unstable options. +Use \fI\-Z help\fR to print available options. +.TP +\fB\-\-color\fR auto|always|never +Configure coloring of output: +.RS +.TP +.B auto +colorize, if output goes to a tty (default); +.TP +.B always +always colorize output; +.TP +.B never +never colorize output. +.RE + +.SH CODEGEN OPTIONS + +.TP +\fBlinker\fR=\fI/path/to/cc\fR +Path to the linker utility to use when linking libraries, executables, and +objects. +.TP +\fBlink\-args\fR='\fI\-flag1 \-flag2\fR' +A space\[hy]separated list of extra arguments to pass to the linker when the linker +is invoked. +.TP +\fBlto\fR +Perform LLVM link\[hy]time optimizations. +.TP +\fBtarget\-cpu\fR=\fIhelp\fR +Selects a target processor. +If the value is 'help', then a list of available CPUs is printed. +.TP +\fBtarget\-feature\fR='\fI+feature1\fR,\fI\-feature2\fR' +A comma\[hy]separated list of features to enable or disable for the target. +A preceding '+' enables a feature while a preceding '\-' disables it. +Available features can be discovered through \fIllc -mcpu=help\fR. +.TP +\fBpasses\fR=\fIval\fR +A space\[hy]separated list of extra LLVM passes to run. +A value of 'list' will cause \fBrustc\fR to print all known passes and +exit. +The passes specified are appended at the end of the normal pass manager. +.TP +\fBllvm\-args\fR='\fI\-arg1\fR \fI\-arg2\fR' +A space\[hy]separated list of arguments to pass through to LLVM. +.TP +\fBsave\-temps\fR +If specified, the compiler will save more files (.bc, .o, .no\-opt.bc) generated +throughout compilation in the output directory. +.TP +\fBrpath\fR +If specified, then the rpath value for dynamic libraries will be set in +either dynamic library or executable outputs. +.TP +\fBno\-prepopulate\-passes\fR +Suppresses pre\[hy]population of the LLVM pass manager that is run over the module. +.TP +\fBno\-vectorize\-loops\fR +Suppresses running the loop vectorization LLVM pass, regardless of optimization +level. +.TP +\fBno\-vectorize\-slp\fR +Suppresses running the LLVM SLP vectorization pass, regardless of optimization +level. +.TP +\fBsoft\-float\fR +Generates software floating point library calls instead of hardware +instructions. +.TP +\fBprefer\-dynamic\fR +Prefers dynamic linking to static linking. +.TP +\fBno\-integrated\-as\fR +Force usage of an external assembler rather than LLVM's integrated one. +.TP +\fBno\-redzone\fR +Disable the use of the redzone. +.TP +\fBrelocation\-model\fR=[pic,static,dynamic\-no\-pic] +The relocation model to use. +(Default: \fIpic\fR) +.TP +\fBcode\-model\fR=[small,kernel,medium,large] +Choose the code model to use. +.TP +\fBmetadata\fR=\fIval\fR +Metadata to mangle symbol names with. +.TP +\fBextra\-filename\fR=\fIval\fR +Extra data to put in each output filename. +.TP +\fBcodegen\-units\fR=\fIn\fR +Divide crate into \fIn\fR units to optimize in parallel. +.TP +\fBremark\fR=\fIval\fR +Print remarks for these optimization passes (space separated, or "all"). +.TP +\fBno\-stack\-check\fR +Disable checks for stack exhaustion (a memory\[hy]safety hazard!). +.TP +\fBdebuginfo\fR=\fIval\fR +Debug info emission level: +.RS +.TP +.B 0 +no debug info; +.TP +.B 1 +line\[hy]tables only (for stacktraces and breakpoints); +.TP +.B 2 +full debug info with variable and type information. +.RE +.TP +\fBopt\-level\fR=\fIVAL\fR +Optimize with possible levels 0\[en]3, s (optimize for size), or z (for minimal size) + +.SH ENVIRONMENT + +Some of these affect only test harness programs (generated via rustc --test); +others affect all programs which link to the Rust standard library. + +.TP +\fBRUST_TEST_THREADS\fR +The test framework Rust provides executes tests in parallel. This variable sets +the maximum number of threads used for this purpose. This setting is overridden +by the --test-threads option. + +.TP +\fBRUST_TEST_NOCAPTURE\fR +If set to a value other than "0", a synonym for the --nocapture flag. + +.TP +\fBRUST_MIN_STACK\fR +Sets the minimum stack size for new threads. + +.TP +\fBRUST_BACKTRACE\fR +If set to a value different than "0", produces a backtrace in the output of a program which panics. + +.SH "EXAMPLES" +To build an executable from a source file with a main function: + $ rustc \-o hello hello.rs + +To build a library from a source file: + $ rustc \-\-crate\-type=lib hello\-lib.rs + +To build either with a crate (.rs) file: + $ rustc hello.rs + +To build an executable with debug info: + $ rustc \-g \-o hello hello.rs + +.SH "SEE ALSO" + +.BR rustdoc (1) + +.SH "BUGS" +See https://github.com/rust\-lang/rust/issues for issues. + +.SH "AUTHOR" +See https://github.com/rust\-lang/rust/graphs/contributors or use `git log --all --format='%cN <%cE>' | sort -u` in the rust source distribution. + +.SH "COPYRIGHT" +This work is dual\[hy]licensed under Apache\ 2.0 and MIT terms. +See \fICOPYRIGHT\fR file in the rust source distribution. diff --git a/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/rustdoc.1 b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/rustdoc.1 new file mode 100644 index 0000000000000000000000000000000000000000..e6185347972827c90427f88d8460a4e0e20416b8 --- /dev/null +++ b/rust/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/man/man1/rustdoc.1 @@ -0,0 +1,126 @@ +.TH RUSTDOC "1" "July 2018" "rustdoc " "User Commands" +.SH NAME +rustdoc \- generate documentation from Rust source code +.SH SYNOPSIS +.B rustdoc +[\fIOPTIONS\fR] \fIINPUT\fR + +.SH DESCRIPTION +This tool generates API reference documentation by extracting comments from +source code written in the Rust language, available at +<\fBhttps://www.rust-lang.org\fR>. It accepts several input formats and +provides several output formats for the generated documentation. + +.SH OPTIONS + +.TP +\fB\-r\fR, \fB\-\-input\-format\fR \fIFORMAT\fR +rust +.TP +\fB\-w\fR, \fB\-\-output\-format\fR \fIFORMAT\fR +html +.TP +\fB\-o\fR, \fB\-\-output\fR \fIOUTPUT\fR, +where to place the output (default: \fIdoc/\fR for html) +.TP +\fB\-\-passes\fR \fILIST\fR +space\[hy]separated list of passes to run (default: '') +.TP +\fB\-\-no\-defaults\fR +don't run the default passes +.TP +\fB\-\-plugins\fR \fILIST\fR +space-separated list of plugins to run (default: '') +.TP +\fB\-\-plugin\-path\fR \fIDIR\fR +directory to load plugins from (default: \fI/tmp/rustdoc_ng/plugins\fR) +.TP +\fB\-\-target\fR \fITRIPLE\fR +target triple to document +.TP +\fB\-\-crate\-name\fR \fINAME\fR +specify the name of this crate +.TP +\fB\-L\fR, \fB\-\-library\-path\fR \fIDIR\fR +directory to add to crate search path +.TP +\fB\-\-cfg\fR \fISPEC\fR +pass a \fI\-\-cfg\fR to rustc +.TP +\fB\-\-extern\fR \fIVAL\fR +pass an \fI\-\-extern\fR to rustc +.TP +\fB\-\-test\fR +run code examples as tests +.TP +\fB\-\-test\-args\fR \fIARGS\fR +pass arguments to the test runner +.TP +\fB\-\-html\-in\-header\fR \fIFILE\fR +file to add to +.TP +\fB\-\-html\-before\-content\fR \fIFILES\fR +files to include inline between and the content of a rendered Markdown +file or generated documentation +.TP +\fB\-\-markdown\-before\-content\fR \fIFILES\fR +files to include inline between and the content of a rendered +Markdown file or generated documentation +.TP +\fB\-\-html\-after\-content\fR \fIFILES\fR +files to include inline between the content and of a rendered +Markdown file or generated documentation +.TP +\fB\-\-markdown\-after\-content\fR \fIFILES\fR +files to include inline between the content and of a rendered +Markdown file or generated documentation +.TP +\fB\-\-markdown\-css\fR \fIFILES\fR +CSS files to include via in a rendered Markdown file Markdown file or +generated documentation +.TP +\fB\-\-markdown\-playground\-url\fR \fIURL\fR +URL to send code snippets to +.TP +\fB\-\-markdown\-no\-toc\fR +don't include table of contents +.TP +\fB\-h\fR, \fB\-\-extend\-css\fR +to redefine some css rules with a given file to generate doc with your own theme +.TP +\fB\-V\fR, \fB\-\-version\fR +Print rustdoc's version + +.SH "OUTPUT FORMATS" + +The rustdoc tool can generate output in an HTML format. + +If using an HTML format, then the specified output destination will be the root +directory of an HTML structure for all the documentation. +Pages will be placed into this directory, and source files will also +possibly be rendered into it as well. + +.SH "EXAMPLES" + +To generate documentation for the source in the current directory: + $ rustdoc hello.rs + +List all available passes that rustdoc has, along with default passes: + $ rustdoc \-\-passes list + +The generated HTML can be viewed with any standard web browser. + +.SH "SEE ALSO" + +.BR rustc (1) + +.SH "BUGS" +See <\fBhttps://github.com/rust\-lang/rust/issues\fR> +for issues. + +.SH "AUTHOR" +See the version control history or <\fBhttps://thanks.rust\-lang.org\fR> + +.SH "COPYRIGHT" +This work is dual\[hy]licensed under Apache\ 2.0 and MIT terms. +See \fICOPYRIGHT\fR file in the rust source distribution.