addr2line • 0.20.0 A cross-platform symbolication library written in Rust, using `gimli` INDIRECT 1 1681614353 anes • 0.1.6 ANSI Escape Sequences provider & parser INDIRECT 0 1575043666 anstyle • 1.0.11 ANSI text styling INDIRECT 0 1749062311 autocfg • 1.5.0 Automatic cfg for Rust compiler features INDIRECT 0 1750198588 backtrace • 0.3.68 A library to acquire a stack trace (backtrace) at runtime in a Rust program.
INDIRECT 12 1688077502 bitflags • 2.9.4 A macro to generate structures which behave like bitflags.
INDIRECT 0 1756793523 cast • 0.3.0 Ergonomic, checked cast functions for primitive types INDIRECT 0 1630753653 cc • 1.2.37 A build-time dependency for Cargo build scripts to assist in invoking the native
C compiler to compile native C code into a static archive to be linked into Rust
code.
INDIRECT 2 1757667568 cfg-if • 1.0.3 A macro to ergonomically define an item depending on a large number of #[cfg]
parameters. Structured like an if-else chain, the first matching branch is the
item that gets emitted.
INDIRECT 0 1755632001 clap_builder • 4.5.47 A simple to use, efficient, and full-featured Command Line Argument Parser INDIRECT 2 1756832597 clap_lex • 0.7.5 Minimal, flexible command line parser INDIRECT 0 1749492576 clap • 4.5.47 A simple to use, efficient, and full-featured Command Line Argument Parser INDIRECT 3 1756832610 criterion-plot • 0.6.0 Criterion's plotting library INDIRECT 3 1753440784 criterion • 0.7.0 Statistics-driven micro-benchmarking library DIRECT 36 1753440802 either • 1.15.0 The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases.
INDIRECT 0 1741210587 equivalent • 1.0.2 Traits for key comparison in maps. DIRECT 0 1739571258 find-msvc-tools • 0.1.1 Find windows-specific tools, read MSVC versions from the registry and from COM interfaces INDIRECT 0 1757068662 futures-channel • 0.3.31 Channels for asynchronous communication using futures-rs.
INDIRECT 2 1728112026 futures-core • 0.3.31 The core traits and types in for the `futures` library.
INDIRECT 0 1728112007 futures-executor • 0.3.31 Executors for asynchronous tasks based on the futures-rs library.
INDIRECT 15 1728112054 futures-io • 0.3.31 The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library.
INDIRECT 0 1728112013 futures-macro • 0.3.31 The futures-rs procedural macro implementations.
INDIRECT 4 1728112035 futures-sink • 0.3.31 The asynchronous `Sink` trait for the futures-rs library.
INDIRECT 0 1728112018 futures-task • 0.3.31 Tools for working with tasks.
INDIRECT 0 1728112021 futures-util • 0.3.31 Common utilities and extension traits for the futures-rs library.
INDIRECT 14 1728112047 futures • 0.3.31 An implementation of futures and streams featuring zero allocations,
composability, and iterator-like interfaces.
DIRECT 16 1728112065 generator • 0.8.7 Stackfull Generator Library in Rust INDIRECT 22 1755765083 gimli • 0.27.3 A library for reading and writing the DWARF debugging format. INDIRECT 0 1686794985 half • 2.6.0 Half-precision floating point f16 and bf16 types for Rust implementing the IEEE 754-2008 standard binary16 and bfloat16 types. INDIRECT 2 1744087859 io-uring • 0.7.10 The low-level `io_uring` userspace interface for Rust INDIRECT 3 1755864094 itertools • 0.13.0 Extra iterator adaptors, iterator methods, free functions, and macros. INDIRECT 1 1715873852 itoa • 1.0.15 Fast integer primitive to string conversion INDIRECT 0 1741045365 libc • 0.2.175 Raw FFI bindings to platform libraries like libc. INDIRECT 0 1754897742 lock_api • 0.4.13 Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std. INDIRECT 2 1748543672 log • 0.4.28 A lightweight logging facade for Rust
INDIRECT 0 1756930088 num-traits • 0.2.19 Numeric traits for generic mathematics INDIRECT 1 1714771659 object • 0.31.1 A unified interface for reading and writing object file formats. INDIRECT 1 1683686158 once_cell • 1.21.3 Single assignment cells and lazy values. INDIRECT 0 1743182156 parking_lot_core • 0.9.11 An advanced API for creating custom synchronization primitives. INDIRECT 14 1748543681 parking_lot • 0.12.4 More compact and efficient implementations of the standard synchronization primitives. INDIRECT 18 1748543688 pin-project-lite • 0.2.16 A lightweight version of pin-project written with declarative macros.
INDIRECT 0 1736166051 pin-utils • 0.1.0 Utilities for pinning
INDIRECT 0 1587572007 ppv-lite86 • 0.2.21 Cross-platform cryptography-oriented low-level SIMD library. INDIRECT 6 1741550500 proc-macro2 • 1.0.101 A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case. INDIRECT 1 1755375039 proptest • 1.7.0 Hypothesis-like property-based testing and shrinking.
DIRECT 15 1749325725 quote • 1.0.40 Quasi-quoting macro quote!(...) INDIRECT 2 1741737384 rand_chacha • 0.9.0 ChaCha random number generator
INDIRECT 8 1737985106 rand_core • 0.9.3 Core random number generator traits and tools for implementation.
INDIRECT 0 1740837668 rand_xorshift • 0.4.0 Xorshift random number generator
INDIRECT 1 1737988836 rand • 0.9.2 Random number generators and other randomness functionality.
DIRECT 1 1753033621 regex-syntax • 0.6.29 A regular expression parser. INDIRECT 0 1679408089 regex-syntax • 0.7.5 A regular expression parser. INDIRECT 0 1693057835 regex • 1.8.4 An implementation of regular expressions for Rust. This implementation uses
finite automata and guarantees linear time matching on all inputs.
INDIRECT 1 1685970208 rustc-demangle • 0.1.26 Rust compiler symbol demangling.
INDIRECT 0 1753623708 rustversion • 1.0.22 Conditional compilation according to rustc compiler version INDIRECT 0 1754678039 scoped-tls • 1.0.1 Library implementation of the standard library's old `scoped_thread_local!`
macro for providing scoped access to thread local storage (TLS) so any type can
be stored into TLS.
INDIRECT 0 1667228516 scopeguard • 1.2.0 A RAII scope guard that will run a given closure when it goes out of scope,
even if the code between panics (assuming unwinding panic).
Defines the macros `defer!`, `defer_on_unwind!`, `defer_on_success!` as
shorthands for guards with one of the implemented strategies.
INDIRECT 0 1689601673 serde_derive • 1.0.210 Macros 1.1 implementation of #[derive(Serialize, Deserialize)] INDIRECT 4 1725646653 serde_json • 1.0.143 A JSON serialization file format INDIRECT 9 1755576685 serde_test • 1.0.177 Token De/Serializer for testing De/Serialize implementations DIRECT 6 1722842084 serde • 1.0.210 A generic serialization/deserialization framework DIRECT 5 1725646662 shlex • 1.3.0 Split a string into shell words, like Python's shlex. INDIRECT 0 1705900515 signal-hook-registry • 1.4.6 Backend crate for signal-hook INDIRECT 1 1754245035 smallvec • 1.15.1 'Small vector' optimization: store up to a small number of items on the stack INDIRECT 0 1749230060 socket2 • 0.6.0 Utilities for handling networking sockets with a maximal amount of configuration
possible intended.
INDIRECT 11 1751706339 static_assertions • 1.1.0 Compile-time assertions to ensure that invariants are met. DIRECT 0 1572800531 syn • 2.0.56 Parser for Rust source code INDIRECT 3 1711766854 thread_local • 1.1.9 Per-object thread-local storage INDIRECT 1 1749772001 tinytemplate • 1.2.1 Simple, lightweight template engine INDIRECT 10 1614816308 unarray • 0.1.4 Utilities for working with uninitialized arrays INDIRECT 0 1669828182 windows_aarch64_gnullvm • 0.52.6 Import lib for Windows INDIRECT 0 1720035816 windows_aarch64_msvc • 0.52.6 Import lib for Windows INDIRECT 0 1720035820 windows_i686_gnu • 0.52.6 Import lib for Windows INDIRECT 0 1720035826 windows_i686_gnullvm • 0.52.6 Import lib for Windows INDIRECT 0 1720035830 windows_i686_msvc • 0.52.6 Import lib for Windows INDIRECT 0 1720035834 windows_x86_64_gnu • 0.52.6 Import lib for Windows INDIRECT 0 1720035838 windows_x86_64_gnullvm • 0.52.6 Import lib for Windows INDIRECT 0 1720035843 windows_x86_64_msvc • 0.52.6 Import lib for Windows INDIRECT 0 1720035847 windows-collections • 0.2.0 Windows collection types INDIRECT 10 1742325056 windows-core • 0.61.2 Core type support for COM and Windows INDIRECT 9 1747670908 windows-future • 0.2.1 Windows async types INDIRECT 11 1747338101 windows-implement • 0.60.0 The implement macro for the windows crate INDIRECT 4 1742307860 windows-interface • 0.59.1 The interface macro for the windows crate INDIRECT 4 1742307878 windows-link • 0.1.3 Linking for Windows INDIRECT 0 1749754652 windows-link • 0.2.0 Linking for Windows INDIRECT 0 1757017114 windows-numerics • 0.2.0 Windows numeric types INDIRECT 10 1742307975 windows-result • 0.3.4 Windows error handling INDIRECT 1 1747670897 windows-strings • 0.4.2 Windows string types INDIRECT 1 1747670888 windows-sys • 0.59.0 Rust for Windows INDIRECT 9 1722353177 windows-sys • 0.61.0 Rust for Windows INDIRECT 1 1757017148 windows-targets • 0.52.6 Import libs for Windows INDIRECT 8 1720035858 windows-threading • 0.1.0 Windows threading INDIRECT 1 1747337913 windows • 0.61.3 Rust for Windows INDIRECT 14 1749754712