_            _    _        _         _
      /\ \         /\ \ /\ \     /\_\      / /\
      \_\ \       /  \ \\ \ \   / / /     / /  \
      /\__ \     / /\ \ \\ \ \_/ / /     / / /\ \__
     / /_ \ \   / / /\ \ \\ \___/ /     / / /\ \___\
    / / /\ \ \ / / /  \ \_\\ \ \_/      \ \ \ \/___/
   / / /  \/_// / /   / / / \ \ \        \ \ \
  / / /      / / /   / / /   \ \ \   _    \ \ \
 / / /      / / /___/ / /     \ \ \ /_/\__/ / /
/_/ /      / / /____\/ /       \ \_\\ \/___/ /
\_\/       \/_________/         \/_/ \_____\/
rust-wide 0.4.6
Channel: guix
Location: gnu/packages/crates-io.scm (gnu packages crates-io)
Home page: https://github.com/Lokathor/wide
Licenses: Zlib
Synopsis: Rust for wide blocks
Description:

This crate has data types for blocks of primitives packed together and used as a single unit. This works very well with SIMD/vector hardware of various targets. Both in terms of explicit SIMD usage and also in terms of allowing LLVM's auto-vectorizer to do its job.

rust-wide 0.7.30
Channel: guix
Location: gnu/packages/crates-io.scm (gnu packages crates-io)
Home page: https://github.com/Lokathor/wide
Licenses: Zlib ASL 2.0 Expat
Synopsis: Rust for wide blocks
Description:

This crate has data types for blocks of primitives packed together and used as a single unit. This works very well with SIMD/vector hardware of various targets. Both in terms of explicit SIMD usage and also in terms of allowing LLVM's auto-vectorizer to do its job.

rust-bs58 0.5.1
Channel: guix
Location: gnu/packages/crates-io.scm (gnu packages crates-io)
Home page: https://github.com/Nullus157/bs58-rs
Licenses: ASL 2.0 Expat
Synopsis: Another Base58 codec implementation
Description:

Another Base58 codec implementation. Compared to the base58 crate this is significantly faster at decoding: about 2.4x as fast when decoding 32 bytes, almost the same speed for encoding: about 3% slower when encoding 32 bytes. rust-bs58 is not limited to 128 bytes and supports a configurable alphabet.

rust-bs58 0.4.0
Channel: guix
Location: gnu/packages/crates-io.scm (gnu packages crates-io)
Home page: https://github.com/Nullus157/bs58-rs
Licenses: ASL 2.0 Expat
Synopsis: Another Base58 codec implementation
Description:

Another Base58 codec implementation. Compared to the base58 crate this is significantly faster at decoding: about 2.4x as fast when decoding 32 bytes, almost the same speed for encoding: about 3% slower when encoding 32 bytes. rust-bs58 is not limited to 128 bytes and supports a configurable alphabet.

rust-fsio 0.4.0
Channel: guix
Location: gnu/packages/crates-io.scm (gnu packages crates-io)
Home page: http://github.com/sagiegurari/fsio
Licenses: ASL 2.0
Synopsis: File System and Path utility functions in Rust
Description:

This crate contains utility functions for path, file and directory handling. There are multiple main modules for fsio:

  1. fsio::path: Holds path related functions and traits.

  2. fsio::file: File utility functions such as read_file, write_file, etc.

  3. fsio::directory: Directory specific utility functions.

rust-iron 0.6.1
Channel: guix
Location: gnu/packages/crates-web.scm (gnu packages crates-web)
Home page: https://github.com/iron/iron
Licenses: Expat
Synopsis: Extensible, concurrency focused web development in Rust
Description:

Iron is a high level web framework built in and for Rust. It is highly concurrent and can scale horizontally on more machines behind a load balancer or by running more threads on a more powerful machine. Iron avoids the bottlenecks encountered in highly concurrent code by avoiding shared writes and locking in the core framework.

rust-udev 0.8.0
Dependencies: eudev@3.2.14
Channel: small-guix
Location: small-guix/packages/solo.scm (small-guix packages solo)
Home page: https://github.com/Smithay/udev-rs
Licenses: Expat
Synopsis: Safe @code{libudev} bindings for Rust
Description:

This crate provides a safe wrapper around the native libudev library. It applies the RAII pattern and Rust lifetimes to ensure safe usage of all libudev functionality. The RAII pattern ensures that all acquired resources are released when they're no longer needed, and Rust lifetimes ensure that resources are released in a proper order.

rust-dirs 6.0.0
Channel: guix-science
Location: guix-science/packages/typst.scm (guix-science packages typst)
Home page: https://github.com/soc/dirs-rs
Licenses: Expat ASL 2.0
Synopsis: tiny low-level library that provides platform-specific standard locations of directories for config, cache and other data on Linux, Windows, macOS and Redox by leveraging the mechanisms defined by the XDG base/user directory specifications on Linux, the Known Folder API on Windows, and the Standard Directory guidelines on macOS.
Description:

This package provides a tiny low-level library that provides platform-specific standard locations of directories for config, cache and other data on Linux, Windows, macOS and Redox by leveraging the mechanisms defined by the XDG base/user directory specifications on Linux, the Known Folder API on Windows, and the Standard Directory guidelines on macOS.

rust-alga 0.9.3
Channel: guix
Location: gnu/packages/crates-io.scm (gnu packages crates-io)
Home page: https://github.com/rustsim/alga
Licenses: ASL 2.0
Synopsis: Abstract algebra for Rust
Description:

