cc • 1.2.5A 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
1
cfg-if • 1.0.0A 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.
flate2 • 1.0.35DEFLATE compression and decompression exposed as Read/BufRead/Write streams.
Supports miniz_oxide and multiple zlib implementations. Supports zlib, gzip,
and raw deflate streams.
itoa • 1.0.14Fast integer primitive to string conversion
INDIRECT
0
js-sys • 0.3.76Bindings for all JS global objects and functions in all JS environments like
Node.js and browsers, built on `#[wasm_bindgen]` using the `wasm-bindgen` crate.
proc-macro2 • 1.0.92A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.
regex • 1.8.4An implementation of regular expressions for Rust. This implementation uses
finite automata and guarantees linear time matching on all inputs.
scopeguard • 1.2.0A 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.
threadpool • 1.8.1A thread pool for running a number of jobs on a fixed set of worker threads.
INDIRECT
3
tokio-serde • 0.8.0Send and receive Serde encodable types over the network using Tokio.
This library is used as a building block for serialization format specific
libraries.
winapi-i686-pc-windows-gnu • 0.4.0Import libraries for the i686-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead.
INDIRECT
0
winapi-x86_64-pc-windows-gnu • 0.4.0Import libraries for the x86_64-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead.
ansi_term • 0.12.1Library for ANSI terminal colours and styles (bold, underline)
INDIRECT
3
bincode • 1.3.3A binary serialization / deserialization strategy for transforming structs into bytes and vice versa!
DIRECT
6
bytes • 1.9.0Types and traits for working with bytes
DIRECT
6
educe • 0.4.23This crate offers procedural macros designed to facilitate the swift implementation of Rust's built-in traits.
INDIRECT
10
enum-ordinalize • 3.1.15This library enables enums to not only obtain the ordinal values of their variants but also allows for the construction of enums from an ordinal value.
INDIRECT
8
integer-encoding • 1.1.7varint+zigzag and fixedint integer encoding/decoding (https://developers.google.com/protocol-buffers/docs/encoding)