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.
INDIRECT
0
cpufeatures • 0.2.16Lightweight runtime CPU feature detection for aarch64, loongarch64, and x86/x86_64 targets,
with no_std support and support for mobile targets including Android and iOS
libc • 0.2.169Raw FFI bindings to platform libraries like libc.
INDIRECT
0
libz-sys • 1.1.20Low-level bindings to the system libz library (also known as zlib).
INDIRECT
5
matrixmultiply • 0.1.15General matrix multiplication for f32 and f64 matrices. Operates on matrices with general layout (they can use arbitrary row and column stride). Detects and uses AVX or SSE2 on x86 platforms transparently for higher performance. Uses a microkernel strategy, so that the implementation is easy to parallelize and optimize.
Supports multithreading.
INDIRECT
1
matrixmultiply • 0.2.4General matrix multiplication for f32 and f64 matrices. Operates on matrices with general layout (they can use arbitrary row and column stride). Detects and uses AVX or SSE2 on x86 platforms transparently for higher performance. Uses a microkernel strategy, so that the implementation is easy to parallelize and optimize.
Supports multithreading.
INDIRECT
1
ndarray-parallel • 0.9.1Parallelization for ndarray using rayon.
(Deprecated - use ndarray with rayon directly.)
INDIRECT
14
ndarray-stats • 0.3.0Statistical routines for ArrayBase, the n-dimensional array data structure provided by ndarray.
DIRECT
37
ndarray • 0.12.1An n-dimensional array for general elements and for numerics. Lightweight array views and slicing; views support chunking and splitting.
INDIRECT
8
ndarray • 0.13.1An n-dimensional array for general elements and for numerics. Lightweight array views and slicing; views support chunking and splitting.
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.
rand • 0.7.3Random number generators and other randomness functionality.
INDIRECT
16
rawpointer • 0.1.0Extra methods for raw pointers and `NonNull<T>`.
For example `.post_inc()` and `.pre_dec()` (c.f. `ptr++` and `--ptr`),
`offset` and `add` for `NonNull<T>`, and the function `ptrdistance`.
INDIRECT
0
rawpointer • 0.2.1Extra methods for raw pointers and `NonNull<T>`.
For example `.post_inc()` and `.pre_dec()` (c.f. `ptr++` and `--ptr`),
`offset` and `add` for `NonNull<T>`, and the function `ptrdistance`.
regex • 1.7.3An implementation of regular expressions for Rust. This implementation uses
finite automata and guarantees linear time matching on all inputs.
typenum • 1.17.0Typenum is a Rust library for type-level numbers evaluated at
compile time. It currently supports bits, unsigned integers, and signed
integers. It also provides a type-level array of type-level numbers, but its
implementation is incomplete.
INDIRECT
0
ucd-trie • 0.1.7A trie for storing Unicode codepoint sets and maps.
INDIRECT
0
unicode-width • 0.2.0Determine displayed width of `char` and `str` types
according to Unicode Standard Annex #11 rules.
INDIRECT
0
vcpkg • 0.2.15A library to find native dependencies in a vcpkg tree at build
time in order to be used in Cargo build scripts.
INDIRECT
0
version_check • 0.9.5Tiny crate to check the version of the installed/running rustc.
INDIRECT
0
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.
phf • 0.8.0Runtime support for perfect hash function data structures
INDIRECT
2
rgb • 0.8.50`struct RGB/RGBA/etc.` for sharing pixels between crates + convenience methods for color manipulation.
Allows no-copy high-level interoperability. Also adds common convenience methods and implements standard Rust traits to make `RGB`/`RGBA` pixels and slices first-class Rust objects.