Alga aims to provide solid mathematical abstractions to algebra-focused applications. It defines and organizes through trait inheritance the basic building blocks of general algebraic structures. Specific implementations of algebraic structure traits are left to other crates. Higher-level traits for specialized domains of algebra (like linear algebra) are also provided and will prove useful for applications that include code that is generic with regard to the algebraic entity types.

rust-libc 0.2.155
Channel: sakura
Location: sakura/packages/crates-io.scm (sakura packages crates-io)
Home page: https://github.com/rust-lang/libc
Licenses: Expat ASL 2.0
Synopsis: Raw FFI bindings to platform libraries like libc
Description:

The rust libc crate provides all of the definitions necessary to easily interoperate with C code (or "C-like" code) on each of the platforms that Rust supports. This includes type definitions (e.g., c_int), constants (e.g., EINVAL) as well as function headers (e.g., malloc).

This crate exports all underlying platform types, functions, and constants under the crate root, so all items are accessible as libc::foo. The types and values of all the exported APIs match the platform that libc is compiled for.

rust-libc 0.2.169
Channel: guix
Location: gnu/packages/crates-io.scm (gnu packages crates-io)
Home page: https://github.com/rust-lang/libc
Licenses: Expat ASL 2.0
Synopsis: Raw FFI bindings to platform libraries like libc
Description:

The rust libc crate provides all of the definitions necessary to easily interoperate with C code (or "C-like" code) on each of the platforms that Rust supports. This includes type definitions (e.g., c_int), constants (e.g., EINVAL) as well as function headers (e.g., malloc).

This crate exports all underlying platform types, functions, and constants under the crate root, so all items are accessible as libc::foo. The types and values of all the exported APIs match the platform that libc is compiled for.

rust-bluer 0.17.3
Dependencies: bluez@5.72
Channel: sakura
Location: sakura/packages/crates-io.scm (sakura packages crates-io)
Home page: https://github.com/bluez/bluer
Licenses: FreeBSD
Synopsis: Official Rust interface to the Linux Bluetooth protocol stack (BlueZ)
Description:

todo

rust-indoc 0.3.6
Channel: guixrus
Location: guixrus/packages/common/rust.scm (guixrus packages common rust)
Home page: https://github.com/dtolnay/indoc
Licenses: Expat ASL 2.0
Synopsis: Indented document literals
Description:

Indented document literals

rust-cast5 0.11.1
Channel: guix
Location: gnu/packages/crates-crypto.scm (gnu packages crates-crypto)
Home page: https://github.com/RustCrypto/block-ciphers
Licenses: Expat ASL 2.0
Synopsis: CAST5 block cipher
Description:

CAST5 block cipher

rust-ghost 0.1.2
Channel: guixrus
Location: guixrus/packages/common/rust.scm (guixrus packages common rust)
Home page: https://github.com/dtolnay/ghost
Licenses: Expat ASL 2.0
Synopsis: Define your own PhantomData
Description:

Define your own PhantomData

rust-quote 0.4.2
Channel: guixrus
Location: guixrus/packages/common/rust.scm (guixrus packages common rust)
Home page: https://github.com/dtolnay/quote
Licenses: Expat ASL 2.0
Synopsis: Quasi-quoting macro quote!(...)
Description:

Quasi-quoting macro quote!(...)

rust-confy 0.4.0
Channel: guixrus
Location: guixrus/packages/common/rust.scm (guixrus packages common rust)
Home page: https://github.com/rust-clique/confy
Licenses: Expat X11 ASL 2.0
Synopsis: Boilerplate-free configuration management
Description:

Boilerplate-free configuration management

rust-quote 1.0.32
Channel: hui
Location: hui/packages/embedded.scm (hui packages embedded)
Home page: https://github.com/dtolnay/quote
Licenses: Expat ASL 2.0
Synopsis: Quasi-quoting macro quote!(...)
Description:

Quasi-quoting macro quote!(...)

rust-logos 0.12.1
Channel: kbg
Location: kbg/packages/crates-io.scm (kbg packages crates-io)
Home page: https://logos.maciej.codes/
Licenses: Expat ASL 2.0
Synopsis: Create ridiculously fast Lexers
Description:

Create ridiculously fast Lexers

rust-bgzip 0.2.1
Channel: gn-bioinformatics
Location: gn/packages/crates-io.scm (gn packages crates-io)
Home page: https://github.com/informationsea/bgzip-rs
Licenses: Expat
Synopsis: Rust implementation of bgzip
Description:

Rust implementation of bgzip

rust-quote 1.0.37
Channel: guix
Location: gnu/packages/crates-io.scm (gnu packages crates-io)
Home page: https://github.com/dtolnay/quote
Licenses: ASL 2.0 Expat
Synopsis: Quasi-quoting macro quote!(...)
Description:

Quasi-quoting macro quote!(...)

rust-divan 0.1.17
Dependencies: mimalloc@2.1.2
Channel: guix
Location: gnu/packages/crates-io.scm (gnu packages crates-io)
Home page: https://github.com/nvzqz/divan
Licenses: Expat ASL 2.0
Synopsis: Statistically-comfy benchmarking library
Description:

Statistically-comfy benchmarking library.

rust-quote 0.5.2
Channel: guix
Location: gnu/packages/crates-io.scm (gnu packages crates-io)
Home page: https://github.com/dtolnay/quote
Licenses: ASL 2.0 Expat
Synopsis: Quasi-quoting macro quote!(...)
Description:

Quasi-quoting macro quote!(...)

rust-quote 0.6.13
Channel: guix
Location: gnu/packages/crates-io.scm (gnu packages crates-io)
Home page: https://github.com/dtolnay/quote
Licenses: ASL 2.0 Expat
Synopsis: Quasi-quoting macro quote!(...)
Description:

Quasi-quoting macro quote!(...)

Total results: 6649