From cec5a0dc61a8d9613b8b90b1edcec8bb7b4bed4a Mon Sep 17 00:00:00 2001 From: Folyd Date: Sat, 26 Feb 2022 10:19:47 +0800 Subject: [PATCH] Update to latest search index --- docs/content/testimonial.md | 2 +- extension/index/books.js | 2 +- extension/index/caniuse.js | 2 +- extension/index/crates.js | 2 +- extension/index/labels.js | 2 +- extension/index/lints.js | 2 +- extension/index/rfcs.js | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/content/testimonial.md b/docs/content/testimonial.md index c66f117c..003622b4 100644 --- a/docs/content/testimonial.md +++ b/docs/content/testimonial.md @@ -4,7 +4,7 @@ description = "Testimonials" weight = 1 +++ -## From *Kazuhiro Serizawa* +## From *@Kazuhiro Serizawa* > 同僚氏に教えてもらったRustのdocやcrateをchromeのURL barでincremental searchできるようになるchrome extension.超便利. > diff --git a/extension/index/books.js b/extension/index/books.js index 31b8b0d2..c034a466 100644 --- a/extension/index/books.js +++ b/extension/index/books.js @@ -1 +1 @@ -var C=["The Rust Programming Language","1. Getting Started","3. Common Programming Concepts","4. Understanding Ownership","5. Using Structs to Structure Related Data","6. Enums and Pattern Matching","7. Managing Growing Projects with Packages, Crates, and Modules","8. Common Collections","9. Error Handling","10. Generic Types, Traits, and Lifetimes","11. Writing Automated Tests","12. An I/O Project: Building a Command Line Program","13. Functional Language Features: Iterators and Closures","14. More about Cargo and Crates.io","15. Smart Pointers","16. Fearless Concurrency","17. Object Oriented Programming Features of Rust","18. Patterns and Matching","19. Advanced Features","20. Final Project: Building a Multithreaded Web Server","21. Appendix","2. Under the Hood: Executing Futures and Tasks","5. Streams","6. Executing Multiple Futures at a Time","7. Workarounds to Know and Love","9. Final Project: HTTP Server","Introduction","1. What are editions?","3. Rust 2018","4. Rust 2021","1.1. Installation","2. Cargo Guide","3. Cargo Reference","3.1. Specifying Dependencies","3.2. The Manifest Format","3.4. Features","3.8. Build Scripts","4. Cargo Commands","4.1. General Commands","4.2. Build Commands","4.3. Manifest Commands","4.4. Package Commands","4.5. Publishing Commands","introduction","3. Background And Concepts","4. Tutorial","reference/index","5. Reference","1. Introduction","1.4. Installation","2. Getting started","3. Peripherals","4. Static Guarantees","8. Design Patterns","8.1. HALs","10. Interoperability","11. Unsorted topics","appendix/glossary","1. Algorithms","2. Command Line","3. Compression","4. Concurrency","5. Cryptography","6. Data Structures","7. Database","8. Date and Time","9. Development Tools","9.1. Debugging","10. Encoding","11. Error Handling","12. File System","13. Hardware Support","14. Memory Management","15. Network","16. Operating System","17. Science","17.1. Mathematics","18. Text Processing","19. Web Programming","19.4. Clients","1. Meet Safe and Unsafe","2. Data Layout","3. Ownership","4. Type Conversions","5. Uninitialized Memory","6. Ownership Based Resource Management","7. Unwinding","concurrency","8. Concurrency","9. Implementing Vec","10. Implementing Arc and Mutex","10.1. Arc","12. Beneath std","2. Lexical structure","3. Macros","6. Items","7. Attributes","8. Statements and expressions","8.2. Expressions","10. Type system","10.1. Types","subtyping","destructors","lifetime-elision","12. Names","13. Memory model","15. Unsafety","19. Appendices","The Unstable Book","1. Compiler flags","2. Language features","3. Library Features","The Embedded Rust Book","intro/index","1.1. Hardware","intro/hardware","1.2. no_std","intro/no-std","1.3. Tooling","intro/tooling","intro/install","1.4.1. Linux","intro/install/linux","1.4.2. MacOS","intro/install/macos","1.4.3. Windows","intro/install/windows","1.4.4. Verify Installation","intro/install/verify","start/index","2.1. QEMU","start/qemu","2.2. Hardware","start/hardware","2.3. Memory-mapped Registers","start/registers","2.4. Semihosting","start/semihosting","2.5. Panicking","start/panicking","2.6. Exceptions","start/exceptions","2.7. Interrupts","start/interrupts","peripherals/index","3.1. A first attempt in Rust","peripherals/a-first-attempt","3.2. The Borrow Checker","peripherals/borrowck","3.3. Singletons","peripherals/singletons","static-guarantees/index","4.1. Typestate Programming","static-guarantees/typestate-programming","4.2. Peripherals as State Machines","static-guarantees/state-machines","4.3. Design Contracts","static-guarantees/design-contracts","4.4. Zero Cost Abstractions","static-guarantees/zero-cost-abstractions","5. Portability","portability/index","6. Concurrency","concurrency/index","7. Collections","collections/index","design-patterns/index","design-patterns/hal/index","8.1.1. Checklist","design-patterns/hal/checklist","8.1.2. Naming","design-patterns/hal/naming","8.1.3. Interoperability","design-patterns/hal/interoperability","8.1.4. Predictability","design-patterns/hal/predictability","8.1.5. GPIO","design-patterns/hal/gpio","9. Tips for embedded C developers","c-tips/index","interoperability/index","10.1. A little C with your Rust","interoperability/c-with-rust","10.2. A little Rust with your C","interoperability/rust-with-c","unsorted/index","11.1. Optimizations: The speed size tradeoff","unsorted/speed-vs-size","11.2. Performing Math Functionality","unsorted/math","Appendix A: Glossary","1. How to Build and Run the Compiler","2. Testing the compiler","2.1. Running tests","2.3. Compiletest","3. Debugging the Compiler","4. Profiling the compiler","17. Notification groups","23. Queries: demand-driven compilation","30. The Rustc Driver and Interface","31. Syntax and the AST","32. The HIR (High-level IR)","34. The MIR (Mid-level IR)","identifiers","39. The ty module: representing types","41. Trait solving","41.5. Chalk-based trait solving","42. Type checking","46. The borrow checker","46.1. Tracking moves and initialization","46.3. Region inference","48. Errors and Lints","52. Constant evaluation","55. Code Generation","About this guide","about-this-guide","getting-started","1. The library team","2. The feature lifecycle","3. Code considerations","3.1. Design","3.2. Breaking changes","3.3. Safety and soundness","3.4. Using unstable language features","3.5. Performance","4. Documentation","5. Tools and bots"];var N=N;var booksIndex=[{"name":C[0],"url":"https://doc.rust-lang.org/stable/book/","pages":[[C[0],"title-page",N],["Foreword","foreword",N],[C[26],"ch00-00-introduction",N],[C[1],"ch01-00-getting-started",N],[C[30],"ch01-01-installation",[C[1]]],["1.2. Hello, World!","ch01-02-hello-world",[C[1]]],["1.3. Hello, Cargo!","ch01-03-hello-cargo",[C[1]]],["2. Programming a Guessing Game","ch02-00-guessing-game-tutorial",N],[C[2],"ch03-00-common-programming-concepts",N],["3.1. Variables and Mutability","ch03-01-variables-and-mutability",[C[2]]],["3.2. Data Types","ch03-02-data-types",[C[2]]],["3.3. Functions","ch03-03-how-functions-work",[C[2]]],["3.4. Comments","ch03-04-comments",[C[2]]],["3.5. Control Flow","ch03-05-control-flow",[C[2]]],[C[3],"ch04-00-understanding-ownership",N],["4.1. What is Ownership?","ch04-01-what-is-ownership",[C[3]]],["4.2. References and Borrowing","ch04-02-references-and-borrowing",[C[3]]],["4.3. The Slice Type","ch04-03-slices",[C[3]]],[C[4],"ch05-00-structs",N],["5.1. Defining and Instantiating Structs","ch05-01-defining-structs",[C[4]]],["5.2. An Example Program Using Structs","ch05-02-example-structs",[C[4]]],["5.3. Method Syntax","ch05-03-method-syntax",[C[4]]],[C[5],"ch06-00-enums",N],["6.1. Defining an Enum","ch06-01-defining-an-enum",[C[5]]],["6.2. The match Control Flow Operator","ch06-02-match",[C[5]]],["6.3. Concise Control Flow with if let","ch06-03-if-let",[C[5]]],[C[6],"ch07-00-managing-growing-projects-with-packages-crates-and-modules",N],["7.1. Packages and Crates","ch07-01-packages-and-crates",[C[6]]],["7.2. Defining Modules to Control Scope and Privacy","ch07-02-defining-modules-to-control-scope-and-privacy",[C[6]]],["7.3. Paths for Referring to an Item in the Module Tree","ch07-03-paths-for-referring-to-an-item-in-the-module-tree",[C[6]]],["7.4. Bringing Paths Into Scope with the use Keyword","ch07-04-bringing-paths-into-scope-with-the-use-keyword",[C[6]]],["7.5. Separating Modules into Different Files","ch07-05-separating-modules-into-different-files",[C[6]]],[C[7],"ch08-00-common-collections",N],["8.1. Storing Lists of Values with Vectors","ch08-01-vectors",[C[7]]],["8.2. Storing UTF-8 Encoded Text with Strings","ch08-02-strings",[C[7]]],["8.3. Storing Keys with Associated Values in Hash Maps","ch08-03-hash-maps",[C[7]]],[C[8],"ch09-00-error-handling",N],["9.1. Unrecoverable Errors with panic!","ch09-01-unrecoverable-errors-with-panic",[C[8]]],["9.2. Recoverable Errors with Result","ch09-02-recoverable-errors-with-result",[C[8]]],["9.3. To panic! or Not to panic!","ch09-03-to-panic-or-not-to-panic",[C[8]]],[C[9],"ch10-00-generics",N],["10.1. Generic Data Types","ch10-01-syntax",[C[9]]],["10.2. Traits: Defining Shared Behavior","ch10-02-traits",[C[9]]],["10.3. Validating References with Lifetimes","ch10-03-lifetime-syntax",[C[9]]],[C[10],"ch11-00-testing",N],["11.1. How to Write Tests","ch11-01-writing-tests",[C[10]]],["11.2. Controlling How Tests Are Run","ch11-02-running-tests",[C[10]]],["11.3. Test Organization","ch11-03-test-organization",[C[10]]],[C[11],"ch12-00-an-io-project",N],["12.1. Accepting Command Line Arguments","ch12-01-accepting-command-line-arguments",[C[11]]],["12.2. Reading a File","ch12-02-reading-a-file",[C[11]]],["12.3. Refactoring to Improve Modularity and Error Handling","ch12-03-improving-error-handling-and-modularity",[C[11]]],["12.4. Developing the Library’s Functionality with Test Driven Development","ch12-04-testing-the-librarys-functionality",[C[11]]],["12.5. Working with Environment Variables","ch12-05-working-with-environment-variables",[C[11]]],["12.6. Writing Error Messages to Standard Error Instead of Standard Output","ch12-06-writing-to-stderr-instead-of-stdout",[C[11]]],[C[12],"ch13-00-functional-features",N],["13.1. Closures: Anonymous Functions that Can Capture Their Environment","ch13-01-closures",[C[12]]],["13.2. Processing a Series of Items with Iterators","ch13-02-iterators",[C[12]]],["13.3. Improving Our I/O Project","ch13-03-improving-our-io-project",[C[12]]],["13.4. Comparing Performance: Loops vs. Iterators","ch13-04-performance",[C[12]]],[C[13],"ch14-00-more-about-cargo",N],["14.1. Customizing Builds with Release Profiles","ch14-01-release-profiles",[C[13]]],["14.2. Publishing a Crate to Crates.io","ch14-02-publishing-to-crates-io",[C[13]]],["14.3. Cargo Workspaces","ch14-03-cargo-workspaces",[C[13]]],["14.4. Installing Binaries from Crates.io with cargo install","ch14-04-installing-binaries",[C[13]]],["14.5. Extending Cargo with Custom Commands","ch14-05-extending-cargo",[C[13]]],[C[14],"ch15-00-smart-pointers",N],["15.1. Using Box to Point to Data on the Heap","ch15-01-box",[C[14]]],["15.2. Treating Smart Pointers Like Regular References with the Deref Trait","ch15-02-deref",[C[14]]],["15.3. Running Code on Cleanup with the Drop Trait","ch15-03-drop",[C[14]]],["15.4. Rc, the Reference Counted Smart Pointer","ch15-04-rc",[C[14]]],["15.5. RefCell and the Interior Mutability Pattern","ch15-05-interior-mutability",[C[14]]],["15.6. Reference Cycles Can Leak Memory","ch15-06-reference-cycles",[C[14]]],[C[15],"ch16-00-concurrency",N],["16.1. Using Threads to Run Code Simultaneously","ch16-01-threads",[C[15]]],["16.2. Using Message Passing to Transfer Data Between Threads","ch16-02-message-passing",[C[15]]],["16.3. Shared-State Concurrency","ch16-03-shared-state",[C[15]]],["16.4. Extensible Concurrency with the Sync and Send Traits","ch16-04-extensible-concurrency-sync-and-send",[C[15]]],[C[16],"ch17-00-oop",N],["17.1. Characteristics of Object-Oriented Languages","ch17-01-what-is-oo",[C[16]]],["17.2. Using Trait Objects That Allow for Values of Different Types","ch17-02-trait-objects",[C[16]]],["17.3. Implementing an Object-Oriented Design Pattern","ch17-03-oo-design-patterns",[C[16]]],[C[17],"ch18-00-patterns",N],["18.1. All the Places Patterns Can Be Used","ch18-01-all-the-places-for-patterns",[C[17]]],["18.2. Refutability: Whether a Pattern Might Fail to Match","ch18-02-refutability",[C[17]]],["18.3. Pattern Syntax","ch18-03-pattern-syntax",[C[17]]],[C[18],"ch19-00-advanced-features",N],["19.1. Unsafe Rust","ch19-01-unsafe-rust",[C[18]]],["19.2. Advanced Traits","ch19-03-advanced-traits",[C[18]]],["19.3. Advanced Types","ch19-04-advanced-types",[C[18]]],["19.4. Advanced Functions and Closures","ch19-05-advanced-functions-and-closures",[C[18]]],["19.5. Macros","ch19-06-macros",[C[18]]],[C[19],"ch20-00-final-project-a-web-server",N],["20.1. Building a Single-Threaded Web Server","ch20-01-single-threaded",[C[19]]],["20.2. Turning Our Single-Threaded Server into a Multithreaded Server","ch20-02-multithreaded",[C[19]]],["20.3. Graceful Shutdown and Cleanup","ch20-03-graceful-shutdown-and-cleanup",[C[19]]],[C[20],"appendix-00",N],["21.1. A - Keywords","appendix-01-keywords",[C[20]]],["21.2. B - Operators and Symbols","appendix-02-operators",[C[20]]],["21.3. C - Derivable Traits","appendix-03-derivable-traits",[C[20]]],["21.4. D - Useful Development Tools","appendix-04-useful-development-tools",[C[20]]],["21.5. E - Editions","appendix-05-editions",[C[20]]],["21.6. F - Translations of the Book","appendix-06-translation",[C[20]]],["21.7. G - How Rust is Made and “Nightly Rust”","appendix-07-nightly-rust",[C[20]]]]},{"name":"Rust Async Book","url":"https://rust-lang.github.io/async-book/","pages":[[C[1],"01_getting_started/01_chapter",N],["1.1. Why Async?","01_getting_started/02_why_async",[C[1]]],["1.2. The State of Asynchronous Rust","01_getting_started/03_state_of_async_rust",[C[1]]],["1.3. async/.await Primer","01_getting_started/04_async_await_primer",[C[1]]],[C[21],"02_execution/01_chapter",N],["2.1. The Future Trait","02_execution/02_future",[C[21]]],["2.2. Task Wakeups with Waker","02_execution/03_wakeups",[C[21]]],["2.3. Applied: Build an Executor","02_execution/04_executor",[C[21]]],["2.4. Executors and System IO","02_execution/05_io",[C[21]]],["3. async/await","03_async_await/01_chapter",N],["4. Pinning","04_pinning/01_chapter",N],[C[22],"05_streams/01_chapter",N],["5.1. Iteration and Concurrency","05_streams/02_iteration_and_concurrency",[C[22]]],[C[23],"06_multiple_futures/01_chapter",N],["6.1. join!","06_multiple_futures/02_join",[C[23]]],["6.2. select!","06_multiple_futures/03_select",[C[23]]],[C[24],"07_workarounds/01_chapter",N],["7.1. ? in async Blocks","07_workarounds/02_err_in_async_blocks",[C[24]]],["7.2. Send Approximation","07_workarounds/03_send_approximation",[C[24]]],["7.3. Recursion","07_workarounds/04_recursion",[C[24]]],["7.4. async in Traits","07_workarounds/05_async_in_traits",[C[24]]],["8. The Async Ecosystem","08_ecosystem/00_chapter",N],[C[25],"09_example/00_intro",N],["9.1. Running Asynchronous Code","09_example/01_running_async_code",[C[25]]],["9.2. Handling Connections Concurrently","09_example/02_handling_connections_concurrently",[C[25]]],["9.3. Testing the Server","09_example/03_tests",[C[25]]],["12. Appendix: Translations of the Book","12_appendix/01_translations",N]]},{"name":"Rust Edition Guide Book","url":"https://doc.rust-lang.org/stable/edition-guide/","pages":[[C[26],C[43],N],[C[27],"editions/index",N],["1.1. Creating a new project","editions/creating-a-new-project",[C[27]]],["1.2. Transitioning an existing project to a new edition","editions/transitioning-an-existing-project-to-a-new-edition",[C[27]]],["1.3. Advanced migrations","editions/advanced-migrations",[C[27]]],["2. Rust 2015","rust-2015/index",N],[C[28],"rust-2018/index",N],["3.1. Path and module system changes","rust-2018/path-changes",[C[28]]],["3.2. Anonymous trait function parameters deprecated","rust-2018/trait-fn-parameters",[C[28]]],["3.3. New keywords","rust-2018/new-keywords",[C[28]]],["3.4. Method dispatch for raw pointers to inference variables","rust-2018/tyvar-behind-raw-pointer",[C[28]]],["3.5. Cargo changes","rust-2018/cargo",[C[28]]],[C[29],"rust-2021/index",N],["4.1. Additions to the prelude","rust-2021/prelude",[C[29]]],["4.2. Default Cargo feature resolver","rust-2021/default-cargo-resolver",[C[29]]],["4.3. IntoIterator for arrays","rust-2021/IntoIterator-for-arrays",[C[29]]],["4.4. Disjoint capture in closures","rust-2021/disjoint-capture-in-closures",[C[29]]],["4.5. Panic macro consistency","rust-2021/panic-macro-consistency",[C[29]]],["4.6. Reserving syntax","rust-2021/reserving-syntax",[C[29]]],["4.7. Warnings promoted to errors","rust-2021/warnings-promoted-to-error",[C[29]]],["4.8. Or patterns in macro-rules","rust-2021/or-patterns-macro-rules",[C[29]]]]},{"name":"The Cargo Book","url":"https://doc.rust-lang.org/cargo/","pages":[[C[26],"index",N],[C[1],"getting-started/index",N],[C[30],"getting-started/installation",[C[1]]],["1.2. First Steps with Cargo","getting-started/first-steps",[C[1]]],[C[31],"guide/index",N],["2.1. Why Cargo Exists","guide/why-cargo-exists",[C[31]]],["2.2. Creating a New Package","guide/creating-a-new-project",[C[31]]],["2.3. Working on an Existing Package","guide/working-on-an-existing-project",[C[31]]],["2.4. Dependencies","guide/dependencies",[C[31]]],["2.5. Package Layout","guide/project-layout",[C[31]]],["2.6. Cargo.toml vs Cargo.lock","guide/cargo-toml-vs-cargo-lock",[C[31]]],["2.7. Tests","guide/tests",[C[31]]],["2.8. Continuous Integration","guide/continuous-integration",[C[31]]],["2.9. Cargo Home","guide/cargo-home",[C[31]]],["2.10. Build Cache","guide/build-cache",[C[31]]],[C[32],C[46],N],[C[33],"reference/specifying-dependencies",[C[32]]],["3.1.1. Overriding Dependencies","reference/overriding-dependencies",[C[32],C[33]]],[C[34],"reference/manifest",[C[32]]],["3.2.1. Cargo Targets","reference/cargo-targets",[C[32],C[34]]],["3.3. Workspaces","reference/workspaces",[C[32]]],[C[35],"reference/features",[C[32]]],["3.4.1. Features Examples","reference/features-examples",[C[32],C[35]]],["3.5. Profiles","reference/profiles",[C[32]]],["3.6. Configuration","reference/config",[C[32]]],["3.7. Environment Variables","reference/environment-variables",[C[32]]],[C[36],"reference/build-scripts",[C[32]]],["3.8.1. Build Script Examples","reference/build-script-examples",[C[32],C[36]]],["3.9. Publishing on crates.io","reference/publishing",[C[32]]],["3.10. Package ID Specifications","reference/pkgid-spec",[C[32]]],["3.11. Source Replacement","reference/source-replacement",[C[32]]],["3.12. External Tools","reference/external-tools",[C[32]]],["3.13. Registries","reference/registries",[C[32]]],["3.14. Dependency Resolution","reference/resolver",[C[32]]],["3.15. SemVer Compatibility","reference/semver",[C[32]]],["3.16. Unstable Features","reference/unstable",[C[32]]],[C[37],"commands/index",N],[C[38],"commands/general-commands",[C[37]]],["4.1.1. cargo","commands/cargo",[C[37],C[38]]],["4.1.2. cargo help","commands/cargo-help",[C[37],C[38]]],["4.1.3. cargo version","commands/cargo-version",[C[37],C[38]]],[C[39],"commands/build-commands",[C[37]]],["4.2.1. cargo bench","commands/cargo-bench",[C[37],C[39]]],["4.2.2. cargo build","commands/cargo-build",[C[37],C[39]]],["4.2.3. cargo check","commands/cargo-check",[C[37],C[39]]],["4.2.4. cargo clean","commands/cargo-clean",[C[37],C[39]]],["4.2.5. cargo doc","commands/cargo-doc",[C[37],C[39]]],["4.2.6. cargo fetch","commands/cargo-fetch",[C[37],C[39]]],["4.2.7. cargo fix","commands/cargo-fix",[C[37],C[39]]],["4.2.8. cargo run","commands/cargo-run",[C[37],C[39]]],["4.2.9. cargo rustc","commands/cargo-rustc",[C[37],C[39]]],["4.2.10. cargo rustdoc","commands/cargo-rustdoc",[C[37],C[39]]],["4.2.11. cargo test","commands/cargo-test",[C[37],C[39]]],[C[40],"commands/manifest-commands",[C[37]]],["4.3.1. cargo generate-lockfile","commands/cargo-generate-lockfile",[C[37],C[40]]],["4.3.2. cargo locate-project","commands/cargo-locate-project",[C[37],C[40]]],["4.3.3. cargo metadata","commands/cargo-metadata",[C[37],C[40]]],["4.3.4. cargo pkgid","commands/cargo-pkgid",[C[37],C[40]]],["4.3.5. cargo tree","commands/cargo-tree",[C[37],C[40]]],["4.3.6. cargo update","commands/cargo-update",[C[37],C[40]]],["4.3.7. cargo vendor","commands/cargo-vendor",[C[37],C[40]]],["4.3.8. cargo verify-project","commands/cargo-verify-project",[C[37],C[40]]],[C[41],"commands/package-commands",[C[37]]],["4.4.1. cargo init","commands/cargo-init",[C[37],C[41]]],["4.4.2. cargo install","commands/cargo-install",[C[37],C[41]]],["4.4.3. cargo new","commands/cargo-new",[C[37],C[41]]],["4.4.4. cargo search","commands/cargo-search",[C[37],C[41]]],["4.4.5. cargo uninstall","commands/cargo-uninstall",[C[37],C[41]]],[C[42],"commands/publishing-commands",[C[37]]],["4.5.1. cargo login","commands/cargo-login",[C[37],C[42]]],["4.5.2. cargo owner","commands/cargo-owner",[C[37],C[42]]],["4.5.3. cargo package","commands/cargo-package",[C[37],C[42]]],["4.5.4. cargo publish","commands/cargo-publish",[C[37],C[42]]],["4.5.5. cargo yank","commands/cargo-yank",[C[37],C[42]]],["5. FAQ","faq",N],["6. Appendix: Glossary",C[57],N],["7. Appendix: Git Authentication","appendix/git-authentication",N]]},{"name":"Rust and WebAssembly Book","url":"https://rustwasm.github.io/docs/book/","pages":[[C[48],C[43],N],["2. Why Rust and WebAssembly?","why-rust-and-webassembly",N],[C[44],"background-and-concepts",N],["3.1. What is WebAssembly?","what-is-webassembly",[C[44]]],[C[45],"game-of-life/introduction",N],["4.1. Setup","game-of-life/setup",[C[45]]],["4.2. Hello, World!","game-of-life/hello-world",[C[45]]],["4.3. Rules","game-of-life/rules",[C[45]]],["4.4. Implementing Life","game-of-life/implementing",[C[45]]],["4.5. Testing Life","game-of-life/testing",[C[45]]],["4.6. Debugging","game-of-life/debugging",[C[45]]],["4.7. Adding Interactivity","game-of-life/interactivity",[C[45]]],["4.8. Time Profiling","game-of-life/time-profiling",[C[45]]],["4.9. Shrinking .wasm Size","game-of-life/code-size",[C[45]]],["4.10. Publishing to npm","game-of-life/publishing-to-npm",[C[45]]],[C[47],C[46],N],["5.1. Crates You Should Know","reference/crates",[C[47]]],["5.2. Tools You Should Know","reference/tools",[C[47]]],["5.3. Project Templates","reference/project-templates",[C[47]]],["5.4. Debugging","reference/debugging",[C[47]]],["5.5. Time Profiling","reference/time-profiling",[C[47]]],["5.6. Shrinking .wasm Size","reference/code-size",[C[47]]],["5.7. JavaScript Interoperation","reference/js-ffi",[C[47]]],["5.8. Which Crates Will Work Off-the-Shelf with WebAssembly?","reference/which-crates-work-with-wasm",[C[47]]],["5.9. How to Add WebAssembly Support to a General-Purpose Crate","reference/add-wasm-support-to-crate",[C[47]]],["5.10. Deploying Rust and WebAssembly to Production","reference/deploying-to-production",[C[47]]]]},{"name":C[112],"url":"https://rust-embedded.github.io/book/","pages":[[C[48],C[113],N],[C[114],C[115],[C[48]]],[C[116],C[117],[C[48]]],[C[118],C[119],[C[48]]],[C[49],C[120],[C[48]]],[C[121],C[122],[C[48],C[49]]],[C[123],C[124],[C[48],C[49]]],[C[125],C[126],[C[48],C[49]]],[C[127],C[128],[C[48],C[49]]],[C[50],C[129],N],[C[130],C[131],[C[50]]],[C[132],C[133],[C[50]]],[C[134],C[135],[C[50]]],[C[136],C[137],[C[50]]],[C[138],C[139],[C[50]]],[C[140],C[141],[C[50]]],[C[142],C[143],[C[50]]],["2.8. IO","start/io",[C[50]]],[C[51],C[144],N],[C[145],C[146],[C[51]]],[C[147],C[148],[C[51]]],[C[149],C[150],[C[51]]],[C[52],C[151],N],[C[152],C[153],[C[52]]],[C[154],C[155],[C[52]]],[C[156],C[157],[C[52]]],[C[158],C[159],[C[52]]],[C[160],C[161],N],[C[162],C[163],N],[C[164],C[165],N],[C[53],C[166],N],[C[54],C[167],[C[53]]],[C[168],C[169],[C[53],C[54]]],[C[170],C[171],[C[53],C[54]]],[C[172],C[173],[C[53],C[54]]],[C[174],C[175],[C[53],C[54]]],[C[176],C[177],[C[53],C[54]]],[C[178],C[179],N],[C[55],C[180],N],[C[181],C[182],[C[55]]],[C[183],C[184],[C[55]]],[C[56],C[185],N],[C[186],C[187],[C[56]]],[C[188],C[189],[C[56]]],[C[190],C[57],N]]},{"name":"The Rust Cookbook","url":"https://rust-lang-nursery.github.io/rust-cookbook/","pages":[["Table of Contents","intro",N],["About","about",N],[C[58],"algorithms",N],["1.1. Generate Random Values","algorithms/randomness",[C[58]]],["1.2. Sort a Vector","algorithms/sorting",[C[58]]],[C[59],"cli",N],["2.1. Argument Parsing","cli/arguments",[C[59]]],["2.2. ANSI Terminal","cli/ansi_terminal",[C[59]]],[C[60],"compression",N],["3.1. Working with Tarballs","compression/tar",[C[60]]],[C[61],C[87],N],["4.1. Explicit Threads","concurrency/threads",[C[61]]],["4.2. Data Parallelism","concurrency/parallel",[C[61]]],[C[62],"cryptography",N],["5.1. Hashing","cryptography/hashing",[C[62]]],["5.2. Encryption","cryptography/encryption",[C[62]]],[C[63],"data_structures",N],["6.1. Bitfield","data_structures/bitfield",[C[63]]],[C[64],"database",N],["7.1. SQLite","database/sqlite",[C[64]]],["7.2. Postgres","database/postgres",[C[64]]],[C[65],"datetime",N],["8.1. Duration and Calculation","datetime/duration",[C[65]]],["8.2. Parsing and Displaying","datetime/parse",[C[65]]],[C[66],"development_tools",N],[C[67],"development_tools/debugging",[C[66]]],["9.1.1. Log Messages","development_tools/debugging/log",[C[66],C[67]]],["9.1.2. Configure Logging","development_tools/debugging/config_log",[C[66],C[67]]],["9.2. Versioning","development_tools/versioning",[C[66]]],["9.3. Build Time Tooling","development_tools/build_tools",[C[66]]],[C[68],"encoding",N],["10.1. Character Sets","encoding/strings",[C[68]]],["10.2. CSV processing","encoding/csv",[C[68]]],["10.3. Structured Data","encoding/complex",[C[68]]],[C[69],"errors",N],["11.1. Handle Error Variants","errors/handle",[C[69]]],[C[70],"file",N],["12.1. Read & Write","file/read-write",[C[70]]],["12.2. Directory Traversal","file/dir",[C[70]]],[C[71],"hardware",N],["13.1. Processor","hardware/processor",[C[71]]],[C[72],"mem",N],["14.1. Global Static","mem/global_static",[C[72]]],[C[73],"net",N],["15.1. Server","net/server",[C[73]]],[C[74],"os",N],["16.1. External Command","os/external",[C[74]]],[C[75],"science",N],[C[76],"science/mathematics",[C[75]]],["17.1.1. Linear Algebra","science/mathematics/linear_algebra",[C[75],C[76]]],["17.1.2. Trigonometry","science/mathematics/trigonometry",[C[75],C[76]]],["17.1.3. Complex Numbers","science/mathematics/complex_numbers",[C[75],C[76]]],["17.1.4. Statistics","science/mathematics/statistics",[C[75],C[76]]],["17.1.5. Miscellaneous","science/mathematics/miscellaneous",[C[75],C[76]]],[C[77],"text",N],["18.1. Regular Expressions","text/regex",[C[77]]],["18.2. String Parsing","text/string_parsing",[C[77]]],[C[78],"web",N],["19.1. Extracting Links","web/scraping",[C[78]]],["19.2. URL","web/url",[C[78]]],["19.3. Media Types","web/mime",[C[78]]],[C[79],"web/clients",[C[78]]],["19.4.1. Making Requests","web/clients/requests",[C[78],C[79]]],["19.4.2. Calling a Web API","web/clients/apis",[C[78],C[79]]],["19.4.3. Downloads","web/clients/download",[C[78],C[79]]],["19.4.4. Web Authentication","web/clients/authentication",[C[78],C[79]]]]},{"name":"The Rustonomicon","url":"https://doc.rust-lang.org/nomicon/","pages":[[C[26],"intro",N],[C[80],"meet-safe-and-unsafe",N],["1.1. How Safe and Unsafe Interact","safe-unsafe-meaning",[C[80]]],["1.2. What Unsafe Can Do","what-unsafe-does",[C[80]]],["1.3. Working with Unsafe","working-with-unsafe",[C[80]]],[C[81],"data",N],["2.1. repr(Rust)","repr-rust",[C[81]]],["2.2. Exotically Sized Types","exotic-sizes",[C[81]]],["2.3. Other reprs","other-reprs",[C[81]]],[C[82],"ownership",N],["3.1. References","references",[C[82]]],["3.2. Aliasing","aliasing",[C[82]]],["3.3. Lifetimes","lifetimes",[C[82]]],["3.4. Limits of Lifetimes","lifetime-mismatch",[C[82]]],["3.5. Lifetime Elision",C[103],[C[82]]],["3.6. Unbounded Lifetimes","unbounded-lifetimes",[C[82]]],["3.7. Higher-Rank Trait Bounds","hrtb",[C[82]]],["3.8. Subtyping and Variance",C[101],[C[82]]],["3.9. Drop Check","dropck",[C[82]]],["3.10. PhantomData","phantom-data",[C[82]]],["3.11. Splitting Borrows","borrow-splitting",[C[82]]],[C[83],"conversions",N],["4.1. Coercions","coercions",[C[83]]],["4.2. The Dot Operator","dot-operator",[C[83]]],["4.3. Casts","casts",[C[83]]],["4.4. Transmutes","transmutes",[C[83]]],[C[84],"uninitialized",N],["5.1. Checked","checked-uninit",[C[84]]],["5.2. Drop Flags","drop-flags",[C[84]]],["5.3. Unchecked","unchecked-uninit",[C[84]]],[C[85],"obrm",N],["6.1. Constructors","constructors",[C[85]]],["6.2. Destructors",C[102],[C[85]]],["6.3. Leaking","leaking",[C[85]]],[C[86],"unwinding",N],["7.1. Exception Safety","exception-safety",[C[86]]],["7.2. Poisoning","poisoning",[C[86]]],[C[88],C[87],N],["8.1. Races","races",[C[88]]],["8.2. Send and Sync","send-and-sync",[C[88]]],["8.3. Atomics","atomics",[C[88]]],[C[89],"vec/vec",N],["9.1. Layout","vec/vec-layout",[C[89]]],["9.2. Allocating","vec/vec-alloc",[C[89]]],["9.3. Push and Pop","vec/vec-push-pop",[C[89]]],["9.4. Deallocating","vec/vec-dealloc",[C[89]]],["9.5. Deref","vec/vec-deref",[C[89]]],["9.6. Insert and Remove","vec/vec-insert-remove",[C[89]]],["9.7. IntoIter","vec/vec-into-iter",[C[89]]],["9.8. RawVec","vec/vec-raw",[C[89]]],["9.9. Drain","vec/vec-drain",[C[89]]],["9.10. Handling Zero-Sized Types","vec/vec-zsts",[C[89]]],["9.11. Final Code","vec/vec-final",[C[89]]],[C[90],"arc-mutex/arc-and-mutex",N],[C[91],"arc-mutex/arc",[C[90]]],["10.1.1. Layout","arc-mutex/arc-layout",[C[90],C[91]]],["10.1.2. Base Code","arc-mutex/arc-base",[C[90],C[91]]],["10.1.3. Cloning","arc-mutex/arc-clone",[C[90],C[91]]],["10.1.4. Dropping","arc-mutex/arc-drop",[C[90],C[91]]],["10.1.5. Final Code","arc-mutex/arc-final",[C[90],C[91]]],["11. FFI","ffi",N],[C[92],"beneath-std",N],["12.1. #[panic_handler]","panic-handler",[C[92]]]]},{"name":"The Rust Reference","url":"https://doc.rust-lang.org/reference/","pages":[[C[26],C[43],N],["1. Notation","notation",N],[C[93],"lexical-structure",N],["2.1. Input format","input-format",[C[93]]],["2.2. Keywords","keywords",[C[93]]],["2.3. Identifiers",C[203],[C[93]]],["2.4. Comments","comments",[C[93]]],["2.5. Whitespace","whitespace",[C[93]]],["2.6. Tokens","tokens",[C[93]]],[C[94],"macros",N],["3.1. Macros By Example","macros-by-example",[C[94]]],["3.2. Procedural Macros","procedural-macros",[C[94]]],["4. Crates and source files","crates-and-source-files",N],["5. Conditional compilation","conditional-compilation",N],[C[95],"items",N],["6.1. Modules","items/modules",[C[95]]],["6.2. Extern crates","items/extern-crates",[C[95]]],["6.3. Use declarations","items/use-declarations",[C[95]]],["6.4. Functions","items/functions",[C[95]]],["6.5. Type aliases","items/type-aliases",[C[95]]],["6.6. Structs","items/structs",[C[95]]],["6.7. Enumerations","items/enumerations",[C[95]]],["6.8. Unions","items/unions",[C[95]]],["6.9. Constant items","items/constant-items",[C[95]]],["6.10. Static items","items/static-items",[C[95]]],["6.11. Traits","items/traits",[C[95]]],["6.12. Implementations","items/implementations",[C[95]]],["6.13. External blocks","items/external-blocks",[C[95]]],["6.14. Generic parameters","items/generics",[C[95]]],["6.15. Associated Items","items/associated-items",[C[95]]],[C[96],"attributes",N],["7.1. Testing","attributes/testing",[C[96]]],["7.2. Derive","attributes/derive",[C[96]]],["7.3. Diagnostics","attributes/diagnostics",[C[96]]],["7.4. Code generation","attributes/codegen",[C[96]]],["7.5. Limits","attributes/limits",[C[96]]],["7.6. Type System","attributes/type_system",[C[96]]],[C[97],"statements-and-expressions",N],["8.1. Statements","statements",[C[97]]],[C[98],"expressions",[C[97]]],["8.2.1. Literal expressions","expressions/literal-expr",[C[97],C[98]]],["8.2.2. Path expressions","expressions/path-expr",[C[97],C[98]]],["8.2.3. Block expressions","expressions/block-expr",[C[97],C[98]]],["8.2.4. Operator expressions","expressions/operator-expr",[C[97],C[98]]],["8.2.5. Grouped expressions","expressions/grouped-expr",[C[97],C[98]]],["8.2.6. Array and index expressions","expressions/array-expr",[C[97],C[98]]],["8.2.7. Tuple and index expressions","expressions/tuple-expr",[C[97],C[98]]],["8.2.8. Struct expressions","expressions/struct-expr",[C[97],C[98]]],["8.2.9. Call expressions","expressions/call-expr",[C[97],C[98]]],["8.2.10. Method call expressions","expressions/method-call-expr",[C[97],C[98]]],["8.2.11. Field access expressions","expressions/field-expr",[C[97],C[98]]],["8.2.12. Closure expressions","expressions/closure-expr",[C[97],C[98]]],["8.2.13. Loop expressions","expressions/loop-expr",[C[97],C[98]]],["8.2.14. Range expressions","expressions/range-expr",[C[97],C[98]]],["8.2.15. If and if let expressions","expressions/if-expr",[C[97],C[98]]],["8.2.16. Match expressions","expressions/match-expr",[C[97],C[98]]],["8.2.17. Return expressions","expressions/return-expr",[C[97],C[98]]],["8.2.18. Await expressions","expressions/await-expr",[C[97],C[98]]],["9. Patterns","patterns",N],[C[99],"type-system",N],[C[100],"types",[C[99]]],["10.1.1. Boolean type","types/boolean",[C[99],C[100]]],["10.1.2. Numeric types","types/numeric",[C[99],C[100]]],["10.1.3. Textual types","types/textual",[C[99],C[100]]],["10.1.4. Never type","types/never",[C[99],C[100]]],["10.1.5. Tuple types","types/tuple",[C[99],C[100]]],["10.1.6. Array types","types/array",[C[99],C[100]]],["10.1.7. Slice types","types/slice",[C[99],C[100]]],["10.1.8. Struct types","types/struct",[C[99],C[100]]],["10.1.9. Enumerated types","types/enum",[C[99],C[100]]],["10.1.10. Union types","types/union",[C[99],C[100]]],["10.1.11. Function item types","types/function-item",[C[99],C[100]]],["10.1.12. Closure types","types/closure",[C[99],C[100]]],["10.1.13. Pointer types","types/pointer",[C[99],C[100]]],["10.1.14. Function pointer types","types/function-pointer",[C[99],C[100]]],["10.1.15. Trait object types","types/trait-object",[C[99],C[100]]],["10.1.16. Impl trait type","types/impl-trait",[C[99],C[100]]],["10.1.17. Type parameters","types/parameters",[C[99],C[100]]],["10.1.18. Inferred type","types/inferred",[C[99],C[100]]],["10.2. Dynamically Sized Types","dynamically-sized-types",[C[99]]],["10.3. Type layout","type-layout",[C[99]]],["10.4. Interior mutability","interior-mutability",[C[99]]],["10.5. Subtyping and Variance",C[101],[C[99]]],["10.6. Trait and lifetime bounds","trait-bounds",[C[99]]],["10.7. Type coercions","type-coercions",[C[99]]],["10.8. Destructors",C[102],[C[99]]],["10.9. Lifetime elision",C[103],[C[99]]],["11. Special types and traits","special-types-and-traits",N],[C[104],"names",N],["12.1. Namespaces","names/namespaces",[C[104]]],["12.2. Scopes","names/scopes",[C[104]]],["12.3. Preludes","names/preludes",[C[104]]],["12.4. Paths","paths",[C[104]]],["12.5. Name resolution","names/name-resolution",[C[104]]],["12.6. Visibility and privacy","visibility-and-privacy",[C[104]]],[C[105],"memory-model",N],["13.1. Memory allocation and lifetime","memory-allocation-and-lifetime",[C[105]]],["13.2. Variables","variables",[C[105]]],["14. Linkage","linkage",N],[C[106],"unsafety",N],["15.1. Unsafe functions","unsafe-functions",[C[106]]],["15.2. Unsafe blocks","unsafe-blocks",[C[106]]],["15.3. Behavior considered undefined","behavior-considered-undefined",[C[106]]],["15.4. Behavior not considered unsafe","behavior-not-considered-unsafe",[C[106]]],["16. Constant Evaluation","const_eval",N],["17. Application Binary Interface","abi",N],["18. The Rust runtime","runtime",N],[C[107],"appendices",N],["19.1. Macro Follow-Set Ambiguity Formal Specification","macro-ambiguity",[C[107]]],["19.2. Influences","influences",[C[107]]],["19.3. Glossary","glossary",[C[107]]]]},{"name":C[108],"url":"https://doc.rust-lang.org/unstable-book/","pages":[[C[108],"the-unstable-book",N],[C[109],"compiler-flags",N],["1.1. codegen_backend","compiler-flags/codegen-backend",[C[109]]],["1.2. control_flow_guard","compiler-flags/control-flow-guard",[C[109]]],["1.3. debug_info_for_profiling","compiler-flags/debug_info_for_profiling",[C[109]]],["1.4. emit_stack_sizes","compiler-flags/emit-stack-sizes",[C[109]]],["1.5. extern_location","compiler-flags/extern-location",[C[109]]],["1.6. instrument_coverage","compiler-flags/instrument-coverage",[C[109]]],["1.7. location_detail","compiler-flags/location-detail",[C[109]]],["1.8. move_size_limit","compiler-flags/move-size-limit",[C[109]]],["1.9. no_unique_section_names","compiler-flags/no-unique-section-names",[C[109]]],["1.10. profile","compiler-flags/profile",[C[109]]],["1.11. profile_sample_use","compiler-flags/profile_sample_use",[C[109]]],["1.12. remap_cwd_prefix","compiler-flags/remap-cwd-prefix",[C[109]]],["1.13. report_time","compiler-flags/report-time",[C[109]]],["1.14. sanitizer","compiler-flags/sanitizer",[C[109]]],["1.15. self_profile","compiler-flags/self-profile",[C[109]]],["1.16. self_profile_events","compiler-flags/self-profile-events",[C[109]]],["1.17. source_based_code_coverage","compiler-flags/source-based-code-coverage",[C[109]]],["1.18. src_hash_algorithm","compiler-flags/src-hash-algorithm",[C[109]]],["1.19. temps_dir","compiler-flags/temps-dir",[C[109]]],["1.20. tls_model","compiler-flags/tls-model",[C[109]]],["1.21. unsound_mir_opts","compiler-flags/unsound-mir-opts",[C[109]]],[C[110],"language-features",N],["2.1. aarch64_target_feature","language-features/aarch64-target-feature",[C[110]]],["2.2. abi_amdgpu_kernel","language-features/abi-amdgpu-kernel",[C[110]]],["2.3. abi_avr_interrupt","language-features/abi-avr-interrupt",[C[110]]],["2.4. abi_c_cmse_nonsecure_call","language-features/abi-c-cmse-nonsecure-call",[C[110]]],["2.5. abi_efiapi","language-features/abi-efiapi",[C[110]]],["2.6. abi_msp430_interrupt","language-features/abi-msp430-interrupt",[C[110]]],["2.7. abi_ptx","language-features/abi-ptx",[C[110]]],["2.8. abi_thiscall","language-features/abi-thiscall",[C[110]]],["2.9. abi_unadjusted","language-features/abi-unadjusted",[C[110]]],["2.10. abi_vectorcall","language-features/abi-vectorcall",[C[110]]],["2.11. abi_x86_interrupt","language-features/abi-x86-interrupt",[C[110]]],["2.12. adt_const_params","language-features/adt-const-params",[C[110]]],["2.13. adx_target_feature","language-features/adx-target-feature",[C[110]]],["2.14. alloc_error_handler","language-features/alloc-error-handler",[C[110]]],["2.15. allocator_internals","language-features/allocator-internals",[C[110]]],["2.16. allow_fail","language-features/allow-fail",[C[110]]],["2.17. allow_internal_unsafe","language-features/allow-internal-unsafe",[C[110]]],["2.18. allow_internal_unstable","language-features/allow-internal-unstable",[C[110]]],["2.19. arbitrary_enum_discriminant","language-features/arbitrary-enum-discriminant",[C[110]]],["2.20. arbitrary_self_types","language-features/arbitrary-self-types",[C[110]]],["2.21. arm_target_feature","language-features/arm-target-feature",[C[110]]],["2.22. asm_const","language-features/asm-const",[C[110]]],["2.23. asm_experimental_arch","language-features/asm-experimental-arch",[C[110]]],["2.24. asm_sym","language-features/asm-sym",[C[110]]],["2.25. associated_type_bounds","language-features/associated-type-bounds",[C[110]]],["2.26. associated_type_defaults","language-features/associated-type-defaults",[C[110]]],["2.27. async_closure","language-features/async-closure",[C[110]]],["2.28. auto_traits","language-features/auto-traits",[C[110]]],["2.29. avx512_target_feature","language-features/avx512-target-feature",[C[110]]],["2.30. box_patterns","language-features/box-patterns",[C[110]]],["2.31. box_syntax","language-features/box-syntax",[C[110]]],["2.32. bpf_target_feature","language-features/bpf-target-feature",[C[110]]],["2.33. c_unwind","language-features/c-unwind",[C[110]]],["2.34. c_variadic","language-features/c-variadic",[C[110]]],["2.35. capture_disjoint_fields","language-features/capture-disjoint-fields",[C[110]]],["2.36. cfg_panic","language-features/cfg-panic",[C[110]]],["2.37. cfg_sanitize","language-features/cfg-sanitize",[C[110]]],["2.38. cfg_target_abi","language-features/cfg-target-abi",[C[110]]],["2.39. cfg_target_has_atomic","language-features/cfg-target-has-atomic",[C[110]]],["2.40. cfg_target_thread_local","language-features/cfg-target-thread-local",[C[110]]],["2.41. cfg_version","language-features/cfg-version",[C[110]]],["2.42. closure_track_caller","language-features/closure-track-caller",[C[110]]],["2.43. cmpxchg16b_target_feature","language-features/cmpxchg16b-target-feature",[C[110]]],["2.44. cmse_nonsecure_entry","language-features/cmse-nonsecure-entry",[C[110]]],["2.45. compiler_builtins","language-features/compiler-builtins",[C[110]]],["2.46. const_async_blocks","language-features/const-async-blocks",[C[110]]],["2.47. const_eval_limit","language-features/const-eval-limit",[C[110]]],["2.48. const_extern_fn","language-features/const-extern-fn",[C[110]]],["2.49. const_fn_floating_point_arithmetic","language-features/const-fn-floating-point-arithmetic",[C[110]]],["2.50. const_fn_fn_ptr_basics","language-features/const-fn-fn-ptr-basics",[C[110]]],["2.51. const_fn_trait_bound","language-features/const-fn-trait-bound",[C[110]]],["2.52. const_for","language-features/const-for",[C[110]]],["2.53. const_generics_defaults","language-features/const-generics-defaults",[C[110]]],["2.54. const_impl_trait","language-features/const-impl-trait",[C[110]]],["2.55. const_mut_refs","language-features/const-mut-refs",[C[110]]],["2.56. const_precise_live_drops","language-features/const-precise-live-drops",[C[110]]],["2.57. const_refs_to_cell","language-features/const-refs-to-cell",[C[110]]],["2.58. const_trait_impl","language-features/const-trait-impl",[C[110]]],["2.59. const_try","language-features/const-try",[C[110]]],["2.60. crate_visibility_modifier","language-features/crate-visibility-modifier",[C[110]]],["2.61. custom_inner_attributes","language-features/custom-inner-attributes",[C[110]]],["2.62. custom_test_frameworks","language-features/custom-test-frameworks",[C[110]]],["2.63. decl_macro","language-features/decl-macro",[C[110]]],["2.64. default_alloc_error_handler","language-features/default-alloc-error-handler",[C[110]]],["2.65. default_type_parameter_fallback","language-features/default-type-parameter-fallback",[C[110]]],["2.66. derive_default_enum","language-features/derive-default-enum",[C[110]]],["2.67. destructuring_assignment","language-features/destructuring-assignment",[C[110]]],["2.68. doc_auto_cfg","language-features/doc-auto-cfg",[C[110]]],["2.69. doc_cfg","language-features/doc-cfg",[C[110]]],["2.70. doc_cfg_hide","language-features/doc-cfg-hide",[C[110]]],["2.71. doc_masked","language-features/doc-masked",[C[110]]],["2.72. doc_notable_trait","language-features/doc-notable-trait",[C[110]]],["2.73. dropck_eyepatch","language-features/dropck-eyepatch",[C[110]]],["2.74. ermsb_target_feature","language-features/ermsb-target-feature",[C[110]]],["2.75. exclusive_range_pattern","language-features/exclusive-range-pattern",[C[110]]],["2.76. exhaustive_patterns","language-features/exhaustive-patterns",[C[110]]],["2.77. explicit_generic_args_with_impl_trait","language-features/explicit-generic-args-with-impl-trait",[C[110]]],["2.78. extern_types","language-features/extern-types",[C[110]]],["2.79. f16c_target_feature","language-features/f16c-target-feature",[C[110]]],["2.80. ffi_const","language-features/ffi-const",[C[110]]],["2.81. ffi_pure","language-features/ffi-pure",[C[110]]],["2.82. ffi_returns_twice","language-features/ffi-returns-twice",[C[110]]],["2.83. fn_align","language-features/fn-align",[C[110]]],["2.84. fundamental","language-features/fundamental",[C[110]]],["2.85. generators","language-features/generators",[C[110]]],["2.86. generic_arg_infer","language-features/generic-arg-infer",[C[110]]],["2.87. generic_associated_types","language-features/generic-associated-types",[C[110]]],["2.88. generic_const_exprs","language-features/generic-const-exprs",[C[110]]],["2.89. half_open_range_patterns","language-features/half-open-range-patterns",[C[110]]],["2.90. hexagon_target_feature","language-features/hexagon-target-feature",[C[110]]],["2.91. if_let_guard","language-features/if-let-guard",[C[110]]],["2.92. imported_main","language-features/imported-main",[C[110]]],["2.93. in_band_lifetimes","language-features/in-band-lifetimes",[C[110]]],["2.94. infer_static_outlives_requirements","language-features/infer-static-outlives-requirements",[C[110]]],["2.95. inherent_associated_types","language-features/inherent-associated-types",[C[110]]],["2.96. inline_const","language-features/inline-const",[C[110]]],["2.97. inline_const_pat","language-features/inline-const-pat",[C[110]]],["2.98. intra_doc_pointers","language-features/intra-doc-pointers",[C[110]]],["2.99. intrinsics","language-features/intrinsics",[C[110]]],["2.100. isa_attribute","language-features/isa-attribute",[C[110]]],["2.101. label_break_value","language-features/label-break-value",[C[110]]],["2.102. lang_items","language-features/lang-items",[C[110]]],["2.103. large_assignments","language-features/large-assignments",[C[110]]],["2.104. let_chains","language-features/let-chains",[C[110]]],["2.105. let_else","language-features/let-else",[C[110]]],["2.106. link_cfg","language-features/link-cfg",[C[110]]],["2.107. link_llvm_intrinsics","language-features/link-llvm-intrinsics",[C[110]]],["2.108. linkage","language-features/linkage",[C[110]]],["2.109. lint_reasons","language-features/lint-reasons",[C[110]]],["2.110. marker_trait_attr","language-features/marker-trait-attr",[C[110]]],["2.111. min_specialization","language-features/min-specialization",[C[110]]],["2.112. mips_target_feature","language-features/mips-target-feature",[C[110]]],["2.113. more_qualified_paths","language-features/more-qualified-paths",[C[110]]],["2.114. movbe_target_feature","language-features/movbe-target-feature",[C[110]]],["2.115. must_not_suspend","language-features/must-not-suspend",[C[110]]],["2.116. naked_functions","language-features/naked-functions",[C[110]]],["2.117. native_link_modifiers","language-features/native-link-modifiers",[C[110]]],["2.118. native_link_modifiers_as_needed","language-features/native-link-modifiers-as-needed",[C[110]]],["2.119. native_link_modifiers_bundle","language-features/native-link-modifiers-bundle",[C[110]]],["2.120. native_link_modifiers_verbatim","language-features/native-link-modifiers-verbatim",[C[110]]],["2.121. native_link_modifiers_whole_archive","language-features/native-link-modifiers-whole-archive",[C[110]]],["2.122. needs_panic_runtime","language-features/needs-panic-runtime",[C[110]]],["2.123. negative_impls","language-features/negative-impls",[C[110]]],["2.124. never_type","language-features/never-type",[C[110]]],["2.125. never_type_fallback","language-features/never-type-fallback",[C[110]]],["2.126. nll","language-features/nll",[C[110]]],["2.127. no_core","language-features/no-core",[C[110]]],["2.128. no_coverage","language-features/no-coverage",[C[110]]],["2.129. no_niche","language-features/no-niche",[C[110]]],["2.130. no_sanitize","language-features/no-sanitize",[C[110]]],["2.131. non_exhaustive_omitted_patterns_lint","language-features/non-exhaustive-omitted-patterns-lint",[C[110]]],["2.132. object_safe_for_dispatch","language-features/object-safe-for-dispatch",[C[110]]],["2.133. omit_gdb_pretty_printer_section","language-features/omit-gdb-pretty-printer-section",[C[110]]],["2.134. optimize_attribute","language-features/optimize-attribute",[C[110]]],["2.135. panic_runtime","language-features/panic-runtime",[C[110]]],["2.136. platform_intrinsics","language-features/platform-intrinsics",[C[110]]],["2.137. plugin","language-features/plugin",[C[110]]],["2.138. powerpc_target_feature","language-features/powerpc-target-feature",[C[110]]],["2.139. precise_pointer_size_matching","language-features/precise-pointer-size-matching",[C[110]]],["2.140. prelude_import","language-features/prelude-import",[C[110]]],["2.141. proc_macro_hygiene","language-features/proc-macro-hygiene",[C[110]]],["2.142. profiler_runtime","language-features/profiler-runtime",[C[110]]],["2.143. raw_dylib","language-features/raw-dylib",[C[110]]],["2.144. raw_ref_op","language-features/raw-ref-op",[C[110]]],["2.145. register_attr","language-features/register-attr",[C[110]]],["2.146. register_tool","language-features/register-tool",[C[110]]],["2.147. repr_simd","language-features/repr-simd",[C[110]]],["2.148. repr128","language-features/repr128",[C[110]]],["2.149. riscv_target_feature","language-features/riscv-target-feature",[C[110]]],["2.150. rtm_target_feature","language-features/rtm-target-feature",[C[110]]],["2.151. rustc_allow_const_fn_unstable","language-features/rustc-allow-const-fn-unstable",[C[110]]],["2.152. rustc_attrs","language-features/rustc-attrs",[C[110]]],["2.153. rustc_private","language-features/rustc-private",[C[110]]],["2.154. rustdoc_internals","language-features/rustdoc-internals",[C[110]]],["2.155. simd_ffi","language-features/simd-ffi",[C[110]]],["2.156. specialization","language-features/specialization",[C[110]]],["2.157. sse4a_target_feature","language-features/sse4a-target-feature",[C[110]]],["2.158. staged_api","language-features/staged-api",[C[110]]],["2.159. start","language-features/start",[C[110]]],["2.160. static_nobundle","language-features/static-nobundle",[C[110]]],["2.161. stmt_expr_attributes","language-features/stmt-expr-attributes",[C[110]]],["2.162. structural_match","language-features/structural-match",[C[110]]],["2.163. target_feature_11","language-features/target-feature-11",[C[110]]],["2.164. tbm_target_feature","language-features/tbm-target-feature",[C[110]]],["2.165. test_2018_feature","language-features/test-2018-feature",[C[110]]],["2.166. thread_local","language-features/thread-local",[C[110]]],["2.167. trait_alias","language-features/trait-alias",[C[110]]],["2.168. trait_upcasting","language-features/trait-upcasting",[C[110]]],["2.169. transparent_unions","language-features/transparent-unions",[C[110]]],["2.170. trivial_bounds","language-features/trivial-bounds",[C[110]]],["2.171. try_blocks","language-features/try-blocks",[C[110]]],["2.172. type_alias_impl_trait","language-features/type-alias-impl-trait",[C[110]]],["2.173. type_ascription","language-features/type-ascription",[C[110]]],["2.174. type_changing_struct_update","language-features/type-changing-struct-update",[C[110]]],["2.175. unboxed_closures","language-features/unboxed-closures",[C[110]]],["2.176. unsized_fn_params","language-features/unsized-fn-params",[C[110]]],["2.177. unsized_locals","language-features/unsized-locals",[C[110]]],["2.178. unsized_tuple_coercion","language-features/unsized-tuple-coercion",[C[110]]],["2.179. untagged_unions","language-features/untagged-unions",[C[110]]],["2.180. wasm_abi","language-features/wasm-abi",[C[110]]],["2.181. wasm_target_feature","language-features/wasm-target-feature",[C[110]]],[C[111],"library-features",N],["3.1. alloc_error_hook","library-features/alloc-error-hook",[C[111]]],["3.2. alloc_internals","library-features/alloc-internals",[C[111]]],["3.3. alloc_layout_extra","library-features/alloc-layout-extra",[C[111]]],["3.4. allocator_api","library-features/allocator-api",[C[111]]],["3.5. arc_new_cyclic","library-features/arc-new-cyclic",[C[111]]],["3.6. array_chunks","library-features/array-chunks",[C[111]]],["3.7. array_error_internals","library-features/array-error-internals",[C[111]]],["3.8. array_from_fn","library-features/array-from-fn",[C[111]]],["3.9. array_methods","library-features/array-methods",[C[111]]],["3.10. array_windows","library-features/array-windows",[C[111]]],["3.11. array_zip","library-features/array-zip",[C[111]]],["3.12. as_array_of_cells","library-features/as-array-of-cells",[C[111]]],["3.13. asm","library-features/asm",[C[111]]],["3.14. assert_matches","library-features/assert-matches",[C[111]]],["3.15. async_stream","library-features/async-stream",[C[111]]],["3.16. atomic_from_mut","library-features/atomic-from-mut",[C[111]]],["3.17. atomic_mut_ptr","library-features/atomic-mut-ptr",[C[111]]],["3.18. available_parallelism","library-features/available-parallelism",[C[111]]],["3.19. backtrace","library-features/backtrace",[C[111]]],["3.20. backtrace_frames","library-features/backtrace-frames",[C[111]]],["3.21. bench_black_box","library-features/bench-black-box",[C[111]]],["3.22. bigint_helper_methods","library-features/bigint-helper-methods",[C[111]]],["3.23. binary_heap_as_slice","library-features/binary-heap-as-slice",[C[111]]],["3.24. binary_heap_drain_sorted","library-features/binary-heap-drain-sorted",[C[111]]],["3.25. binary_heap_into_iter_sorted","library-features/binary-heap-into-iter-sorted",[C[111]]],["3.26. binary_heap_retain","library-features/binary-heap-retain",[C[111]]],["3.27. bool_to_option","library-features/bool-to-option",[C[111]]],["3.28. bound_as_ref","library-features/bound-as-ref",[C[111]]],["3.29. bound_map","library-features/bound-map",[C[111]]],["3.30. box_into_boxed_slice","library-features/box-into-boxed-slice",[C[111]]],["3.31. box_into_inner","library-features/box-into-inner",[C[111]]],["3.32. box_into_pin","library-features/box-into-pin",[C[111]]],["3.33. btree_drain_filter","library-features/btree-drain-filter",[C[111]]],["3.34. buf_read_has_data_left","library-features/buf-read-has-data-left",[C[111]]],["3.35. build_hasher_simple_hash_one","library-features/build-hasher-simple-hash-one",[C[111]]],["3.36. c_size_t","library-features/c-size-t",[C[111]]],["3.37. c_void_variant","library-features/c-void-variant",[C[111]]],["3.38. can_vector","library-features/can-vector",[C[111]]],["3.39. cell_filter_map","library-features/cell-filter-map",[C[111]]],["3.40. cell_leak","library-features/cell-leak",[C[111]]],["3.41. cell_update","library-features/cell-update",[C[111]]],["3.42. cfg_accessible","library-features/cfg-accessible",[C[111]]],["3.43. cfg_eval","library-features/cfg-eval",[C[111]]],["3.44. char_error_internals","library-features/char-error-internals",[C[111]]],["3.45. char_indices_offset","library-features/char-indices-offset",[C[111]]],["3.46. char_internals","library-features/char-internals",[C[111]]],["3.47. coerce_unsized","library-features/coerce-unsized",[C[111]]],["3.48. concat_idents","library-features/concat-idents",[C[111]]],["3.49. const_align_of_val","library-features/const-align-of-val",[C[111]]],["3.50. const_align_of_val_raw","library-features/const-align-of-val-raw",[C[111]]],["3.51. const_align_offset","library-features/const-align-offset",[C[111]]],["3.52. const_alloc_layout","library-features/const-alloc-layout",[C[111]]],["3.53. const_arguments_as_str","library-features/const-arguments-as-str",[C[111]]],["3.54. const_array_from_ref","library-features/const-array-from-ref",[C[111]]],["3.55. const_assert_type","library-features/const-assert-type",[C[111]]],["3.56. const_assume","library-features/const-assume",[C[111]]],["3.57. const_bigint_helper_methods","library-features/const-bigint-helper-methods",[C[111]]],["3.58. const_btree_new","library-features/const-btree-new",[C[111]]],["3.59. const_caller_location","library-features/const-caller-location",[C[111]]],["3.60. const_cell_into_inner","library-features/const-cell-into-inner",[C[111]]],["3.61. const_char_convert","library-features/const-char-convert",[C[111]]],["3.62. const_convert","library-features/const-convert",[C[111]]],["3.63. const_cow_is_borrowed","library-features/const-cow-is-borrowed",[C[111]]],["3.64. const_cstr_unchecked","library-features/const-cstr-unchecked",[C[111]]],["3.65. const_default_impls","library-features/const-default-impls",[C[111]]],["3.66. const_deref","library-features/const-deref",[C[111]]],["3.67. const_discriminant","library-features/const-discriminant",[C[111]]],["3.68. const_eval_select","library-features/const-eval-select",[C[111]]],["3.69. const_float_bits_conv","library-features/const-float-bits-conv",[C[111]]],["3.70. const_float_classify","library-features/const-float-classify",[C[111]]],["3.71. const_fmt_arguments_new","library-features/const-fmt-arguments-new",[C[111]]],["3.72. const_format_args","library-features/const-format-args",[C[111]]],["3.73. const_heap","library-features/const-heap",[C[111]]],["3.74. const_inherent_unchecked_arith","library-features/const-inherent-unchecked-arith",[C[111]]],["3.75. const_int_unchecked_arith","library-features/const-int-unchecked-arith",[C[111]]],["3.76. const_intrinsic_copy","library-features/const-intrinsic-copy",[C[111]]],["3.77. const_intrinsic_forget","library-features/const-intrinsic-forget",[C[111]]],["3.78. const_intrinsic_raw_eq","library-features/const-intrinsic-raw-eq",[C[111]]],["3.79. const_io_structs","library-features/const-io-structs",[C[111]]],["3.80. const_ip","library-features/const-ip",[C[111]]],["3.81. const_ipv4","library-features/const-ipv4",[C[111]]],["3.82. const_ipv6","library-features/const-ipv6",[C[111]]],["3.83. const_likely","library-features/const-likely",[C[111]]],["3.84. const_maybe_uninit_as_ptr","library-features/const-maybe-uninit-as-ptr",[C[111]]],["3.85. const_maybe_uninit_assume_init","library-features/const-maybe-uninit-assume-init",[C[111]]],["3.86. const_maybe_uninit_write","library-features/const-maybe-uninit-write",[C[111]]],["3.87. const_nonnull_slice_from_raw_parts","library-features/const-nonnull-slice-from-raw-parts",[C[111]]],["3.88. const_num_from_num","library-features/const-num-from-num",[C[111]]],["3.89. const_ops","library-features/const-ops",[C[111]]],["3.90. const_option","library-features/const-option",[C[111]]],["3.91. const_pin","library-features/const-pin",[C[111]]],["3.92. const_pref_align_of","library-features/const-pref-align-of",[C[111]]],["3.93. const_ptr_is_null","library-features/const-ptr-is-null",[C[111]]],["3.94. const_ptr_offset","library-features/const-ptr-offset",[C[111]]],["3.95. const_ptr_offset_from","library-features/const-ptr-offset-from",[C[111]]],["3.96. const_ptr_read","library-features/const-ptr-read",[C[111]]],["3.97. const_ptr_write","library-features/const-ptr-write",[C[111]]],["3.98. const_raw_ptr_comparison","library-features/const-raw-ptr-comparison",[C[111]]],["3.99. const_replace","library-features/const-replace",[C[111]]],["3.100. const_result","library-features/const-result",[C[111]]],["3.101. const_size_of_val","library-features/const-size-of-val",[C[111]]],["3.102. const_size_of_val_raw","library-features/const-size-of-val-raw",[C[111]]],["3.103. const_slice_first_last","library-features/const-slice-first-last",[C[111]]],["3.104. const_slice_from_raw_parts","library-features/const-slice-from-raw-parts",[C[111]]],["3.105. const_slice_from_ref","library-features/const-slice-from-ref",[C[111]]],["3.106. const_slice_ptr_len","library-features/const-slice-ptr-len",[C[111]]],["3.107. const_socketaddr","library-features/const-socketaddr",[C[111]]],["3.108. const_str_from_utf8","library-features/const-str-from-utf8",[C[111]]],["3.109. const_str_from_utf8_unchecked_mut","library-features/const-str-from-utf8-unchecked-mut",[C[111]]],["3.110. const_swap","library-features/const-swap",[C[111]]],["3.111. const_transmute_copy","library-features/const-transmute-copy",[C[111]]],["3.112. const_type_id","library-features/const-type-id",[C[111]]],["3.113. const_type_name","library-features/const-type-name",[C[111]]],["3.114. const_unsafecell_get_mut","library-features/const-unsafecell-get-mut",[C[111]]],["3.115. container_error_extra","library-features/container-error-extra",[C[111]]],["3.116. control_flow_enum","library-features/control-flow-enum",[C[111]]],["3.117. convert_float_to_int","library-features/convert-float-to-int",[C[111]]],["3.118. core_intrinsics","library-features/core-intrinsics",[C[111]]],["3.119. core_panic","library-features/core-panic",[C[111]]],["3.120. core_private_bignum","library-features/core-private-bignum",[C[111]]],["3.121. core_private_diy_float","library-features/core-private-diy-float",[C[111]]],["3.122. cow_is_borrowed","library-features/cow-is-borrowed",[C[111]]],["3.123. cursor_remaining","library-features/cursor-remaining",[C[111]]],["3.124. deadline_api","library-features/deadline-api",[C[111]]],["3.125. dec2flt","library-features/dec2flt",[C[111]]],["3.126. default_free_fn","library-features/default-free-fn",[C[111]]],["3.127. derive_clone_copy","library-features/derive-clone-copy",[C[111]]],["3.128. derive_eq","library-features/derive-eq",[C[111]]],["3.129. dir_entry_ext2","library-features/dir-entry-ext2",[C[111]]],["3.130. discriminant_kind","library-features/discriminant-kind",[C[111]]],["3.131. dispatch_from_dyn","library-features/dispatch-from-dyn",[C[111]]],["3.132. div_duration","library-features/div-duration",[C[111]]],["3.133. drain_filter","library-features/drain-filter",[C[111]]],["3.134. duration_checked_float","library-features/duration-checked-float",[C[111]]],["3.135. duration_constants","library-features/duration-constants",[C[111]]],["3.136. duration_consts_float","library-features/duration-consts-float",[C[111]]],["3.137. edition_panic","library-features/edition-panic",[C[111]]],["3.138. entry_insert","library-features/entry-insert",[C[111]]],["3.139. error_iter","library-features/error-iter",[C[111]]],["3.140. error_type_id","library-features/error-type-id",[C[111]]],["3.141. exact_size_is_empty","library-features/exact-size-is-empty",[C[111]]],["3.142. exit_status_error","library-features/exit-status-error",[C[111]]],["3.143. extend_one","library-features/extend-one",[C[111]]],["3.144. fd","library-features/fd",[C[111]]],["3.145. fd_read","library-features/fd-read",[C[111]]],["3.146. float_minimum_maximum","library-features/float-minimum-maximum",[C[111]]],["3.147. flt2dec","library-features/flt2dec",[C[111]]],["3.148. fmt_internals","library-features/fmt-internals",[C[111]]],["3.149. fn_traits","library-features/fn-traits",[C[111]]],["3.150. forget_unsized","library-features/forget-unsized",[C[111]]],["3.151. format_args_nl","library-features/format-args-nl",[C[111]]],["3.152. future_poll_fn","library-features/future-poll-fn",[C[111]]],["3.153. gen_future","library-features/gen-future",[C[111]]],["3.154. generator_trait","library-features/generator-trait",[C[111]]],["3.155. get_mut_unchecked","library-features/get-mut-unchecked",[C[111]]],["3.156. global_asm","library-features/global-asm",[C[111]]],["3.157. hash_drain_filter","library-features/hash-drain-filter",[C[111]]],["3.158. hash_raw_entry","library-features/hash-raw-entry",[C[111]]],["3.159. hash_set_entry","library-features/hash-set-entry",[C[111]]],["3.160. hashmap_internals","library-features/hashmap-internals",[C[111]]],["3.161. inherent_ascii_escape","library-features/inherent-ascii-escape",[C[111]]],["3.162. inplace_iteration","library-features/inplace-iteration",[C[111]]],["3.163. int_abs_diff","library-features/int-abs-diff",[C[111]]],["3.164. int_error_internals","library-features/int-error-internals",[C[111]]],["3.165. int_log","library-features/int-log",[C[111]]],["3.166. int_roundings","library-features/int-roundings",[C[111]]],["3.167. integer_atomics","library-features/integer-atomics",[C[111]]],["3.168. internal_output_capture","library-features/internal-output-capture",[C[111]]],["3.169. into_future","library-features/into-future",[C[111]]],["3.170. io_error_more","library-features/io-error-more",[C[111]]],["3.171. io_error_uncategorized","library-features/io-error-uncategorized",[C[111]]],["3.172. io_read_to_string","library-features/io-read-to-string",[C[111]]],["3.173. io_safety","library-features/io-safety",[C[111]]],["3.174. io_slice_advance","library-features/io-slice-advance",[C[111]]],["3.175. ip","library-features/ip",[C[111]]],["3.176. is_sorted","library-features/is-sorted",[C[111]]],["3.177. iter_advance_by","library-features/iter-advance-by",[C[111]]],["3.178. iter_intersperse","library-features/iter-intersperse",[C[111]]],["3.179. iter_is_partitioned","library-features/iter-is-partitioned",[C[111]]],["3.180. iter_order_by","library-features/iter-order-by",[C[111]]],["3.181. iter_partition_in_place","library-features/iter-partition-in-place",[C[111]]],["3.182. iter_zip","library-features/iter-zip",[C[111]]],["3.183. layout_for_ptr","library-features/layout-for-ptr",[C[111]]],["3.184. liballoc_internals","library-features/liballoc-internals",[C[111]]],["3.185. libstd_sys_internals","library-features/libstd-sys-internals",[C[111]]],["3.186. libstd_thread_internals","library-features/libstd-thread-internals",[C[111]]],["3.187. linked_list_cursors","library-features/linked-list-cursors",[C[111]]],["3.188. linked_list_remove","library-features/linked-list-remove",[C[111]]],["3.189. linux_pidfd","library-features/linux-pidfd",[C[111]]],["3.190. llvm_asm","library-features/llvm-asm",[C[111]]],["3.191. log_syntax","library-features/log-syntax",[C[111]]],["3.192. map_entry_replace","library-features/map-entry-replace",[C[111]]],["3.193. map_first_last","library-features/map-first-last",[C[111]]],["3.194. map_try_insert","library-features/map-try-insert",[C[111]]],["3.195. maybe_uninit_array_assume_init","library-features/maybe-uninit-array-assume-init",[C[111]]],["3.196. maybe_uninit_extra","library-features/maybe-uninit-extra",[C[111]]],["3.197. maybe_uninit_slice","library-features/maybe-uninit-slice",[C[111]]],["3.198. maybe_uninit_uninit_array","library-features/maybe-uninit-uninit-array",[C[111]]],["3.199. maybe_uninit_write_slice","library-features/maybe-uninit-write-slice",[C[111]]],["3.200. mixed_integer_ops","library-features/mixed-integer-ops",[C[111]]],["3.201. mutex_unlock","library-features/mutex-unlock",[C[111]]],["3.202. new_uninit","library-features/new-uninit",[C[111]]],["3.203. nonnull_slice_from_raw_parts","library-features/nonnull-slice-from-raw-parts",[C[111]]],["3.204. nonzero_is_power_of_two","library-features/nonzero-is-power-of-two",[C[111]]],["3.205. nonzero_ops","library-features/nonzero-ops",[C[111]]],["3.206. numfmt","library-features/numfmt",[C[111]]],["3.207. once_cell","library-features/once-cell",[C[111]]],["3.208. option_get_or_insert_default","library-features/option-get-or-insert-default",[C[111]]],["3.209. option_result_contains","library-features/option-result-contains",[C[111]]],["3.210. option_zip","library-features/option-zip",[C[111]]],["3.211. panic_abort","library-features/panic-abort",[C[111]]],["3.212. panic_always_abort","library-features/panic-always-abort",[C[111]]],["3.213. panic_info_message","library-features/panic-info-message",[C[111]]],["3.214. panic_internals","library-features/panic-internals",[C[111]]],["3.215. panic_unwind","library-features/panic-unwind",[C[111]]],["3.216. path_file_prefix","library-features/path-file-prefix",[C[111]]],["3.217. path_try_exists","library-features/path-try-exists",[C[111]]],["3.218. pattern","library-features/pattern",[C[111]]],["3.219. peer_credentials_unix_socket","library-features/peer-credentials-unix-socket",[C[111]]],["3.220. pin_deref_mut","library-features/pin-deref-mut",[C[111]]],["3.221. pin_static_ref","library-features/pin-static-ref",[C[111]]],["3.222. poll_ready","library-features/poll-ready",[C[111]]],["3.223. print_internals","library-features/print-internals",[C[111]]],["3.224. proc_macro_def_site","library-features/proc-macro-def-site",[C[111]]],["3.225. proc_macro_diagnostic","library-features/proc-macro-diagnostic",[C[111]]],["3.226. proc_macro_expand","library-features/proc-macro-expand",[C[111]]],["3.227. proc_macro_internals","library-features/proc-macro-internals",[C[111]]],["3.228. proc_macro_quote","library-features/proc-macro-quote",[C[111]]],["3.229. proc_macro_span","library-features/proc-macro-span",[C[111]]],["3.230. proc_macro_span_shrink","library-features/proc-macro-span-shrink",[C[111]]],["3.231. proc_macro_tracked_env","library-features/proc-macro-tracked-env",[C[111]]],["3.232. process_exitcode_placeholder","library-features/process-exitcode-placeholder",[C[111]]],["3.233. process_internals","library-features/process-internals",[C[111]]],["3.234. profiler_runtime_lib","library-features/profiler-runtime-lib",[C[111]]],["3.235. ptr_as_uninit","library-features/ptr-as-uninit",[C[111]]],["3.236. ptr_internals","library-features/ptr-internals",[C[111]]],["3.237. ptr_metadata","library-features/ptr-metadata",[C[111]]],["3.238. raw_os_nonzero","library-features/raw-os-nonzero",[C[111]]],["3.239. raw_vec_internals","library-features/raw-vec-internals",[C[111]]],["3.240. read_initializer","library-features/read-initializer",[C[111]]],["3.241. ready_macro","library-features/ready-macro",[C[111]]],["3.242. receiver_trait","library-features/receiver-trait",[C[111]]],["3.243. restricted_std","library-features/restricted-std",[C[111]]],["3.244. result_cloned","library-features/result-cloned",[C[111]]],["3.245. result_contains_err","library-features/result-contains-err",[C[111]]],["3.246. result_copied","library-features/result-copied",[C[111]]],["3.247. result_flattening","library-features/result-flattening",[C[111]]],["3.248. result_into_ok_or_err","library-features/result-into-ok-or-err",[C[111]]],["3.249. rt","library-features/rt",[C[111]]],["3.250. saturating_int_impl","library-features/saturating-int-impl",[C[111]]],["3.251. sealed","library-features/sealed",[C[111]]],["3.252. seek_stream_len","library-features/seek-stream-len",[C[111]]],["3.253. set_ptr_value","library-features/set-ptr-value",[C[111]]],["3.254. setgroups","library-features/setgroups",[C[111]]],["3.255. sgx_platform","library-features/sgx-platform",[C[111]]],["3.256. slice_as_chunks","library-features/slice-as-chunks",[C[111]]],["3.257. slice_concat_ext","library-features/slice-concat-ext",[C[111]]],["3.258. slice_concat_trait","library-features/slice-concat-trait",[C[111]]],["3.259. slice_group_by","library-features/slice-group-by",[C[111]]],["3.260. slice_index_methods","library-features/slice-index-methods",[C[111]]],["3.261. slice_internals","library-features/slice-internals",[C[111]]],["3.262. slice_partition_at_index","library-features/slice-partition-at-index",[C[111]]],["3.263. slice_partition_dedup","library-features/slice-partition-dedup",[C[111]]],["3.264. slice_pattern","library-features/slice-pattern",[C[111]]],["3.265. slice_ptr_get","library-features/slice-ptr-get",[C[111]]],["3.266. slice_ptr_len","library-features/slice-ptr-len",[C[111]]],["3.267. slice_range","library-features/slice-range",[C[111]]],["3.268. slice_split_at_unchecked","library-features/slice-split-at-unchecked",[C[111]]],["3.269. slice_swap_unchecked","library-features/slice-swap-unchecked",[C[111]]],["3.270. solid_ext","library-features/solid-ext",[C[111]]],["3.271. sort_internals","library-features/sort-internals",[C[111]]],["3.272. split_array","library-features/split-array",[C[111]]],["3.273. std_internals","library-features/std-internals",[C[111]]],["3.274. stdin_forwarders","library-features/stdin-forwarders",[C[111]]],["3.275. stdio_locked","library-features/stdio-locked",[C[111]]],["3.276. stdsimd","library-features/stdsimd",[C[111]]],["3.277. step_trait","library-features/step-trait",[C[111]]],["3.278. str_internals","library-features/str-internals",[C[111]]],["3.279. str_split_as_str","library-features/str-split-as-str",[C[111]]],["3.280. str_split_inclusive_as_str","library-features/str-split-inclusive-as-str",[C[111]]],["3.281. str_split_whitespace_as_str","library-features/str-split-whitespace-as-str",[C[111]]],["3.282. stream_from_iter","library-features/stream-from-iter",[C[111]]],["3.283. string_extend_from_within","library-features/string-extend-from-within",[C[111]]],["3.284. string_remove_matches","library-features/string-remove-matches",[C[111]]],["3.285. tcp_linger","library-features/tcp-linger",[C[111]]],["3.286. tcplistener_into_incoming","library-features/tcplistener-into-incoming",[C[111]]],["3.287. termination_trait_lib","library-features/termination-trait-lib",[C[111]]],["3.288. test","library-features/test",[C[111]]],["3.289. thread_id_value","library-features/thread-id-value",[C[111]]],["3.290. thread_is_running","library-features/thread-is-running",[C[111]]],["3.291. thread_local_const_init","library-features/thread-local-const-init",[C[111]]],["3.292. thread_local_internals","library-features/thread-local-internals",[C[111]]],["3.293. thread_spawn_unchecked","library-features/thread-spawn-unchecked",[C[111]]],["3.294. toowned_clone_into","library-features/toowned-clone-into",[C[111]]],["3.295. total_cmp","library-features/total-cmp",[C[111]]],["3.296. trace_macros","library-features/trace-macros",[C[111]]],["3.297. track_path","library-features/track-path",[C[111]]],["3.298. trusted_len","library-features/trusted-len",[C[111]]],["3.299. trusted_random_access","library-features/trusted-random-access",[C[111]]],["3.300. trusted_step","library-features/trusted-step",[C[111]]],["3.301. try_find","library-features/try-find",[C[111]]],["3.302. try_reserve_kind","library-features/try-reserve-kind",[C[111]]],["3.303. try_trait_v2","library-features/try-trait-v2",[C[111]]],["3.304. type_name_of_val","library-features/type-name-of-val",[C[111]]],["3.305. unchecked_math","library-features/unchecked-math",[C[111]]],["3.306. unicode_internals","library-features/unicode-internals",[C[111]]],["3.307. unix_chown","library-features/unix-chown",[C[111]]],["3.308. unix_socket_abstract","library-features/unix-socket-abstract",[C[111]]],["3.309. unix_socket_ancillary_data","library-features/unix-socket-ancillary-data",[C[111]]],["3.310. unix_socket_peek","library-features/unix-socket-peek",[C[111]]],["3.311. unsize","library-features/unsize",[C[111]]],["3.312. unwrap_infallible","library-features/unwrap-infallible",[C[111]]],["3.313. unzip_option","library-features/unzip-option",[C[111]]],["3.314. update_panic_count","library-features/update-panic-count",[C[111]]],["3.315. variant_count","library-features/variant-count",[C[111]]],["3.316. vec_into_raw_parts","library-features/vec-into-raw-parts",[C[111]]],["3.317. vec_retain_mut","library-features/vec-retain-mut",[C[111]]],["3.318. vec_spare_capacity","library-features/vec-spare-capacity",[C[111]]],["3.319. vec_split_at_spare","library-features/vec-split-at-spare",[C[111]]],["3.320. wasi_ext","library-features/wasi-ext",[C[111]]],["3.321. windows_by_handle","library-features/windows-by-handle",[C[111]]],["3.322. windows_c","library-features/windows-c",[C[111]]],["3.323. windows_file_type_ext","library-features/windows-file-type-ext",[C[111]]],["3.324. windows_handle","library-features/windows-handle",[C[111]]],["3.325. windows_net","library-features/windows-net",[C[111]]],["3.326. windows_process_extensions_force_quotes","library-features/windows-process-extensions-force-quotes",[C[111]]],["3.327. windows_process_extensions_raw_arg","library-features/windows-process-extensions-raw-arg",[C[111]]],["3.328. windows_stdio","library-features/windows-stdio",[C[111]]],["3.329. wrapping_int_impl","library-features/wrapping-int-impl",[C[111]]],["3.330. wrapping_next_power_of_two","library-features/wrapping-next-power-of-two",[C[111]]],["3.331. write_all_vectored","library-features/write-all-vectored",[C[111]]]]},{"name":C[112],"url":"https://docs.rust-embedded.org/book/","pages":[[C[48],C[113],N],[C[114],C[115],[C[48]]],[C[116],C[117],[C[48]]],[C[118],C[119],[C[48]]],[C[49],C[120],[C[48]]],[C[121],C[122],[C[48],C[49]]],[C[123],C[124],[C[48],C[49]]],[C[125],C[126],[C[48],C[49]]],[C[127],C[128],[C[48],C[49]]],[C[50],C[129],N],[C[130],C[131],[C[50]]],[C[132],C[133],[C[50]]],[C[134],C[135],[C[50]]],[C[136],C[137],[C[50]]],[C[138],C[139],[C[50]]],[C[140],C[141],[C[50]]],[C[142],C[143],[C[50]]],["2.8. IO","start/io",[C[50]]],[C[51],C[144],N],[C[145],C[146],[C[51]]],[C[147],C[148],[C[51]]],[C[149],C[150],[C[51]]],[C[52],C[151],N],[C[152],C[153],[C[52]]],[C[154],C[155],[C[52]]],[C[156],C[157],[C[52]]],[C[158],C[159],[C[52]]],[C[160],C[161],N],[C[162],C[163],N],[C[164],C[165],N],[C[53],C[166],N],[C[54],C[167],[C[53]]],[C[168],C[169],[C[53],C[54]]],[C[170],C[171],[C[53],C[54]]],[C[172],C[173],[C[53],C[54]]],[C[174],C[175],[C[53],C[54]]],[C[176],C[177],[C[53],C[54]]],[C[178],C[179],N],[C[55],C[180],N],[C[181],C[182],[C[55]]],[C[183],C[184],[C[55]]],[C[56],C[185],N],[C[186],C[187],[C[56]]],[C[188],C[189],[C[56]]],[C[190],C[57],N]]},{"name":"Guide to Rustc Development","url":"https://rustc-dev-guide.rust-lang.org/","pages":[[C[214],C[215],N],["Getting Started",C[216],N],[C[191],"building/how-to-build-and-run",N],["1.1. Prerequisites","building/prerequisites",[C[191]]],["1.2. Suggested Workflows","building/suggested",[C[191]]],["1.3. Distribution artifacts","building/build-install-distribution-artifacts",[C[191]]],["1.4. Documenting Compiler","building/compiler-documenting",[C[191]]],["1.5. Rustdoc overview","rustdoc",[C[191]]],["1.6. Adding a new target","building/new-target",[C[191]]],[C[192],"tests/intro",N],[C[193],"tests/running",[C[192]]],["2.1.1. Testing with Docker","tests/docker",[C[192],C[193]]],["2.1.2. Testing with CI","tests/ci",[C[192],C[193]]],["2.2. Adding new tests","tests/adding",[C[192]]],[C[194],"tests/compiletest",[C[192]]],["2.3.1. UI tests","tests/ui",[C[192],C[194]]],["2.3.2. Test headers","tests/headers",[C[192],C[194]]],["2.4. Performance testing","tests/perf",[C[192]]],["2.5. Crater","tests/crater",[C[192]]],[C[195],"compiler-debugging",N],["3.1. Using the tracing/logging instrumentation","tracing",[C[195]]],[C[196],"profiling",N],["4.1. with the linux perf tool","profiling/with_perf",[C[196]]],["4.2. with Windows Performance Analyzer","profiling/wpa_profiling",[C[196]]],["5. crates.io Dependencies","crates-io",N],["6. Introduction","contributing",N],["7. About the compiler team","compiler-team",N],["8. Using Git","git",N],["9. Mastering @rustbot","rustbot",N],["10. Walkthrough: a typical contribution","walkthrough",N],["11. Bug Fix Procedure","bug-fix-procedure",N],["12. Implementing new features","implementing_new_features",N],["13. Stability attributes","stability",N],["14. Stabilizing Features","stabilization_guide",N],["15. Feature Gates","feature-gates",N],["16. Coding conventions","conventions",N],[C[197],"notification-groups/about",N],["17.1. ARM","notification-groups/arm",[C[197]]],["17.2. Cleanup Crew","notification-groups/cleanup-crew",[C[197]]],["17.3. LLVM","notification-groups/llvm",[C[197]]],["17.4. RISC-V","notification-groups/risc-v",[C[197]]],["17.5. Windows","notification-groups/windows",[C[197]]],["18. Licenses","licenses",N],["19. Prologue","part-2-intro",N],["20. Overview of the Compiler","overview",N],["21. The compiler source code","compiler-src",N],["22. Bootstrapping","building/bootstrapping",N],[C[198],"query",N],["23.1. The Query Evaluation Model in Detail","queries/query-evaluation-model-in-detail",[C[198]]],["23.2. Incremental compilation","queries/incremental-compilation",[C[198]]],["23.3. Incremental compilation In Detail","queries/incremental-compilation-in-detail",[C[198]]],["23.4. Debugging and Testing","incrcomp-debugging",[C[198]]],["23.5. Salsa","salsa",[C[198]]],["24. Memory Management in Rustc","memory",N],["25. Serialization in Rustc","serialization",N],["26. Parallel Compilation","parallel-rustc",N],["27. Rustdoc internals","rustdoc-internals",N],["28. Prologue","part-3-intro",N],["29. Command-line arguments","cli",N],[C[199],"rustc-driver",N],["30.1. Ex: Type checking through rustc_interface","rustc-driver-interacting-with-the-ast",[C[199]]],["30.2. Ex: Getting diagnostics through rustc_interface","rustc-driver-getting-diagnostics",[C[199]]],[C[200],"syntax-intro",N],["31.1. Lexing and Parsing","the-parser",[C[200]]],["31.2. Macro expansion","macro-expansion",[C[200]]],["31.3. Name resolution","name-resolution",[C[200]]],["31.4. #[test] Implementation","test-implementation",[C[200]]],["31.5. Panic Implementation","panic-implementation",[C[200]]],["31.6. AST Validation","ast-validation",[C[200]]],["31.7. Feature Gate Checking","feature-gate-ck",[C[200]]],["31.8. Lang Items","lang-items",[C[200]]],[C[201],"hir",N],["32.1. Lowering AST to HIR","lowering",[C[201]]],["32.2. Debugging","hir-debugging",[C[201]]],["33. The THIR (Typed High-level IR)","thir",N],[C[202],"mir/index",N],["34.1. MIR construction","mir/construction",[C[202]]],["34.2. MIR visitor and traversal","mir/visitor",[C[202]]],["34.3. MIR passes: getting the MIR for a function","mir/passes",[C[202]]],["35. Identifiers in the Compiler",C[203],N],["36. Closure expansion","closure",N],["37. Inline assembly","asm",N],["38. Prologue","part-4-intro",N],[C[204],"ty",N],["39.1. Generics and substitutions","generics",[C[204]]],["39.2. TypeFolder and TypeFoldable","ty-fold",[C[204]]],["39.3. Generic arguments","generic_arguments",[C[204]]],["39.4. Constants in the type system","constants",[C[204]]],["40. Type inference","type-inference",N],[C[205],"traits/resolution",N],["41.1. Early and Late Bound Parameters","early-late-bound",[C[205]]],["41.2. Higher-ranked trait bounds","traits/hrtb",[C[205]]],["41.3. Caching subtleties","traits/caching",[C[205]]],["41.4. Specialization","traits/specialization",[C[205]]],[C[206],"traits/chalk",[C[205]]],["41.5.1. Lowering to logic","traits/lowering-to-logic",[C[205],C[206]]],["41.5.2. Goals and clauses","traits/goals-and-clauses",[C[205],C[206]]],["41.5.3. Canonical queries","traits/canonical-queries",[C[205],C[206]]],[C[207],"type-checking",N],["42.1. Method Lookup","method-lookup",[C[207]]],["42.2. Variance","variance",[C[207]]],["42.3. Opaque Types","opaque-types-type-alias-impl-trait",[C[207]]],["43. Pattern and Exhaustiveness Checking","pat-exhaustive-checking",N],["44. MIR dataflow","mir/dataflow",N],["45. Drop elaboration","mir/drop-elaboration",N],[C[208],"borrow_check",N],[C[209],"borrow_check/moves_and_initialization",[C[208]]],["46.1.1. Move paths","borrow_check/moves_and_initialization/move_paths",[C[208],C[209]]],["46.2. MIR type checker","borrow_check/type_check",[C[208]]],[C[210],"borrow_check/region_inference",[C[208]]],["46.3.1. Constraint propagation","borrow_check/region_inference/constraint_propagation",[C[208],C[210]]],["46.3.2. Lifetime parameters","borrow_check/region_inference/lifetime_parameters",[C[208],C[210]]],["46.3.3. Member constraints","borrow_check/region_inference/member_constraints",[C[208],C[210]]],["46.3.4. Placeholders and universes","borrow_check/region_inference/placeholders_and_universes",[C[208],C[210]]],["46.3.5. Closure constraints","borrow_check/region_inference/closure_constraints",[C[208],C[210]]],["46.3.6. Error reporting","borrow_check/region_inference/error_reporting",[C[208],C[210]]],["46.4. Two-phase-borrows","borrow_check/two_phase_borrows",[C[208]]],["47. Parameter Environments","param_env",N],[C[211],"diagnostics",N],["48.1. Creating Errors With SessionDiagnostic","diagnostics/sessiondiagnostic",[C[211]]],["48.2. LintStore","diagnostics/lintstore",[C[211]]],["48.3. Diagnostic Codes","diagnostics/diagnostic-codes",[C[211]]],["48.4. Diagnostic Items","diagnostics/diagnostic-items",[C[211]]],["49. Prologue","part-5-intro",N],["50. MIR optimizations","mir/optimizations",N],["51. Debugging","mir/debugging",N],[C[212],"const-eval",N],["52.1. miri const evaluator","miri",[C[212]]],["53. Monomorphization","backend/monomorph",N],["54. Lowering MIR","backend/lowering-mir",N],[C[213],"backend/codegen",N],["55.1. Updating LLVM","backend/updating-llvm",[C[213]]],["55.2. Debugging LLVM","backend/debugging",[C[213]]],["55.3. Backend Agnostic Codegen","backend/backend-agnostic",[C[213]]],["55.4. Implicit Caller Location","backend/implicit-caller-location",[C[213]]],["56. Libraries and Metadata","backend/libs-and-metadata",N],["57. Profile-guided Optimization","profile-guided-optimization",N],["58. LLVM Source-Based Code Coverage","llvm-coverage-instrumentation",N],["59. Sanitizers Support","sanitizers",N],["60. Debugging Support in the Rust Compiler","debugging-support-in-rustc",N],["Appendix A: Background topics","appendix/background",N],["Appendix B: Glossary",C[57],N],["Appendix C: Code Index","appendix/code-index",N],["Appendix D: Compiler Lecture Series","appendix/compiler-lecture",N],["Appendix E: Bibliography","appendix/bibliography",N],["Appendix Z: HumorRust","appendix/humorust",N]]},{"name":"Standard library developers Guide","url":"https://std-dev-guide.rust-lang.org/","pages":[[C[214],C[215],N],["Getting started",C[216],N],[C[217],"team",N],["1.1. Meetings","meetings",[C[217]]],["1.2. Membership","membership",[C[217]]],["1.3. Reviewing","reviewing",[C[217]]],[C[218],"feature-lifecycle/summary",N],["2.1. Landing new features","feature-lifecycle/new-unstable-features",[C[218]]],["2.2. Using tracking issues","feature-lifecycle/tracking-issues",[C[218]]],["2.3. Stabilizing features","feature-lifecycle/stabilization",[C[218]]],["2.4. Deprecating features","feature-lifecycle/deprecation",[C[218]]],[C[219],"code-considerations/summary",N],[C[220],"code-considerations/design/summary",[C[219]]],["3.1.1. Public APIs","code-considerations/design/public-apis",[C[219],C[220]]],["3.1.2. When to add #[must_use]","code-considerations/design/must-use",[C[219],C[220]]],[C[221],"code-considerations/breaking-changes/summary",[C[219]]],["3.2.1. Breakage from changing behavior","code-considerations/breaking-changes/behavior",[C[219],C[221]]],["3.2.2. Breakage from new trait impls","code-considerations/breaking-changes/new-trait-impls",[C[219],C[221]]],["3.2.3. #[fundamental] types","code-considerations/breaking-changes/fundamental",[C[219],C[221]]],["3.2.4. Breakage from changing the prelude","code-considerations/breaking-changes/prelude",[C[219],C[221]]],[C[222],"code-considerations/safety-and-soundness/summary",[C[219]]],["3.3.1. Generics and unsafe","code-considerations/safety-and-soundness/generics-and-unsafe",[C[219],C[222]]],["3.3.2. Drop and #[may_dangle]","code-considerations/safety-and-soundness/may-dangle",[C[219],C[222]]],["3.3.3. std::mem and exclusive references","code-considerations/safety-and-soundness/mem-and-exclusive-refs",[C[219],C[222]]],[C[223],"code-considerations/using-unstable-lang/summary",[C[219]]],["3.4.1. Const generics","code-considerations/using-unstable-lang/const-generics",[C[219],C[223]]],["3.4.2. Specialization","code-considerations/using-unstable-lang/specialization",[C[219],C[223]]],[C[224],"code-considerations/performance/summary",[C[219]]],["3.5.1. When to #[inline]","code-considerations/performance/inline",[C[219],C[224]]],[C[225],"documentation/summary",N],["4.1. doc alias policy","documentation/doc-alias-policy",[C[225]]],[C[226],"tools-and-bots/summary",N],["5.1. @bors","tools-and-bots/bors",[C[226]]],["5.2. @rust-timer","tools-and-bots/timer",[C[226]]],["5.3. @craterbot","tools-and-bots/crater",[C[226]]]]}]; \ No newline at end of file +var C=["The Rust Programming Language","1. Getting Started","3. Common Programming Concepts","4. Understanding Ownership","5. Using Structs to Structure Related Data","6. Enums and Pattern Matching","7. Managing Growing Projects with Packages, Crates, and Modules","8. Common Collections","9. Error Handling","10. Generic Types, Traits, and Lifetimes","11. Writing Automated Tests","12. An I/O Project: Building a Command Line Program","13. Functional Language Features: Iterators and Closures","14. More about Cargo and Crates.io","15. Smart Pointers","16. Fearless Concurrency","17. Object Oriented Programming Features of Rust","18. Patterns and Matching","19. Advanced Features","20. Final Project: Building a Multithreaded Web Server","21. Appendix","2. Under the Hood: Executing Futures and Tasks","5. Streams","6. Executing Multiple Futures at a Time","7. Workarounds to Know and Love","9. Final Project: HTTP Server","Introduction","1. What are editions?","3. Rust 2018","4. Rust 2021","1.1. Installation","2. Cargo Guide","3. Cargo Reference","3.1. Specifying Dependencies","3.2. The Manifest Format","3.4. Features","3.8. Build Scripts","4. Cargo Commands","4.1. General Commands","4.2. Build Commands","4.3. Manifest Commands","4.4. Package Commands","4.5. Publishing Commands","introduction","3. Background And Concepts","4. Tutorial","reference/index","5. Reference","1. Introduction","1.4. Installation","2. Getting started","3. Peripherals","4. Static Guarantees","8. Design Patterns","8.1. HALs","10. Interoperability","11. Unsorted topics","appendix/glossary","1. Algorithms","2. Command Line","3. Compression","4. Concurrency","5. Cryptography","6. Data Structures","7. Database","8. Date and Time","9. Development Tools","9.1. Debugging","10. Encoding","11. Error Handling","12. File System","13. Hardware Support","14. Memory Management","15. Network","16. Operating System","17. Science","17.1. Mathematics","18. Text Processing","19. Web Programming","19.4. Clients","1. Meet Safe and Unsafe","2. Data Layout","3. Ownership","4. Type Conversions","5. Uninitialized Memory","6. Ownership Based Resource Management","7. Unwinding","concurrency","8. Concurrency","9. Implementing Vec","10. Implementing Arc and Mutex","10.1. Arc","12. Beneath std","2. Lexical structure","3. Macros","6. Items","7. Attributes","8. Statements and expressions","8.2. Expressions","10. Type system","10.1. Types","subtyping","destructors","lifetime-elision","12. Names","13. Memory model","16. Unsafety","20. Appendices","The Unstable Book","1. Compiler flags","2. Language features","3. Library Features","The Embedded Rust Book","intro/index","1.1. Hardware","intro/hardware","1.2. no_std","intro/no-std","1.3. Tooling","intro/tooling","intro/install","1.4.1. Linux","intro/install/linux","1.4.2. MacOS","intro/install/macos","1.4.3. Windows","intro/install/windows","1.4.4. Verify Installation","intro/install/verify","start/index","2.1. QEMU","start/qemu","2.2. Hardware","start/hardware","2.3. Memory-mapped Registers","start/registers","2.4. Semihosting","start/semihosting","2.5. Panicking","start/panicking","2.6. Exceptions","start/exceptions","2.7. Interrupts","start/interrupts","peripherals/index","3.1. A first attempt in Rust","peripherals/a-first-attempt","3.2. The Borrow Checker","peripherals/borrowck","3.3. Singletons","peripherals/singletons","static-guarantees/index","4.1. Typestate Programming","static-guarantees/typestate-programming","4.2. Peripherals as State Machines","static-guarantees/state-machines","4.3. Design Contracts","static-guarantees/design-contracts","4.4. Zero Cost Abstractions","static-guarantees/zero-cost-abstractions","5. Portability","portability/index","6. Concurrency","concurrency/index","7. Collections","collections/index","design-patterns/index","design-patterns/hal/index","8.1.1. Checklist","design-patterns/hal/checklist","8.1.2. Naming","design-patterns/hal/naming","8.1.3. Interoperability","design-patterns/hal/interoperability","8.1.4. Predictability","design-patterns/hal/predictability","8.1.5. GPIO","design-patterns/hal/gpio","9. Tips for embedded C developers","c-tips/index","interoperability/index","10.1. A little C with your Rust","interoperability/c-with-rust","10.2. A little Rust with your C","interoperability/rust-with-c","unsorted/index","11.1. Optimizations: The speed size tradeoff","unsorted/speed-vs-size","11.2. Performing Math Functionality","unsorted/math","Appendix A: Glossary","1. How to Build and Run the Compiler","2. Testing the compiler","2.1. Running tests","2.3. Compiletest","3. Debugging the Compiler","4. Profiling the compiler","17. Notification groups","23. Queries: demand-driven compilation","30. The Rustc Driver and Interface","31. Syntax and the AST","32. The HIR (High-level IR)","34. The MIR (Mid-level IR)","identifiers","39. The ty module: representing types","41. Trait solving","41.5. Chalk-based trait solving","42. Type checking","46. The borrow checker","46.1. Tracking moves and initialization","46.3. Region inference","48. Errors and Lints","52. Constant evaluation","55. Code Generation","About this guide","about-this-guide","getting-started","1. The library team","2. The feature lifecycle","3. Code considerations","3.1. Design","3.2. Breaking changes","3.3. Safety and soundness","3.4. Using unstable language features","3.5. Performance","4. Documentation","5. Tools and bots"];var N=N;var booksIndex=[{"name":C[0],"url":"https://doc.rust-lang.org/stable/book/","pages":[[C[0],"title-page",N],["Foreword","foreword",N],[C[26],"ch00-00-introduction",N],[C[1],"ch01-00-getting-started",N],[C[30],"ch01-01-installation",[C[1]]],["1.2. Hello, World!","ch01-02-hello-world",[C[1]]],["1.3. Hello, Cargo!","ch01-03-hello-cargo",[C[1]]],["2. Programming a Guessing Game","ch02-00-guessing-game-tutorial",N],[C[2],"ch03-00-common-programming-concepts",N],["3.1. Variables and Mutability","ch03-01-variables-and-mutability",[C[2]]],["3.2. Data Types","ch03-02-data-types",[C[2]]],["3.3. Functions","ch03-03-how-functions-work",[C[2]]],["3.4. Comments","ch03-04-comments",[C[2]]],["3.5. Control Flow","ch03-05-control-flow",[C[2]]],[C[3],"ch04-00-understanding-ownership",N],["4.1. What is Ownership?","ch04-01-what-is-ownership",[C[3]]],["4.2. References and Borrowing","ch04-02-references-and-borrowing",[C[3]]],["4.3. The Slice Type","ch04-03-slices",[C[3]]],[C[4],"ch05-00-structs",N],["5.1. Defining and Instantiating Structs","ch05-01-defining-structs",[C[4]]],["5.2. An Example Program Using Structs","ch05-02-example-structs",[C[4]]],["5.3. Method Syntax","ch05-03-method-syntax",[C[4]]],[C[5],"ch06-00-enums",N],["6.1. Defining an Enum","ch06-01-defining-an-enum",[C[5]]],["6.2. The match Control Flow Construct","ch06-02-match",[C[5]]],["6.3. Concise Control Flow with if let","ch06-03-if-let",[C[5]]],[C[6],"ch07-00-managing-growing-projects-with-packages-crates-and-modules",N],["7.1. Packages and Crates","ch07-01-packages-and-crates",[C[6]]],["7.2. Defining Modules to Control Scope and Privacy","ch07-02-defining-modules-to-control-scope-and-privacy",[C[6]]],["7.3. Paths for Referring to an Item in the Module Tree","ch07-03-paths-for-referring-to-an-item-in-the-module-tree",[C[6]]],["7.4. Bringing Paths Into Scope with the use Keyword","ch07-04-bringing-paths-into-scope-with-the-use-keyword",[C[6]]],["7.5. Separating Modules into Different Files","ch07-05-separating-modules-into-different-files",[C[6]]],[C[7],"ch08-00-common-collections",N],["8.1. Storing Lists of Values with Vectors","ch08-01-vectors",[C[7]]],["8.2. Storing UTF-8 Encoded Text with Strings","ch08-02-strings",[C[7]]],["8.3. Storing Keys with Associated Values in Hash Maps","ch08-03-hash-maps",[C[7]]],[C[8],"ch09-00-error-handling",N],["9.1. Unrecoverable Errors with panic!","ch09-01-unrecoverable-errors-with-panic",[C[8]]],["9.2. Recoverable Errors with Result","ch09-02-recoverable-errors-with-result",[C[8]]],["9.3. To panic! or Not to panic!","ch09-03-to-panic-or-not-to-panic",[C[8]]],[C[9],"ch10-00-generics",N],["10.1. Generic Data Types","ch10-01-syntax",[C[9]]],["10.2. Traits: Defining Shared Behavior","ch10-02-traits",[C[9]]],["10.3. Validating References with Lifetimes","ch10-03-lifetime-syntax",[C[9]]],[C[10],"ch11-00-testing",N],["11.1. How to Write Tests","ch11-01-writing-tests",[C[10]]],["11.2. Controlling How Tests Are Run","ch11-02-running-tests",[C[10]]],["11.3. Test Organization","ch11-03-test-organization",[C[10]]],[C[11],"ch12-00-an-io-project",N],["12.1. Accepting Command Line Arguments","ch12-01-accepting-command-line-arguments",[C[11]]],["12.2. Reading a File","ch12-02-reading-a-file",[C[11]]],["12.3. Refactoring to Improve Modularity and Error Handling","ch12-03-improving-error-handling-and-modularity",[C[11]]],["12.4. Developing the Library’s Functionality with Test Driven Development","ch12-04-testing-the-librarys-functionality",[C[11]]],["12.5. Working with Environment Variables","ch12-05-working-with-environment-variables",[C[11]]],["12.6. Writing Error Messages to Standard Error Instead of Standard Output","ch12-06-writing-to-stderr-instead-of-stdout",[C[11]]],[C[12],"ch13-00-functional-features",N],["13.1. Closures: Anonymous Functions that Can Capture Their Environment","ch13-01-closures",[C[12]]],["13.2. Processing a Series of Items with Iterators","ch13-02-iterators",[C[12]]],["13.3. Improving Our I/O Project","ch13-03-improving-our-io-project",[C[12]]],["13.4. Comparing Performance: Loops vs. Iterators","ch13-04-performance",[C[12]]],[C[13],"ch14-00-more-about-cargo",N],["14.1. Customizing Builds with Release Profiles","ch14-01-release-profiles",[C[13]]],["14.2. Publishing a Crate to Crates.io","ch14-02-publishing-to-crates-io",[C[13]]],["14.3. Cargo Workspaces","ch14-03-cargo-workspaces",[C[13]]],["14.4. Installing Binaries from Crates.io with cargo install","ch14-04-installing-binaries",[C[13]]],["14.5. Extending Cargo with Custom Commands","ch14-05-extending-cargo",[C[13]]],[C[14],"ch15-00-smart-pointers",N],["15.1. Using Box to Point to Data on the Heap","ch15-01-box",[C[14]]],["15.2. Treating Smart Pointers Like Regular References with the Deref Trait","ch15-02-deref",[C[14]]],["15.3. Running Code on Cleanup with the Drop Trait","ch15-03-drop",[C[14]]],["15.4. Rc, the Reference Counted Smart Pointer","ch15-04-rc",[C[14]]],["15.5. RefCell and the Interior Mutability Pattern","ch15-05-interior-mutability",[C[14]]],["15.6. Reference Cycles Can Leak Memory","ch15-06-reference-cycles",[C[14]]],[C[15],"ch16-00-concurrency",N],["16.1. Using Threads to Run Code Simultaneously","ch16-01-threads",[C[15]]],["16.2. Using Message Passing to Transfer Data Between Threads","ch16-02-message-passing",[C[15]]],["16.3. Shared-State Concurrency","ch16-03-shared-state",[C[15]]],["16.4. Extensible Concurrency with the Sync and Send Traits","ch16-04-extensible-concurrency-sync-and-send",[C[15]]],[C[16],"ch17-00-oop",N],["17.1. Characteristics of Object-Oriented Languages","ch17-01-what-is-oo",[C[16]]],["17.2. Using Trait Objects That Allow for Values of Different Types","ch17-02-trait-objects",[C[16]]],["17.3. Implementing an Object-Oriented Design Pattern","ch17-03-oo-design-patterns",[C[16]]],[C[17],"ch18-00-patterns",N],["18.1. All the Places Patterns Can Be Used","ch18-01-all-the-places-for-patterns",[C[17]]],["18.2. Refutability: Whether a Pattern Might Fail to Match","ch18-02-refutability",[C[17]]],["18.3. Pattern Syntax","ch18-03-pattern-syntax",[C[17]]],[C[18],"ch19-00-advanced-features",N],["19.1. Unsafe Rust","ch19-01-unsafe-rust",[C[18]]],["19.2. Advanced Traits","ch19-03-advanced-traits",[C[18]]],["19.3. Advanced Types","ch19-04-advanced-types",[C[18]]],["19.4. Advanced Functions and Closures","ch19-05-advanced-functions-and-closures",[C[18]]],["19.5. Macros","ch19-06-macros",[C[18]]],[C[19],"ch20-00-final-project-a-web-server",N],["20.1. Building a Single-Threaded Web Server","ch20-01-single-threaded",[C[19]]],["20.2. Turning Our Single-Threaded Server into a Multithreaded Server","ch20-02-multithreaded",[C[19]]],["20.3. Graceful Shutdown and Cleanup","ch20-03-graceful-shutdown-and-cleanup",[C[19]]],[C[20],"appendix-00",N],["21.1. A - Keywords","appendix-01-keywords",[C[20]]],["21.2. B - Operators and Symbols","appendix-02-operators",[C[20]]],["21.3. C - Derivable Traits","appendix-03-derivable-traits",[C[20]]],["21.4. D - Useful Development Tools","appendix-04-useful-development-tools",[C[20]]],["21.5. E - Editions","appendix-05-editions",[C[20]]],["21.6. F - Translations of the Book","appendix-06-translation",[C[20]]],["21.7. G - How Rust is Made and “Nightly Rust”","appendix-07-nightly-rust",[C[20]]]]},{"name":"Rust Async Book","url":"https://rust-lang.github.io/async-book/","pages":[[C[1],"01_getting_started/01_chapter",N],["1.1. Why Async?","01_getting_started/02_why_async",[C[1]]],["1.2. The State of Asynchronous Rust","01_getting_started/03_state_of_async_rust",[C[1]]],["1.3. async/.await Primer","01_getting_started/04_async_await_primer",[C[1]]],[C[21],"02_execution/01_chapter",N],["2.1. The Future Trait","02_execution/02_future",[C[21]]],["2.2. Task Wakeups with Waker","02_execution/03_wakeups",[C[21]]],["2.3. Applied: Build an Executor","02_execution/04_executor",[C[21]]],["2.4. Executors and System IO","02_execution/05_io",[C[21]]],["3. async/await","03_async_await/01_chapter",N],["4. Pinning","04_pinning/01_chapter",N],[C[22],"05_streams/01_chapter",N],["5.1. Iteration and Concurrency","05_streams/02_iteration_and_concurrency",[C[22]]],[C[23],"06_multiple_futures/01_chapter",N],["6.1. join!","06_multiple_futures/02_join",[C[23]]],["6.2. select!","06_multiple_futures/03_select",[C[23]]],[C[24],"07_workarounds/01_chapter",N],["7.1. ? in async Blocks","07_workarounds/02_err_in_async_blocks",[C[24]]],["7.2. Send Approximation","07_workarounds/03_send_approximation",[C[24]]],["7.3. Recursion","07_workarounds/04_recursion",[C[24]]],["7.4. async in Traits","07_workarounds/05_async_in_traits",[C[24]]],["8. The Async Ecosystem","08_ecosystem/00_chapter",N],[C[25],"09_example/00_intro",N],["9.1. Running Asynchronous Code","09_example/01_running_async_code",[C[25]]],["9.2. Handling Connections Concurrently","09_example/02_handling_connections_concurrently",[C[25]]],["9.3. Testing the Server","09_example/03_tests",[C[25]]],["12. Appendix: Translations of the Book","12_appendix/01_translations",N]]},{"name":"Rust Edition Guide Book","url":"https://doc.rust-lang.org/stable/edition-guide/","pages":[[C[26],C[43],N],[C[27],"editions/index",N],["1.1. Creating a new project","editions/creating-a-new-project",[C[27]]],["1.2. Transitioning an existing project to a new edition","editions/transitioning-an-existing-project-to-a-new-edition",[C[27]]],["1.3. Advanced migrations","editions/advanced-migrations",[C[27]]],["2. Rust 2015","rust-2015/index",N],[C[28],"rust-2018/index",N],["3.1. Path and module system changes","rust-2018/path-changes",[C[28]]],["3.2. Anonymous trait function parameters deprecated","rust-2018/trait-fn-parameters",[C[28]]],["3.3. New keywords","rust-2018/new-keywords",[C[28]]],["3.4. Method dispatch for raw pointers to inference variables","rust-2018/tyvar-behind-raw-pointer",[C[28]]],["3.5. Cargo changes","rust-2018/cargo",[C[28]]],[C[29],"rust-2021/index",N],["4.1. Additions to the prelude","rust-2021/prelude",[C[29]]],["4.2. Default Cargo feature resolver","rust-2021/default-cargo-resolver",[C[29]]],["4.3. IntoIterator for arrays","rust-2021/IntoIterator-for-arrays",[C[29]]],["4.4. Disjoint capture in closures","rust-2021/disjoint-capture-in-closures",[C[29]]],["4.5. Panic macro consistency","rust-2021/panic-macro-consistency",[C[29]]],["4.6. Reserving syntax","rust-2021/reserving-syntax",[C[29]]],["4.7. Warnings promoted to errors","rust-2021/warnings-promoted-to-error",[C[29]]],["4.8. Or patterns in macro-rules","rust-2021/or-patterns-macro-rules",[C[29]]]]},{"name":"The Cargo Book","url":"https://doc.rust-lang.org/cargo/","pages":[[C[26],"index",N],[C[1],"getting-started/index",N],[C[30],"getting-started/installation",[C[1]]],["1.2. First Steps with Cargo","getting-started/first-steps",[C[1]]],[C[31],"guide/index",N],["2.1. Why Cargo Exists","guide/why-cargo-exists",[C[31]]],["2.2. Creating a New Package","guide/creating-a-new-project",[C[31]]],["2.3. Working on an Existing Package","guide/working-on-an-existing-project",[C[31]]],["2.4. Dependencies","guide/dependencies",[C[31]]],["2.5. Package Layout","guide/project-layout",[C[31]]],["2.6. Cargo.toml vs Cargo.lock","guide/cargo-toml-vs-cargo-lock",[C[31]]],["2.7. Tests","guide/tests",[C[31]]],["2.8. Continuous Integration","guide/continuous-integration",[C[31]]],["2.9. Cargo Home","guide/cargo-home",[C[31]]],["2.10. Build Cache","guide/build-cache",[C[31]]],[C[32],C[46],N],[C[33],"reference/specifying-dependencies",[C[32]]],["3.1.1. Overriding Dependencies","reference/overriding-dependencies",[C[32],C[33]]],[C[34],"reference/manifest",[C[32]]],["3.2.1. Cargo Targets","reference/cargo-targets",[C[32],C[34]]],["3.3. Workspaces","reference/workspaces",[C[32]]],[C[35],"reference/features",[C[32]]],["3.4.1. Features Examples","reference/features-examples",[C[32],C[35]]],["3.5. Profiles","reference/profiles",[C[32]]],["3.6. Configuration","reference/config",[C[32]]],["3.7. Environment Variables","reference/environment-variables",[C[32]]],[C[36],"reference/build-scripts",[C[32]]],["3.8.1. Build Script Examples","reference/build-script-examples",[C[32],C[36]]],["3.9. Publishing on crates.io","reference/publishing",[C[32]]],["3.10. Package ID Specifications","reference/pkgid-spec",[C[32]]],["3.11. Source Replacement","reference/source-replacement",[C[32]]],["3.12. External Tools","reference/external-tools",[C[32]]],["3.13. Registries","reference/registries",[C[32]]],["3.14. Dependency Resolution","reference/resolver",[C[32]]],["3.15. SemVer Compatibility","reference/semver",[C[32]]],["3.16. Future incompat report","reference/future-incompat-report",[C[32]]],["3.17. Unstable Features","reference/unstable",[C[32]]],[C[37],"commands/index",N],[C[38],"commands/general-commands",[C[37]]],["4.1.1. cargo","commands/cargo",[C[37],C[38]]],["4.1.2. cargo help","commands/cargo-help",[C[37],C[38]]],["4.1.3. cargo version","commands/cargo-version",[C[37],C[38]]],[C[39],"commands/build-commands",[C[37]]],["4.2.1. cargo bench","commands/cargo-bench",[C[37],C[39]]],["4.2.2. cargo build","commands/cargo-build",[C[37],C[39]]],["4.2.3. cargo check","commands/cargo-check",[C[37],C[39]]],["4.2.4. cargo clean","commands/cargo-clean",[C[37],C[39]]],["4.2.5. cargo doc","commands/cargo-doc",[C[37],C[39]]],["4.2.6. cargo fetch","commands/cargo-fetch",[C[37],C[39]]],["4.2.7. cargo fix","commands/cargo-fix",[C[37],C[39]]],["4.2.8. cargo run","commands/cargo-run",[C[37],C[39]]],["4.2.9. cargo rustc","commands/cargo-rustc",[C[37],C[39]]],["4.2.10. cargo rustdoc","commands/cargo-rustdoc",[C[37],C[39]]],["4.2.11. cargo test","commands/cargo-test",[C[37],C[39]]],["4.2.12. cargo report","commands/cargo-report",[C[37],C[39]]],[C[40],"commands/manifest-commands",[C[37]]],["4.3.1. cargo generate-lockfile","commands/cargo-generate-lockfile",[C[37],C[40]]],["4.3.2. cargo locate-project","commands/cargo-locate-project",[C[37],C[40]]],["4.3.3. cargo metadata","commands/cargo-metadata",[C[37],C[40]]],["4.3.4. cargo pkgid","commands/cargo-pkgid",[C[37],C[40]]],["4.3.5. cargo tree","commands/cargo-tree",[C[37],C[40]]],["4.3.6. cargo update","commands/cargo-update",[C[37],C[40]]],["4.3.7. cargo vendor","commands/cargo-vendor",[C[37],C[40]]],["4.3.8. cargo verify-project","commands/cargo-verify-project",[C[37],C[40]]],[C[41],"commands/package-commands",[C[37]]],["4.4.1. cargo init","commands/cargo-init",[C[37],C[41]]],["4.4.2. cargo install","commands/cargo-install",[C[37],C[41]]],["4.4.3. cargo new","commands/cargo-new",[C[37],C[41]]],["4.4.4. cargo search","commands/cargo-search",[C[37],C[41]]],["4.4.5. cargo uninstall","commands/cargo-uninstall",[C[37],C[41]]],[C[42],"commands/publishing-commands",[C[37]]],["4.5.1. cargo login","commands/cargo-login",[C[37],C[42]]],["4.5.2. cargo owner","commands/cargo-owner",[C[37],C[42]]],["4.5.3. cargo package","commands/cargo-package",[C[37],C[42]]],["4.5.4. cargo publish","commands/cargo-publish",[C[37],C[42]]],["4.5.5. cargo yank","commands/cargo-yank",[C[37],C[42]]],["5. FAQ","faq",N],["6. Appendix: Glossary",C[57],N],["7. Appendix: Git Authentication","appendix/git-authentication",N]]},{"name":"Rust and WebAssembly Book","url":"https://rustwasm.github.io/docs/book/","pages":[[C[48],C[43],N],["2. Why Rust and WebAssembly?","why-rust-and-webassembly",N],[C[44],"background-and-concepts",N],["3.1. What is WebAssembly?","what-is-webassembly",[C[44]]],[C[45],"game-of-life/introduction",N],["4.1. Setup","game-of-life/setup",[C[45]]],["4.2. Hello, World!","game-of-life/hello-world",[C[45]]],["4.3. Rules","game-of-life/rules",[C[45]]],["4.4. Implementing Life","game-of-life/implementing",[C[45]]],["4.5. Testing Life","game-of-life/testing",[C[45]]],["4.6. Debugging","game-of-life/debugging",[C[45]]],["4.7. Adding Interactivity","game-of-life/interactivity",[C[45]]],["4.8. Time Profiling","game-of-life/time-profiling",[C[45]]],["4.9. Shrinking .wasm Size","game-of-life/code-size",[C[45]]],["4.10. Publishing to npm","game-of-life/publishing-to-npm",[C[45]]],[C[47],C[46],N],["5.1. Crates You Should Know","reference/crates",[C[47]]],["5.2. Tools You Should Know","reference/tools",[C[47]]],["5.3. Project Templates","reference/project-templates",[C[47]]],["5.4. Debugging","reference/debugging",[C[47]]],["5.5. Time Profiling","reference/time-profiling",[C[47]]],["5.6. Shrinking .wasm Size","reference/code-size",[C[47]]],["5.7. JavaScript Interoperation","reference/js-ffi",[C[47]]],["5.8. Which Crates Will Work Off-the-Shelf with WebAssembly?","reference/which-crates-work-with-wasm",[C[47]]],["5.9. How to Add WebAssembly Support to a General-Purpose Crate","reference/add-wasm-support-to-crate",[C[47]]],["5.10. Deploying Rust and WebAssembly to Production","reference/deploying-to-production",[C[47]]]]},{"name":C[112],"url":"https://rust-embedded.github.io/book/","pages":[[C[48],C[113],N],[C[114],C[115],[C[48]]],[C[116],C[117],[C[48]]],[C[118],C[119],[C[48]]],[C[49],C[120],[C[48]]],[C[121],C[122],[C[48],C[49]]],[C[123],C[124],[C[48],C[49]]],[C[125],C[126],[C[48],C[49]]],[C[127],C[128],[C[48],C[49]]],[C[50],C[129],N],[C[130],C[131],[C[50]]],[C[132],C[133],[C[50]]],[C[134],C[135],[C[50]]],[C[136],C[137],[C[50]]],[C[138],C[139],[C[50]]],[C[140],C[141],[C[50]]],[C[142],C[143],[C[50]]],["2.8. IO","start/io",[C[50]]],[C[51],C[144],N],[C[145],C[146],[C[51]]],[C[147],C[148],[C[51]]],[C[149],C[150],[C[51]]],[C[52],C[151],N],[C[152],C[153],[C[52]]],[C[154],C[155],[C[52]]],[C[156],C[157],[C[52]]],[C[158],C[159],[C[52]]],[C[160],C[161],N],[C[162],C[163],N],[C[164],C[165],N],[C[53],C[166],N],[C[54],C[167],[C[53]]],[C[168],C[169],[C[53],C[54]]],[C[170],C[171],[C[53],C[54]]],[C[172],C[173],[C[53],C[54]]],[C[174],C[175],[C[53],C[54]]],[C[176],C[177],[C[53],C[54]]],[C[178],C[179],N],[C[55],C[180],N],[C[181],C[182],[C[55]]],[C[183],C[184],[C[55]]],[C[56],C[185],N],[C[186],C[187],[C[56]]],[C[188],C[189],[C[56]]],[C[190],C[57],N]]},{"name":"The Rust Cookbook","url":"https://rust-lang-nursery.github.io/rust-cookbook/","pages":[["Table of Contents","intro",N],["About","about",N],[C[58],"algorithms",N],["1.1. Generate Random Values","algorithms/randomness",[C[58]]],["1.2. Sort a Vector","algorithms/sorting",[C[58]]],[C[59],"cli",N],["2.1. Argument Parsing","cli/arguments",[C[59]]],["2.2. ANSI Terminal","cli/ansi_terminal",[C[59]]],[C[60],"compression",N],["3.1. Working with Tarballs","compression/tar",[C[60]]],[C[61],C[87],N],["4.1. Explicit Threads","concurrency/threads",[C[61]]],["4.2. Data Parallelism","concurrency/parallel",[C[61]]],[C[62],"cryptography",N],["5.1. Hashing","cryptography/hashing",[C[62]]],["5.2. Encryption","cryptography/encryption",[C[62]]],[C[63],"data_structures",N],["6.1. Bitfield","data_structures/bitfield",[C[63]]],[C[64],"database",N],["7.1. SQLite","database/sqlite",[C[64]]],["7.2. Postgres","database/postgres",[C[64]]],[C[65],"datetime",N],["8.1. Duration and Calculation","datetime/duration",[C[65]]],["8.2. Parsing and Displaying","datetime/parse",[C[65]]],[C[66],"development_tools",N],[C[67],"development_tools/debugging",[C[66]]],["9.1.1. Log Messages","development_tools/debugging/log",[C[66],C[67]]],["9.1.2. Configure Logging","development_tools/debugging/config_log",[C[66],C[67]]],["9.2. Versioning","development_tools/versioning",[C[66]]],["9.3. Build Time Tooling","development_tools/build_tools",[C[66]]],[C[68],"encoding",N],["10.1. Character Sets","encoding/strings",[C[68]]],["10.2. CSV processing","encoding/csv",[C[68]]],["10.3. Structured Data","encoding/complex",[C[68]]],[C[69],"errors",N],["11.1. Handle Error Variants","errors/handle",[C[69]]],[C[70],"file",N],["12.1. Read & Write","file/read-write",[C[70]]],["12.2. Directory Traversal","file/dir",[C[70]]],[C[71],"hardware",N],["13.1. Processor","hardware/processor",[C[71]]],[C[72],"mem",N],["14.1. Global Static","mem/global_static",[C[72]]],[C[73],"net",N],["15.1. Server","net/server",[C[73]]],[C[74],"os",N],["16.1. External Command","os/external",[C[74]]],[C[75],"science",N],[C[76],"science/mathematics",[C[75]]],["17.1.1. Linear Algebra","science/mathematics/linear_algebra",[C[75],C[76]]],["17.1.2. Trigonometry","science/mathematics/trigonometry",[C[75],C[76]]],["17.1.3. Complex Numbers","science/mathematics/complex_numbers",[C[75],C[76]]],["17.1.4. Statistics","science/mathematics/statistics",[C[75],C[76]]],["17.1.5. Miscellaneous","science/mathematics/miscellaneous",[C[75],C[76]]],[C[77],"text",N],["18.1. Regular Expressions","text/regex",[C[77]]],["18.2. String Parsing","text/string_parsing",[C[77]]],[C[78],"web",N],["19.1. Extracting Links","web/scraping",[C[78]]],["19.2. URL","web/url",[C[78]]],["19.3. Media Types","web/mime",[C[78]]],[C[79],"web/clients",[C[78]]],["19.4.1. Making Requests","web/clients/requests",[C[78],C[79]]],["19.4.2. Calling a Web API","web/clients/apis",[C[78],C[79]]],["19.4.3. Downloads","web/clients/download",[C[78],C[79]]],["19.4.4. Web Authentication","web/clients/authentication",[C[78],C[79]]]]},{"name":"The Rustonomicon","url":"https://doc.rust-lang.org/nomicon/","pages":[[C[26],"intro",N],[C[80],"meet-safe-and-unsafe",N],["1.1. How Safe and Unsafe Interact","safe-unsafe-meaning",[C[80]]],["1.2. What Unsafe Can Do","what-unsafe-does",[C[80]]],["1.3. Working with Unsafe","working-with-unsafe",[C[80]]],[C[81],"data",N],["2.1. repr(Rust)","repr-rust",[C[81]]],["2.2. Exotically Sized Types","exotic-sizes",[C[81]]],["2.3. Other reprs","other-reprs",[C[81]]],[C[82],"ownership",N],["3.1. References","references",[C[82]]],["3.2. Aliasing","aliasing",[C[82]]],["3.3. Lifetimes","lifetimes",[C[82]]],["3.4. Limits of Lifetimes","lifetime-mismatch",[C[82]]],["3.5. Lifetime Elision",C[103],[C[82]]],["3.6. Unbounded Lifetimes","unbounded-lifetimes",[C[82]]],["3.7. Higher-Rank Trait Bounds","hrtb",[C[82]]],["3.8. Subtyping and Variance",C[101],[C[82]]],["3.9. Drop Check","dropck",[C[82]]],["3.10. PhantomData","phantom-data",[C[82]]],["3.11. Splitting Borrows","borrow-splitting",[C[82]]],[C[83],"conversions",N],["4.1. Coercions","coercions",[C[83]]],["4.2. The Dot Operator","dot-operator",[C[83]]],["4.3. Casts","casts",[C[83]]],["4.4. Transmutes","transmutes",[C[83]]],[C[84],"uninitialized",N],["5.1. Checked","checked-uninit",[C[84]]],["5.2. Drop Flags","drop-flags",[C[84]]],["5.3. Unchecked","unchecked-uninit",[C[84]]],[C[85],"obrm",N],["6.1. Constructors","constructors",[C[85]]],["6.2. Destructors",C[102],[C[85]]],["6.3. Leaking","leaking",[C[85]]],[C[86],"unwinding",N],["7.1. Exception Safety","exception-safety",[C[86]]],["7.2. Poisoning","poisoning",[C[86]]],[C[88],C[87],N],["8.1. Races","races",[C[88]]],["8.2. Send and Sync","send-and-sync",[C[88]]],["8.3. Atomics","atomics",[C[88]]],[C[89],"vec/vec",N],["9.1. Layout","vec/vec-layout",[C[89]]],["9.2. Allocating","vec/vec-alloc",[C[89]]],["9.3. Push and Pop","vec/vec-push-pop",[C[89]]],["9.4. Deallocating","vec/vec-dealloc",[C[89]]],["9.5. Deref","vec/vec-deref",[C[89]]],["9.6. Insert and Remove","vec/vec-insert-remove",[C[89]]],["9.7. IntoIter","vec/vec-into-iter",[C[89]]],["9.8. RawVec","vec/vec-raw",[C[89]]],["9.9. Drain","vec/vec-drain",[C[89]]],["9.10. Handling Zero-Sized Types","vec/vec-zsts",[C[89]]],["9.11. Final Code","vec/vec-final",[C[89]]],[C[90],"arc-mutex/arc-and-mutex",N],[C[91],"arc-mutex/arc",[C[90]]],["10.1.1. Layout","arc-mutex/arc-layout",[C[90],C[91]]],["10.1.2. Base Code","arc-mutex/arc-base",[C[90],C[91]]],["10.1.3. Cloning","arc-mutex/arc-clone",[C[90],C[91]]],["10.1.4. Dropping","arc-mutex/arc-drop",[C[90],C[91]]],["10.1.5. Final Code","arc-mutex/arc-final",[C[90],C[91]]],["11. FFI","ffi",N],[C[92],"beneath-std",N],["12.1. #[panic_handler]","panic-handler",[C[92]]]]},{"name":"The Rust Reference","url":"https://doc.rust-lang.org/reference/","pages":[[C[26],C[43],N],["1. Notation","notation",N],[C[93],"lexical-structure",N],["2.1. Input format","input-format",[C[93]]],["2.2. Keywords","keywords",[C[93]]],["2.3. Identifiers",C[203],[C[93]]],["2.4. Comments","comments",[C[93]]],["2.5. Whitespace","whitespace",[C[93]]],["2.6. Tokens","tokens",[C[93]]],[C[94],"macros",N],["3.1. Macros By Example","macros-by-example",[C[94]]],["3.2. Procedural Macros","procedural-macros",[C[94]]],["4. Crates and source files","crates-and-source-files",N],["5. Conditional compilation","conditional-compilation",N],[C[95],"items",N],["6.1. Modules","items/modules",[C[95]]],["6.2. Extern crates","items/extern-crates",[C[95]]],["6.3. Use declarations","items/use-declarations",[C[95]]],["6.4. Functions","items/functions",[C[95]]],["6.5. Type aliases","items/type-aliases",[C[95]]],["6.6. Structs","items/structs",[C[95]]],["6.7. Enumerations","items/enumerations",[C[95]]],["6.8. Unions","items/unions",[C[95]]],["6.9. Constant items","items/constant-items",[C[95]]],["6.10. Static items","items/static-items",[C[95]]],["6.11. Traits","items/traits",[C[95]]],["6.12. Implementations","items/implementations",[C[95]]],["6.13. External blocks","items/external-blocks",[C[95]]],["6.14. Generic parameters","items/generics",[C[95]]],["6.15. Associated Items","items/associated-items",[C[95]]],[C[96],"attributes",N],["7.1. Testing","attributes/testing",[C[96]]],["7.2. Derive","attributes/derive",[C[96]]],["7.3. Diagnostics","attributes/diagnostics",[C[96]]],["7.4. Code generation","attributes/codegen",[C[96]]],["7.5. Limits","attributes/limits",[C[96]]],["7.6. Type System","attributes/type_system",[C[96]]],[C[97],"statements-and-expressions",N],["8.1. Statements","statements",[C[97]]],[C[98],"expressions",[C[97]]],["8.2.1. Literal expressions","expressions/literal-expr",[C[97],C[98]]],["8.2.2. Path expressions","expressions/path-expr",[C[97],C[98]]],["8.2.3. Block expressions","expressions/block-expr",[C[97],C[98]]],["8.2.4. Operator expressions","expressions/operator-expr",[C[97],C[98]]],["8.2.5. Grouped expressions","expressions/grouped-expr",[C[97],C[98]]],["8.2.6. Array and index expressions","expressions/array-expr",[C[97],C[98]]],["8.2.7. Tuple and index expressions","expressions/tuple-expr",[C[97],C[98]]],["8.2.8. Struct expressions","expressions/struct-expr",[C[97],C[98]]],["8.2.9. Call expressions","expressions/call-expr",[C[97],C[98]]],["8.2.10. Method call expressions","expressions/method-call-expr",[C[97],C[98]]],["8.2.11. Field access expressions","expressions/field-expr",[C[97],C[98]]],["8.2.12. Closure expressions","expressions/closure-expr",[C[97],C[98]]],["8.2.13. Loop expressions","expressions/loop-expr",[C[97],C[98]]],["8.2.14. Range expressions","expressions/range-expr",[C[97],C[98]]],["8.2.15. If and if let expressions","expressions/if-expr",[C[97],C[98]]],["8.2.16. Match expressions","expressions/match-expr",[C[97],C[98]]],["8.2.17. Return expressions","expressions/return-expr",[C[97],C[98]]],["8.2.18. Await expressions","expressions/await-expr",[C[97],C[98]]],["9. Patterns","patterns",N],[C[99],"type-system",N],[C[100],"types",[C[99]]],["10.1.1. Boolean type","types/boolean",[C[99],C[100]]],["10.1.2. Numeric types","types/numeric",[C[99],C[100]]],["10.1.3. Textual types","types/textual",[C[99],C[100]]],["10.1.4. Never type","types/never",[C[99],C[100]]],["10.1.5. Tuple types","types/tuple",[C[99],C[100]]],["10.1.6. Array types","types/array",[C[99],C[100]]],["10.1.7. Slice types","types/slice",[C[99],C[100]]],["10.1.8. Struct types","types/struct",[C[99],C[100]]],["10.1.9. Enumerated types","types/enum",[C[99],C[100]]],["10.1.10. Union types","types/union",[C[99],C[100]]],["10.1.11. Function item types","types/function-item",[C[99],C[100]]],["10.1.12. Closure types","types/closure",[C[99],C[100]]],["10.1.13. Pointer types","types/pointer",[C[99],C[100]]],["10.1.14. Function pointer types","types/function-pointer",[C[99],C[100]]],["10.1.15. Trait object types","types/trait-object",[C[99],C[100]]],["10.1.16. Impl trait type","types/impl-trait",[C[99],C[100]]],["10.1.17. Type parameters","types/parameters",[C[99],C[100]]],["10.1.18. Inferred type","types/inferred",[C[99],C[100]]],["10.2. Dynamically Sized Types","dynamically-sized-types",[C[99]]],["10.3. Type layout","type-layout",[C[99]]],["10.4. Interior mutability","interior-mutability",[C[99]]],["10.5. Subtyping and Variance",C[101],[C[99]]],["10.6. Trait and lifetime bounds","trait-bounds",[C[99]]],["10.7. Type coercions","type-coercions",[C[99]]],["10.8. Destructors",C[102],[C[99]]],["10.9. Lifetime elision",C[103],[C[99]]],["11. Special types and traits","special-types-and-traits",N],[C[104],"names",N],["12.1. Namespaces","names/namespaces",[C[104]]],["12.2. Scopes","names/scopes",[C[104]]],["12.3. Preludes","names/preludes",[C[104]]],["12.4. Paths","paths",[C[104]]],["12.5. Name resolution","names/name-resolution",[C[104]]],["12.6. Visibility and privacy","visibility-and-privacy",[C[104]]],[C[105],"memory-model",N],["13.1. Memory allocation and lifetime","memory-allocation-and-lifetime",[C[105]]],["13.2. Variables","variables",[C[105]]],["14. Linkage","linkage",N],["15. Inline assembly","inline-assembly",N],[C[106],"unsafety",N],["16.1. Unsafe functions","unsafe-functions",[C[106]]],["16.2. Unsafe blocks","unsafe-blocks",[C[106]]],["16.3. Behavior considered undefined","behavior-considered-undefined",[C[106]]],["16.4. Behavior not considered unsafe","behavior-not-considered-unsafe",[C[106]]],["17. Constant Evaluation","const_eval",N],["18. Application Binary Interface","abi",N],["19. The Rust runtime","runtime",N],[C[107],"appendices",N],["20.1. Macro Follow-Set Ambiguity Formal Specification","macro-ambiguity",[C[107]]],["20.2. Influences","influences",[C[107]]],["20.3. Glossary","glossary",[C[107]]]]},{"name":C[108],"url":"https://doc.rust-lang.org/unstable-book/","pages":[[C[108],"the-unstable-book",N],[C[109],"compiler-flags",N],["1.1. codegen_backend","compiler-flags/codegen-backend",[C[109]]],["1.2. control_flow_guard","compiler-flags/control-flow-guard",[C[109]]],["1.3. debug_info_for_profiling","compiler-flags/debug_info_for_profiling",[C[109]]],["1.4. emit_stack_sizes","compiler-flags/emit-stack-sizes",[C[109]]],["1.5. extern_location","compiler-flags/extern-location",[C[109]]],["1.6. instrument_coverage","compiler-flags/instrument-coverage",[C[109]]],["1.7. location_detail","compiler-flags/location-detail",[C[109]]],["1.8. move_size_limit","compiler-flags/move-size-limit",[C[109]]],["1.9. no_unique_section_names","compiler-flags/no-unique-section-names",[C[109]]],["1.10. profile","compiler-flags/profile",[C[109]]],["1.11. profile_sample_use","compiler-flags/profile_sample_use",[C[109]]],["1.12. remap_cwd_prefix","compiler-flags/remap-cwd-prefix",[C[109]]],["1.13. report_time","compiler-flags/report-time",[C[109]]],["1.14. sanitizer","compiler-flags/sanitizer",[C[109]]],["1.15. self_profile","compiler-flags/self-profile",[C[109]]],["1.16. self_profile_events","compiler-flags/self-profile-events",[C[109]]],["1.17. source_based_code_coverage","compiler-flags/source-based-code-coverage",[C[109]]],["1.18. src_hash_algorithm","compiler-flags/src-hash-algorithm",[C[109]]],["1.19. temps_dir","compiler-flags/temps-dir",[C[109]]],["1.20. tls_model","compiler-flags/tls-model",[C[109]]],["1.21. unsound_mir_opts","compiler-flags/unsound-mir-opts",[C[109]]],[C[110],"language-features",N],["2.1. aarch64_target_feature","language-features/aarch64-target-feature",[C[110]]],["2.2. abi_amdgpu_kernel","language-features/abi-amdgpu-kernel",[C[110]]],["2.3. abi_avr_interrupt","language-features/abi-avr-interrupt",[C[110]]],["2.4. abi_c_cmse_nonsecure_call","language-features/abi-c-cmse-nonsecure-call",[C[110]]],["2.5. abi_efiapi","language-features/abi-efiapi",[C[110]]],["2.6. abi_msp430_interrupt","language-features/abi-msp430-interrupt",[C[110]]],["2.7. abi_ptx","language-features/abi-ptx",[C[110]]],["2.8. abi_thiscall","language-features/abi-thiscall",[C[110]]],["2.9. abi_unadjusted","language-features/abi-unadjusted",[C[110]]],["2.10. abi_vectorcall","language-features/abi-vectorcall",[C[110]]],["2.11. abi_x86_interrupt","language-features/abi-x86-interrupt",[C[110]]],["2.12. adt_const_params","language-features/adt-const-params",[C[110]]],["2.13. adx_target_feature","language-features/adx-target-feature",[C[110]]],["2.14. alloc_error_handler","language-features/alloc-error-handler",[C[110]]],["2.15. allocator_internals","language-features/allocator-internals",[C[110]]],["2.16. allow_fail","language-features/allow-fail",[C[110]]],["2.17. allow_internal_unsafe","language-features/allow-internal-unsafe",[C[110]]],["2.18. allow_internal_unstable","language-features/allow-internal-unstable",[C[110]]],["2.19. arbitrary_enum_discriminant","language-features/arbitrary-enum-discriminant",[C[110]]],["2.20. arbitrary_self_types","language-features/arbitrary-self-types",[C[110]]],["2.21. arm_target_feature","language-features/arm-target-feature",[C[110]]],["2.22. asm_const","language-features/asm-const",[C[110]]],["2.23. asm_experimental_arch","language-features/asm-experimental-arch",[C[110]]],["2.24. asm_sym","language-features/asm-sym",[C[110]]],["2.25. asm_unwind","language-features/asm-unwind",[C[110]]],["2.26. associated_type_bounds","language-features/associated-type-bounds",[C[110]]],["2.27. associated_type_defaults","language-features/associated-type-defaults",[C[110]]],["2.28. async_closure","language-features/async-closure",[C[110]]],["2.29. auto_traits","language-features/auto-traits",[C[110]]],["2.30. avx512_target_feature","language-features/avx512-target-feature",[C[110]]],["2.31. box_patterns","language-features/box-patterns",[C[110]]],["2.32. box_syntax","language-features/box-syntax",[C[110]]],["2.33. bpf_target_feature","language-features/bpf-target-feature",[C[110]]],["2.34. c_unwind","language-features/c-unwind",[C[110]]],["2.35. c_variadic","language-features/c-variadic",[C[110]]],["2.36. capture_disjoint_fields","language-features/capture-disjoint-fields",[C[110]]],["2.37. cfg_panic","language-features/cfg-panic",[C[110]]],["2.38. cfg_sanitize","language-features/cfg-sanitize",[C[110]]],["2.39. cfg_target_abi","language-features/cfg-target-abi",[C[110]]],["2.40. cfg_target_has_atomic","language-features/cfg-target-has-atomic",[C[110]]],["2.41. cfg_target_thread_local","language-features/cfg-target-thread-local",[C[110]]],["2.42. cfg_version","language-features/cfg-version",[C[110]]],["2.43. closure_track_caller","language-features/closure-track-caller",[C[110]]],["2.44. cmpxchg16b_target_feature","language-features/cmpxchg16b-target-feature",[C[110]]],["2.45. cmse_nonsecure_entry","language-features/cmse-nonsecure-entry",[C[110]]],["2.46. compiler_builtins","language-features/compiler-builtins",[C[110]]],["2.47. const_async_blocks","language-features/const-async-blocks",[C[110]]],["2.48. const_eval_limit","language-features/const-eval-limit",[C[110]]],["2.49. const_extern_fn","language-features/const-extern-fn",[C[110]]],["2.50. const_fn_floating_point_arithmetic","language-features/const-fn-floating-point-arithmetic",[C[110]]],["2.51. const_fn_fn_ptr_basics","language-features/const-fn-fn-ptr-basics",[C[110]]],["2.52. const_fn_trait_bound","language-features/const-fn-trait-bound",[C[110]]],["2.53. const_for","language-features/const-for",[C[110]]],["2.54. const_impl_trait","language-features/const-impl-trait",[C[110]]],["2.55. const_mut_refs","language-features/const-mut-refs",[C[110]]],["2.56. const_precise_live_drops","language-features/const-precise-live-drops",[C[110]]],["2.57. const_refs_to_cell","language-features/const-refs-to-cell",[C[110]]],["2.58. const_trait_impl","language-features/const-trait-impl",[C[110]]],["2.59. const_try","language-features/const-try",[C[110]]],["2.60. crate_visibility_modifier","language-features/crate-visibility-modifier",[C[110]]],["2.61. custom_inner_attributes","language-features/custom-inner-attributes",[C[110]]],["2.62. custom_test_frameworks","language-features/custom-test-frameworks",[C[110]]],["2.63. decl_macro","language-features/decl-macro",[C[110]]],["2.64. default_alloc_error_handler","language-features/default-alloc-error-handler",[C[110]]],["2.65. default_type_parameter_fallback","language-features/default-type-parameter-fallback",[C[110]]],["2.66. derive_default_enum","language-features/derive-default-enum",[C[110]]],["2.67. doc_auto_cfg","language-features/doc-auto-cfg",[C[110]]],["2.68. doc_cfg","language-features/doc-cfg",[C[110]]],["2.69. doc_cfg_hide","language-features/doc-cfg-hide",[C[110]]],["2.70. doc_masked","language-features/doc-masked",[C[110]]],["2.71. doc_notable_trait","language-features/doc-notable-trait",[C[110]]],["2.72. dropck_eyepatch","language-features/dropck-eyepatch",[C[110]]],["2.73. ermsb_target_feature","language-features/ermsb-target-feature",[C[110]]],["2.74. exclusive_range_pattern","language-features/exclusive-range-pattern",[C[110]]],["2.75. exhaustive_patterns","language-features/exhaustive-patterns",[C[110]]],["2.76. explicit_generic_args_with_impl_trait","language-features/explicit-generic-args-with-impl-trait",[C[110]]],["2.77. extern_types","language-features/extern-types",[C[110]]],["2.78. f16c_target_feature","language-features/f16c-target-feature",[C[110]]],["2.79. ffi_const","language-features/ffi-const",[C[110]]],["2.80. ffi_pure","language-features/ffi-pure",[C[110]]],["2.81. ffi_returns_twice","language-features/ffi-returns-twice",[C[110]]],["2.82. fn_align","language-features/fn-align",[C[110]]],["2.83. fundamental","language-features/fundamental",[C[110]]],["2.84. generators","language-features/generators",[C[110]]],["2.85. generic_arg_infer","language-features/generic-arg-infer",[C[110]]],["2.86. generic_associated_types","language-features/generic-associated-types",[C[110]]],["2.87. generic_const_exprs","language-features/generic-const-exprs",[C[110]]],["2.88. half_open_range_patterns","language-features/half-open-range-patterns",[C[110]]],["2.89. hexagon_target_feature","language-features/hexagon-target-feature",[C[110]]],["2.90. if_let_guard","language-features/if-let-guard",[C[110]]],["2.91. imported_main","language-features/imported-main",[C[110]]],["2.92. in_band_lifetimes","language-features/in-band-lifetimes",[C[110]]],["2.93. infer_static_outlives_requirements","language-features/infer-static-outlives-requirements",[C[110]]],["2.94. inherent_associated_types","language-features/inherent-associated-types",[C[110]]],["2.95. inline_const","language-features/inline-const",[C[110]]],["2.96. inline_const_pat","language-features/inline-const-pat",[C[110]]],["2.97. intra_doc_pointers","language-features/intra-doc-pointers",[C[110]]],["2.98. intrinsics","language-features/intrinsics",[C[110]]],["2.99. isa_attribute","language-features/isa-attribute",[C[110]]],["2.100. label_break_value","language-features/label-break-value",[C[110]]],["2.101. lang_items","language-features/lang-items",[C[110]]],["2.102. large_assignments","language-features/large-assignments",[C[110]]],["2.103. let_chains","language-features/let-chains",[C[110]]],["2.104. let_else","language-features/let-else",[C[110]]],["2.105. link_cfg","language-features/link-cfg",[C[110]]],["2.106. link_llvm_intrinsics","language-features/link-llvm-intrinsics",[C[110]]],["2.107. linkage","language-features/linkage",[C[110]]],["2.108. lint_reasons","language-features/lint-reasons",[C[110]]],["2.109. marker_trait_attr","language-features/marker-trait-attr",[C[110]]],["2.110. min_specialization","language-features/min-specialization",[C[110]]],["2.111. mips_target_feature","language-features/mips-target-feature",[C[110]]],["2.112. more_qualified_paths","language-features/more-qualified-paths",[C[110]]],["2.113. movbe_target_feature","language-features/movbe-target-feature",[C[110]]],["2.114. must_not_suspend","language-features/must-not-suspend",[C[110]]],["2.115. naked_functions","language-features/naked-functions",[C[110]]],["2.116. native_link_modifiers","language-features/native-link-modifiers",[C[110]]],["2.117. native_link_modifiers_as_needed","language-features/native-link-modifiers-as-needed",[C[110]]],["2.118. native_link_modifiers_bundle","language-features/native-link-modifiers-bundle",[C[110]]],["2.119. native_link_modifiers_verbatim","language-features/native-link-modifiers-verbatim",[C[110]]],["2.120. native_link_modifiers_whole_archive","language-features/native-link-modifiers-whole-archive",[C[110]]],["2.121. needs_panic_runtime","language-features/needs-panic-runtime",[C[110]]],["2.122. negative_impls","language-features/negative-impls",[C[110]]],["2.123. never_type","language-features/never-type",[C[110]]],["2.124. never_type_fallback","language-features/never-type-fallback",[C[110]]],["2.125. nll","language-features/nll",[C[110]]],["2.126. no_core","language-features/no-core",[C[110]]],["2.127. no_coverage","language-features/no-coverage",[C[110]]],["2.128. no_niche","language-features/no-niche",[C[110]]],["2.129. no_sanitize","language-features/no-sanitize",[C[110]]],["2.130. non_exhaustive_omitted_patterns_lint","language-features/non-exhaustive-omitted-patterns-lint",[C[110]]],["2.131. object_safe_for_dispatch","language-features/object-safe-for-dispatch",[C[110]]],["2.132. omit_gdb_pretty_printer_section","language-features/omit-gdb-pretty-printer-section",[C[110]]],["2.133. optimize_attribute","language-features/optimize-attribute",[C[110]]],["2.134. panic_runtime","language-features/panic-runtime",[C[110]]],["2.135. platform_intrinsics","language-features/platform-intrinsics",[C[110]]],["2.136. plugin","language-features/plugin",[C[110]]],["2.137. powerpc_target_feature","language-features/powerpc-target-feature",[C[110]]],["2.138. precise_pointer_size_matching","language-features/precise-pointer-size-matching",[C[110]]],["2.139. prelude_import","language-features/prelude-import",[C[110]]],["2.140. proc_macro_hygiene","language-features/proc-macro-hygiene",[C[110]]],["2.141. profiler_runtime","language-features/profiler-runtime",[C[110]]],["2.142. raw_dylib","language-features/raw-dylib",[C[110]]],["2.143. raw_ref_op","language-features/raw-ref-op",[C[110]]],["2.144. register_attr","language-features/register-attr",[C[110]]],["2.145. register_tool","language-features/register-tool",[C[110]]],["2.146. repr_simd","language-features/repr-simd",[C[110]]],["2.147. repr128","language-features/repr128",[C[110]]],["2.148. riscv_target_feature","language-features/riscv-target-feature",[C[110]]],["2.149. rtm_target_feature","language-features/rtm-target-feature",[C[110]]],["2.150. rustc_allow_const_fn_unstable","language-features/rustc-allow-const-fn-unstable",[C[110]]],["2.151. rustc_attrs","language-features/rustc-attrs",[C[110]]],["2.152. rustc_private","language-features/rustc-private",[C[110]]],["2.153. rustdoc_internals","language-features/rustdoc-internals",[C[110]]],["2.154. simd_ffi","language-features/simd-ffi",[C[110]]],["2.155. specialization","language-features/specialization",[C[110]]],["2.156. sse4a_target_feature","language-features/sse4a-target-feature",[C[110]]],["2.157. staged_api","language-features/staged-api",[C[110]]],["2.158. start","language-features/start",[C[110]]],["2.159. static_nobundle","language-features/static-nobundle",[C[110]]],["2.160. stmt_expr_attributes","language-features/stmt-expr-attributes",[C[110]]],["2.161. structural_match","language-features/structural-match",[C[110]]],["2.162. target_feature_11","language-features/target-feature-11",[C[110]]],["2.163. tbm_target_feature","language-features/tbm-target-feature",[C[110]]],["2.164. test_2018_feature","language-features/test-2018-feature",[C[110]]],["2.165. thread_local","language-features/thread-local",[C[110]]],["2.166. trait_alias","language-features/trait-alias",[C[110]]],["2.167. trait_upcasting","language-features/trait-upcasting",[C[110]]],["2.168. transparent_unions","language-features/transparent-unions",[C[110]]],["2.169. trivial_bounds","language-features/trivial-bounds",[C[110]]],["2.170. try_blocks","language-features/try-blocks",[C[110]]],["2.171. type_alias_impl_trait","language-features/type-alias-impl-trait",[C[110]]],["2.172. type_ascription","language-features/type-ascription",[C[110]]],["2.173. type_changing_struct_update","language-features/type-changing-struct-update",[C[110]]],["2.174. unboxed_closures","language-features/unboxed-closures",[C[110]]],["2.175. unsized_fn_params","language-features/unsized-fn-params",[C[110]]],["2.176. unsized_locals","language-features/unsized-locals",[C[110]]],["2.177. unsized_tuple_coercion","language-features/unsized-tuple-coercion",[C[110]]],["2.178. untagged_unions","language-features/untagged-unions",[C[110]]],["2.179. wasm_abi","language-features/wasm-abi",[C[110]]],["2.180. wasm_target_feature","language-features/wasm-target-feature",[C[110]]],[C[111],"library-features",N],["3.1. alloc_error_hook","library-features/alloc-error-hook",[C[111]]],["3.2. alloc_internals","library-features/alloc-internals",[C[111]]],["3.3. alloc_layout_extra","library-features/alloc-layout-extra",[C[111]]],["3.4. allocator_api","library-features/allocator-api",[C[111]]],["3.5. arc_new_cyclic","library-features/arc-new-cyclic",[C[111]]],["3.6. array_chunks","library-features/array-chunks",[C[111]]],["3.7. array_error_internals","library-features/array-error-internals",[C[111]]],["3.8. array_from_fn","library-features/array-from-fn",[C[111]]],["3.9. array_into_iter_constructors","library-features/array-into-iter-constructors",[C[111]]],["3.10. array_methods","library-features/array-methods",[C[111]]],["3.11. array_try_map","library-features/array-try-map",[C[111]]],["3.12. array_windows","library-features/array-windows",[C[111]]],["3.13. array_zip","library-features/array-zip",[C[111]]],["3.14. as_array_of_cells","library-features/as-array-of-cells",[C[111]]],["3.15. assert_matches","library-features/assert-matches",[C[111]]],["3.16. async_stream","library-features/async-stream",[C[111]]],["3.17. atomic_from_mut","library-features/atomic-from-mut",[C[111]]],["3.18. atomic_mut_ptr","library-features/atomic-mut-ptr",[C[111]]],["3.19. backtrace","library-features/backtrace",[C[111]]],["3.20. backtrace_frames","library-features/backtrace-frames",[C[111]]],["3.21. bench_black_box","library-features/bench-black-box",[C[111]]],["3.22. bigint_helper_methods","library-features/bigint-helper-methods",[C[111]]],["3.23. binary_heap_as_slice","library-features/binary-heap-as-slice",[C[111]]],["3.24. binary_heap_drain_sorted","library-features/binary-heap-drain-sorted",[C[111]]],["3.25. binary_heap_into_iter_sorted","library-features/binary-heap-into-iter-sorted",[C[111]]],["3.26. binary_heap_retain","library-features/binary-heap-retain",[C[111]]],["3.27. bool_to_option","library-features/bool-to-option",[C[111]]],["3.28. bound_as_ref","library-features/bound-as-ref",[C[111]]],["3.29. bound_map","library-features/bound-map",[C[111]]],["3.30. box_into_boxed_slice","library-features/box-into-boxed-slice",[C[111]]],["3.31. box_into_inner","library-features/box-into-inner",[C[111]]],["3.32. box_into_pin","library-features/box-into-pin",[C[111]]],["3.33. btree_drain_filter","library-features/btree-drain-filter",[C[111]]],["3.34. buf_read_has_data_left","library-features/buf-read-has-data-left",[C[111]]],["3.35. build_hasher_simple_hash_one","library-features/build-hasher-simple-hash-one",[C[111]]],["3.36. c_size_t","library-features/c-size-t",[C[111]]],["3.37. c_void_variant","library-features/c-void-variant",[C[111]]],["3.38. can_vector","library-features/can-vector",[C[111]]],["3.39. cell_filter_map","library-features/cell-filter-map",[C[111]]],["3.40. cell_leak","library-features/cell-leak",[C[111]]],["3.41. cell_update","library-features/cell-update",[C[111]]],["3.42. cfg_accessible","library-features/cfg-accessible",[C[111]]],["3.43. cfg_eval","library-features/cfg-eval",[C[111]]],["3.44. char_error_internals","library-features/char-error-internals",[C[111]]],["3.45. char_indices_offset","library-features/char-indices-offset",[C[111]]],["3.46. char_internals","library-features/char-internals",[C[111]]],["3.47. coerce_unsized","library-features/coerce-unsized",[C[111]]],["3.48. concat_bytes","library-features/concat-bytes",[C[111]]],["3.49. concat_idents","library-features/concat-idents",[C[111]]],["3.50. const_align_of_val","library-features/const-align-of-val",[C[111]]],["3.51. const_align_of_val_raw","library-features/const-align-of-val-raw",[C[111]]],["3.52. const_align_offset","library-features/const-align-offset",[C[111]]],["3.53. const_alloc_error","library-features/const-alloc-error",[C[111]]],["3.54. const_alloc_layout","library-features/const-alloc-layout",[C[111]]],["3.55. const_arguments_as_str","library-features/const-arguments-as-str",[C[111]]],["3.56. const_array_from_ref","library-features/const-array-from-ref",[C[111]]],["3.57. const_array_into_iter_constructors","library-features/const-array-into-iter-constructors",[C[111]]],["3.58. const_assert_type2","library-features/const-assert-type2",[C[111]]],["3.59. const_assume","library-features/const-assume",[C[111]]],["3.60. const_bigint_helper_methods","library-features/const-bigint-helper-methods",[C[111]]],["3.61. const_black_box","library-features/const-black-box",[C[111]]],["3.62. const_bool_to_option","library-features/const-bool-to-option",[C[111]]],["3.63. const_borrow","library-features/const-borrow",[C[111]]],["3.64. const_box","library-features/const-box",[C[111]]],["3.65. const_btree_new","library-features/const-btree-new",[C[111]]],["3.66. const_caller_location","library-features/const-caller-location",[C[111]]],["3.67. const_cell_into_inner","library-features/const-cell-into-inner",[C[111]]],["3.68. const_char_convert","library-features/const-char-convert",[C[111]]],["3.69. const_convert","library-features/const-convert",[C[111]]],["3.70. const_cow_is_borrowed","library-features/const-cow-is-borrowed",[C[111]]],["3.71. const_default_impls","library-features/const-default-impls",[C[111]]],["3.72. const_deref","library-features/const-deref",[C[111]]],["3.73. const_discriminant","library-features/const-discriminant",[C[111]]],["3.74. const_eval_select","library-features/const-eval-select",[C[111]]],["3.75. const_float_bits_conv","library-features/const-float-bits-conv",[C[111]]],["3.76. const_float_classify","library-features/const-float-classify",[C[111]]],["3.77. const_fmt_arguments_new","library-features/const-fmt-arguments-new",[C[111]]],["3.78. const_format_args","library-features/const-format-args",[C[111]]],["3.79. const_heap","library-features/const-heap",[C[111]]],["3.80. const_inherent_unchecked_arith","library-features/const-inherent-unchecked-arith",[C[111]]],["3.81. const_int_unchecked_arith","library-features/const-int-unchecked-arith",[C[111]]],["3.82. const_intrinsic_copy","library-features/const-intrinsic-copy",[C[111]]],["3.83. const_intrinsic_forget","library-features/const-intrinsic-forget",[C[111]]],["3.84. const_intrinsic_raw_eq","library-features/const-intrinsic-raw-eq",[C[111]]],["3.85. const_io_structs","library-features/const-io-structs",[C[111]]],["3.86. const_ip","library-features/const-ip",[C[111]]],["3.87. const_ipv4","library-features/const-ipv4",[C[111]]],["3.88. const_ipv6","library-features/const-ipv6",[C[111]]],["3.89. const_likely","library-features/const-likely",[C[111]]],["3.90. const_maybe_uninit_as_mut_ptr","library-features/const-maybe-uninit-as-mut-ptr",[C[111]]],["3.91. const_maybe_uninit_assume_init","library-features/const-maybe-uninit-assume-init",[C[111]]],["3.92. const_maybe_uninit_write","library-features/const-maybe-uninit-write",[C[111]]],["3.93. const_maybe_uninit_zeroed","library-features/const-maybe-uninit-zeroed",[C[111]]],["3.94. const_nonnull_slice_from_raw_parts","library-features/const-nonnull-slice-from-raw-parts",[C[111]]],["3.95. const_num_from_num","library-features/const-num-from-num",[C[111]]],["3.96. const_ops","library-features/const-ops",[C[111]]],["3.97. const_option","library-features/const-option",[C[111]]],["3.98. const_option_cloned","library-features/const-option-cloned",[C[111]]],["3.99. const_option_ext","library-features/const-option-ext",[C[111]]],["3.100. const_pin","library-features/const-pin",[C[111]]],["3.101. const_pref_align_of","library-features/const-pref-align-of",[C[111]]],["3.102. const_ptr_as_ref","library-features/const-ptr-as-ref",[C[111]]],["3.103. const_ptr_is_null","library-features/const-ptr-is-null",[C[111]]],["3.104. const_ptr_offset","library-features/const-ptr-offset",[C[111]]],["3.105. const_ptr_offset_from","library-features/const-ptr-offset-from",[C[111]]],["3.106. const_ptr_read","library-features/const-ptr-read",[C[111]]],["3.107. const_ptr_write","library-features/const-ptr-write",[C[111]]],["3.108. const_raw_ptr_comparison","library-features/const-raw-ptr-comparison",[C[111]]],["3.109. const_replace","library-features/const-replace",[C[111]]],["3.110. const_result","library-features/const-result",[C[111]]],["3.111. const_size_of_val","library-features/const-size-of-val",[C[111]]],["3.112. const_size_of_val_raw","library-features/const-size-of-val-raw",[C[111]]],["3.113. const_slice_first_last","library-features/const-slice-first-last",[C[111]]],["3.114. const_slice_from_raw_parts","library-features/const-slice-from-raw-parts",[C[111]]],["3.115. const_slice_from_ref","library-features/const-slice-from-ref",[C[111]]],["3.116. const_slice_ptr_len","library-features/const-slice-ptr-len",[C[111]]],["3.117. const_socketaddr","library-features/const-socketaddr",[C[111]]],["3.118. const_str_from_utf8","library-features/const-str-from-utf8",[C[111]]],["3.119. const_str_from_utf8_unchecked_mut","library-features/const-str-from-utf8-unchecked-mut",[C[111]]],["3.120. const_swap","library-features/const-swap",[C[111]]],["3.121. const_transmute_copy","library-features/const-transmute-copy",[C[111]]],["3.122. const_type_id","library-features/const-type-id",[C[111]]],["3.123. const_type_name","library-features/const-type-name",[C[111]]],["3.124. const_unsafecell_get_mut","library-features/const-unsafecell-get-mut",[C[111]]],["3.125. container_error_extra","library-features/container-error-extra",[C[111]]],["3.126. control_flow_enum","library-features/control-flow-enum",[C[111]]],["3.127. convert_float_to_int","library-features/convert-float-to-int",[C[111]]],["3.128. core_intrinsics","library-features/core-intrinsics",[C[111]]],["3.129. core_panic","library-features/core-panic",[C[111]]],["3.130. core_private_bignum","library-features/core-private-bignum",[C[111]]],["3.131. core_private_diy_float","library-features/core-private-diy-float",[C[111]]],["3.132. cow_is_borrowed","library-features/cow-is-borrowed",[C[111]]],["3.133. cursor_remaining","library-features/cursor-remaining",[C[111]]],["3.134. deadline_api","library-features/deadline-api",[C[111]]],["3.135. dec2flt","library-features/dec2flt",[C[111]]],["3.136. default_free_fn","library-features/default-free-fn",[C[111]]],["3.137. derive_clone_copy","library-features/derive-clone-copy",[C[111]]],["3.138. derive_eq","library-features/derive-eq",[C[111]]],["3.139. dir_entry_ext2","library-features/dir-entry-ext2",[C[111]]],["3.140. discriminant_kind","library-features/discriminant-kind",[C[111]]],["3.141. dispatch_from_dyn","library-features/dispatch-from-dyn",[C[111]]],["3.142. div_duration","library-features/div-duration",[C[111]]],["3.143. downcast_unchecked","library-features/downcast-unchecked",[C[111]]],["3.144. drain_filter","library-features/drain-filter",[C[111]]],["3.145. duration_checked_float","library-features/duration-checked-float",[C[111]]],["3.146. duration_constants","library-features/duration-constants",[C[111]]],["3.147. duration_consts_float","library-features/duration-consts-float",[C[111]]],["3.148. edition_panic","library-features/edition-panic",[C[111]]],["3.149. entry_insert","library-features/entry-insert",[C[111]]],["3.150. error_iter","library-features/error-iter",[C[111]]],["3.151. error_type_id","library-features/error-type-id",[C[111]]],["3.152. exact_size_is_empty","library-features/exact-size-is-empty",[C[111]]],["3.153. exit_status_error","library-features/exit-status-error",[C[111]]],["3.154. extend_one","library-features/extend-one",[C[111]]],["3.155. fd","library-features/fd",[C[111]]],["3.156. fd_read","library-features/fd-read",[C[111]]],["3.157. float_minimum_maximum","library-features/float-minimum-maximum",[C[111]]],["3.158. flt2dec","library-features/flt2dec",[C[111]]],["3.159. fmt_internals","library-features/fmt-internals",[C[111]]],["3.160. fn_traits","library-features/fn-traits",[C[111]]],["3.161. forget_unsized","library-features/forget-unsized",[C[111]]],["3.162. format_args_nl","library-features/format-args-nl",[C[111]]],["3.163. future_join","library-features/future-join",[C[111]]],["3.164. future_poll_fn","library-features/future-poll-fn",[C[111]]],["3.165. gen_future","library-features/gen-future",[C[111]]],["3.166. generator_trait","library-features/generator-trait",[C[111]]],["3.167. get_mut_unchecked","library-features/get-mut-unchecked",[C[111]]],["3.168. hash_drain_filter","library-features/hash-drain-filter",[C[111]]],["3.169. hash_raw_entry","library-features/hash-raw-entry",[C[111]]],["3.170. hash_set_entry","library-features/hash-set-entry",[C[111]]],["3.171. hashmap_internals","library-features/hashmap-internals",[C[111]]],["3.172. inherent_ascii_escape","library-features/inherent-ascii-escape",[C[111]]],["3.173. inplace_iteration","library-features/inplace-iteration",[C[111]]],["3.174. int_abs_diff","library-features/int-abs-diff",[C[111]]],["3.175. int_error_internals","library-features/int-error-internals",[C[111]]],["3.176. int_log","library-features/int-log",[C[111]]],["3.177. int_roundings","library-features/int-roundings",[C[111]]],["3.178. integer_atomics","library-features/integer-atomics",[C[111]]],["3.179. internal_output_capture","library-features/internal-output-capture",[C[111]]],["3.180. into_future","library-features/into-future",[C[111]]],["3.181. io_error_more","library-features/io-error-more",[C[111]]],["3.182. io_error_other","library-features/io-error-other",[C[111]]],["3.183. io_error_uncategorized","library-features/io-error-uncategorized",[C[111]]],["3.184. io_read_to_string","library-features/io-read-to-string",[C[111]]],["3.185. io_safety","library-features/io-safety",[C[111]]],["3.186. io_slice_advance","library-features/io-slice-advance",[C[111]]],["3.187. ip","library-features/ip",[C[111]]],["3.188. is_sorted","library-features/is-sorted",[C[111]]],["3.189. iter_advance_by","library-features/iter-advance-by",[C[111]]],["3.190. iter_intersperse","library-features/iter-intersperse",[C[111]]],["3.191. iter_is_partitioned","library-features/iter-is-partitioned",[C[111]]],["3.192. iter_order_by","library-features/iter-order-by",[C[111]]],["3.193. iter_partition_in_place","library-features/iter-partition-in-place",[C[111]]],["3.194. iterator_try_reduce","library-features/iterator-try-reduce",[C[111]]],["3.195. layout_for_ptr","library-features/layout-for-ptr",[C[111]]],["3.196. liballoc_internals","library-features/liballoc-internals",[C[111]]],["3.197. libstd_sys_internals","library-features/libstd-sys-internals",[C[111]]],["3.198. libstd_thread_internals","library-features/libstd-thread-internals",[C[111]]],["3.199. linked_list_cursors","library-features/linked-list-cursors",[C[111]]],["3.200. linked_list_remove","library-features/linked-list-remove",[C[111]]],["3.201. linux_pidfd","library-features/linux-pidfd",[C[111]]],["3.202. llvm_asm","library-features/llvm-asm",[C[111]]],["3.203. log_syntax","library-features/log-syntax",[C[111]]],["3.204. map_entry_replace","library-features/map-entry-replace",[C[111]]],["3.205. map_first_last","library-features/map-first-last",[C[111]]],["3.206. map_try_insert","library-features/map-try-insert",[C[111]]],["3.207. maybe_uninit_array_assume_init","library-features/maybe-uninit-array-assume-init",[C[111]]],["3.208. maybe_uninit_extra","library-features/maybe-uninit-extra",[C[111]]],["3.209. maybe_uninit_slice","library-features/maybe-uninit-slice",[C[111]]],["3.210. maybe_uninit_uninit_array","library-features/maybe-uninit-uninit-array",[C[111]]],["3.211. maybe_uninit_write_slice","library-features/maybe-uninit-write-slice",[C[111]]],["3.212. mixed_integer_ops","library-features/mixed-integer-ops",[C[111]]],["3.213. mutex_unlock","library-features/mutex-unlock",[C[111]]],["3.214. new_uninit","library-features/new-uninit",[C[111]]],["3.215. nonnull_slice_from_raw_parts","library-features/nonnull-slice-from-raw-parts",[C[111]]],["3.216. nonzero_ops","library-features/nonzero-ops",[C[111]]],["3.217. numfmt","library-features/numfmt",[C[111]]],["3.218. once_cell","library-features/once-cell",[C[111]]],["3.219. one_sided_range","library-features/one-sided-range",[C[111]]],["3.220. option_get_or_insert_default","library-features/option-get-or-insert-default",[C[111]]],["3.221. option_result_contains","library-features/option-result-contains",[C[111]]],["3.222. option_zip","library-features/option-zip",[C[111]]],["3.223. panic_abort","library-features/panic-abort",[C[111]]],["3.224. panic_always_abort","library-features/panic-always-abort",[C[111]]],["3.225. panic_info_message","library-features/panic-info-message",[C[111]]],["3.226. panic_internals","library-features/panic-internals",[C[111]]],["3.227. panic_unwind","library-features/panic-unwind",[C[111]]],["3.228. path_file_prefix","library-features/path-file-prefix",[C[111]]],["3.229. path_try_exists","library-features/path-try-exists",[C[111]]],["3.230. pattern","library-features/pattern",[C[111]]],["3.231. peer_credentials_unix_socket","library-features/peer-credentials-unix-socket",[C[111]]],["3.232. pin_deref_mut","library-features/pin-deref-mut",[C[111]]],["3.233. pin_static_ref","library-features/pin-static-ref",[C[111]]],["3.234. poll_ready","library-features/poll-ready",[C[111]]],["3.235. portable_simd","library-features/portable-simd",[C[111]]],["3.236. print_internals","library-features/print-internals",[C[111]]],["3.237. proc_macro_def_site","library-features/proc-macro-def-site",[C[111]]],["3.238. proc_macro_diagnostic","library-features/proc-macro-diagnostic",[C[111]]],["3.239. proc_macro_expand","library-features/proc-macro-expand",[C[111]]],["3.240. proc_macro_internals","library-features/proc-macro-internals",[C[111]]],["3.241. proc_macro_quote","library-features/proc-macro-quote",[C[111]]],["3.242. proc_macro_span","library-features/proc-macro-span",[C[111]]],["3.243. proc_macro_span_shrink","library-features/proc-macro-span-shrink",[C[111]]],["3.244. proc_macro_tracked_env","library-features/proc-macro-tracked-env",[C[111]]],["3.245. process_exitcode_placeholder","library-features/process-exitcode-placeholder",[C[111]]],["3.246. process_internals","library-features/process-internals",[C[111]]],["3.247. profiler_runtime_lib","library-features/profiler-runtime-lib",[C[111]]],["3.248. ptr_as_uninit","library-features/ptr-as-uninit",[C[111]]],["3.249. ptr_internals","library-features/ptr-internals",[C[111]]],["3.250. ptr_metadata","library-features/ptr-metadata",[C[111]]],["3.251. ptr_to_from_bits","library-features/ptr-to-from-bits",[C[111]]],["3.252. pub_crate_should_not_need_unstable_attr","library-features/pub-crate-should-not-need-unstable-attr",[C[111]]],["3.253. raw_os_nonzero","library-features/raw-os-nonzero",[C[111]]],["3.254. raw_vec_internals","library-features/raw-vec-internals",[C[111]]],["3.255. read_buf","library-features/read-buf",[C[111]]],["3.256. ready_macro","library-features/ready-macro",[C[111]]],["3.257. receiver_trait","library-features/receiver-trait",[C[111]]],["3.258. restricted_std","library-features/restricted-std",[C[111]]],["3.259. result_contains_err","library-features/result-contains-err",[C[111]]],["3.260. result_flattening","library-features/result-flattening",[C[111]]],["3.261. result_into_ok_or_err","library-features/result-into-ok-or-err",[C[111]]],["3.262. result_option_inspect","library-features/result-option-inspect",[C[111]]],["3.263. rt","library-features/rt",[C[111]]],["3.264. saturating_int_impl","library-features/saturating-int-impl",[C[111]]],["3.265. sealed","library-features/sealed",[C[111]]],["3.266. seek_stream_len","library-features/seek-stream-len",[C[111]]],["3.267. set_ptr_value","library-features/set-ptr-value",[C[111]]],["3.268. setgroups","library-features/setgroups",[C[111]]],["3.269. sgx_platform","library-features/sgx-platform",[C[111]]],["3.270. slice_as_chunks","library-features/slice-as-chunks",[C[111]]],["3.271. slice_concat_ext","library-features/slice-concat-ext",[C[111]]],["3.272. slice_concat_trait","library-features/slice-concat-trait",[C[111]]],["3.273. slice_group_by","library-features/slice-group-by",[C[111]]],["3.274. slice_index_methods","library-features/slice-index-methods",[C[111]]],["3.275. slice_internals","library-features/slice-internals",[C[111]]],["3.276. slice_partition_at_index","library-features/slice-partition-at-index",[C[111]]],["3.277. slice_partition_dedup","library-features/slice-partition-dedup",[C[111]]],["3.278. slice_pattern","library-features/slice-pattern",[C[111]]],["3.279. slice_ptr_get","library-features/slice-ptr-get",[C[111]]],["3.280. slice_ptr_len","library-features/slice-ptr-len",[C[111]]],["3.281. slice_range","library-features/slice-range",[C[111]]],["3.282. slice_split_at_unchecked","library-features/slice-split-at-unchecked",[C[111]]],["3.283. slice_swap_unchecked","library-features/slice-swap-unchecked",[C[111]]],["3.284. slice_take","library-features/slice-take",[C[111]]],["3.285. solid_ext","library-features/solid-ext",[C[111]]],["3.286. sort_internals","library-features/sort-internals",[C[111]]],["3.287. split_array","library-features/split-array",[C[111]]],["3.288. std_internals","library-features/std-internals",[C[111]]],["3.289. stdin_forwarders","library-features/stdin-forwarders",[C[111]]],["3.290. stdio_locked","library-features/stdio-locked",[C[111]]],["3.291. stdsimd","library-features/stdsimd",[C[111]]],["3.292. step_trait","library-features/step-trait",[C[111]]],["3.293. str_internals","library-features/str-internals",[C[111]]],["3.294. str_split_as_str","library-features/str-split-as-str",[C[111]]],["3.295. str_split_inclusive_as_str","library-features/str-split-inclusive-as-str",[C[111]]],["3.296. str_split_whitespace_as_str","library-features/str-split-whitespace-as-str",[C[111]]],["3.297. stream_from_iter","library-features/stream-from-iter",[C[111]]],["3.298. string_extend_from_within","library-features/string-extend-from-within",[C[111]]],["3.299. string_remove_matches","library-features/string-remove-matches",[C[111]]],["3.300. tcp_linger","library-features/tcp-linger",[C[111]]],["3.301. tcplistener_into_incoming","library-features/tcplistener-into-incoming",[C[111]]],["3.302. termination_trait_lib","library-features/termination-trait-lib",[C[111]]],["3.303. test","library-features/test",[C[111]]],["3.304. thread_id_value","library-features/thread-id-value",[C[111]]],["3.305. thread_is_running","library-features/thread-is-running",[C[111]]],["3.306. thread_local_const_init","library-features/thread-local-const-init",[C[111]]],["3.307. thread_local_internals","library-features/thread-local-internals",[C[111]]],["3.308. thread_spawn_unchecked","library-features/thread-spawn-unchecked",[C[111]]],["3.309. toowned_clone_into","library-features/toowned-clone-into",[C[111]]],["3.310. total_cmp","library-features/total-cmp",[C[111]]],["3.311. trace_macros","library-features/trace-macros",[C[111]]],["3.312. track_path","library-features/track-path",[C[111]]],["3.313. trusted_len","library-features/trusted-len",[C[111]]],["3.314. trusted_random_access","library-features/trusted-random-access",[C[111]]],["3.315. trusted_step","library-features/trusted-step",[C[111]]],["3.316. try_find","library-features/try-find",[C[111]]],["3.317. try_reserve_2","library-features/try-reserve-2",[C[111]]],["3.318. try_reserve_kind","library-features/try-reserve-kind",[C[111]]],["3.319. try_trait_v2","library-features/try-trait-v2",[C[111]]],["3.320. try_trait_v2_residual","library-features/try-trait-v2-residual",[C[111]]],["3.321. type_name_of_val","library-features/type-name-of-val",[C[111]]],["3.322. unchecked_math","library-features/unchecked-math",[C[111]]],["3.323. unicode_internals","library-features/unicode-internals",[C[111]]],["3.324. unix_chown","library-features/unix-chown",[C[111]]],["3.325. unix_socket_abstract","library-features/unix-socket-abstract",[C[111]]],["3.326. unix_socket_ancillary_data","library-features/unix-socket-ancillary-data",[C[111]]],["3.327. unix_socket_peek","library-features/unix-socket-peek",[C[111]]],["3.328. unsize","library-features/unsize",[C[111]]],["3.329. unwrap_infallible","library-features/unwrap-infallible",[C[111]]],["3.330. unzip_option","library-features/unzip-option",[C[111]]],["3.331. update_panic_count","library-features/update-panic-count",[C[111]]],["3.332. variant_count","library-features/variant-count",[C[111]]],["3.333. vec_into_raw_parts","library-features/vec-into-raw-parts",[C[111]]],["3.334. vec_retain_mut","library-features/vec-retain-mut",[C[111]]],["3.335. vec_spare_capacity","library-features/vec-spare-capacity",[C[111]]],["3.336. vec_split_at_spare","library-features/vec-split-at-spare",[C[111]]],["3.337. wasi_ext","library-features/wasi-ext",[C[111]]],["3.338. windows_by_handle","library-features/windows-by-handle",[C[111]]],["3.339. windows_c","library-features/windows-c",[C[111]]],["3.340. windows_file_type_ext","library-features/windows-file-type-ext",[C[111]]],["3.341. windows_handle","library-features/windows-handle",[C[111]]],["3.342. windows_net","library-features/windows-net",[C[111]]],["3.343. windows_process_extensions_force_quotes","library-features/windows-process-extensions-force-quotes",[C[111]]],["3.344. windows_process_extensions_raw_arg","library-features/windows-process-extensions-raw-arg",[C[111]]],["3.345. windows_stdio","library-features/windows-stdio",[C[111]]],["3.346. wrapping_int_impl","library-features/wrapping-int-impl",[C[111]]],["3.347. wrapping_next_power_of_two","library-features/wrapping-next-power-of-two",[C[111]]],["3.348. write_all_vectored","library-features/write-all-vectored",[C[111]]]]},{"name":C[112],"url":"https://docs.rust-embedded.org/book/","pages":[[C[48],C[113],N],[C[114],C[115],[C[48]]],[C[116],C[117],[C[48]]],[C[118],C[119],[C[48]]],[C[49],C[120],[C[48]]],[C[121],C[122],[C[48],C[49]]],[C[123],C[124],[C[48],C[49]]],[C[125],C[126],[C[48],C[49]]],[C[127],C[128],[C[48],C[49]]],[C[50],C[129],N],[C[130],C[131],[C[50]]],[C[132],C[133],[C[50]]],[C[134],C[135],[C[50]]],[C[136],C[137],[C[50]]],[C[138],C[139],[C[50]]],[C[140],C[141],[C[50]]],[C[142],C[143],[C[50]]],["2.8. IO","start/io",[C[50]]],[C[51],C[144],N],[C[145],C[146],[C[51]]],[C[147],C[148],[C[51]]],[C[149],C[150],[C[51]]],[C[52],C[151],N],[C[152],C[153],[C[52]]],[C[154],C[155],[C[52]]],[C[156],C[157],[C[52]]],[C[158],C[159],[C[52]]],[C[160],C[161],N],[C[162],C[163],N],[C[164],C[165],N],[C[53],C[166],N],[C[54],C[167],[C[53]]],[C[168],C[169],[C[53],C[54]]],[C[170],C[171],[C[53],C[54]]],[C[172],C[173],[C[53],C[54]]],[C[174],C[175],[C[53],C[54]]],[C[176],C[177],[C[53],C[54]]],[C[178],C[179],N],[C[55],C[180],N],[C[181],C[182],[C[55]]],[C[183],C[184],[C[55]]],[C[56],C[185],N],[C[186],C[187],[C[56]]],[C[188],C[189],[C[56]]],[C[190],C[57],N]]},{"name":"Guide to Rustc Development","url":"https://rustc-dev-guide.rust-lang.org/","pages":[[C[214],C[215],N],["Getting Started",C[216],N],[C[191],"building/how-to-build-and-run",N],["1.1. Prerequisites","building/prerequisites",[C[191]]],["1.2. Suggested Workflows","building/suggested",[C[191]]],["1.3. Distribution artifacts","building/build-install-distribution-artifacts",[C[191]]],["1.4. Documenting Compiler","building/compiler-documenting",[C[191]]],["1.5. Rustdoc overview","rustdoc",[C[191]]],["1.6. Adding a new target","building/new-target",[C[191]]],[C[192],"tests/intro",N],[C[193],"tests/running",[C[192]]],["2.1.1. Testing with Docker","tests/docker",[C[192],C[193]]],["2.1.2. Testing with CI","tests/ci",[C[192],C[193]]],["2.2. Adding new tests","tests/adding",[C[192]]],[C[194],"tests/compiletest",[C[192]]],["2.3.1. UI tests","tests/ui",[C[192],C[194]]],["2.3.2. Test headers","tests/headers",[C[192],C[194]]],["2.4. Performance testing","tests/perf",[C[192]]],["2.5. Crater","tests/crater",[C[192]]],[C[195],"compiler-debugging",N],["3.1. Using the tracing/logging instrumentation","tracing",[C[195]]],[C[196],"profiling",N],["4.1. with the linux perf tool","profiling/with_perf",[C[196]]],["4.2. with Windows Performance Analyzer","profiling/wpa_profiling",[C[196]]],["5. crates.io Dependencies","crates-io",N],["6. Introduction","contributing",N],["7. About the compiler team","compiler-team",N],["8. Using Git","git",N],["9. Mastering @rustbot","rustbot",N],["10. Walkthrough: a typical contribution","walkthrough",N],["11. Bug Fix Procedure","bug-fix-procedure",N],["12. Implementing new features","implementing_new_features",N],["13. Stability attributes","stability",N],["14. Stabilizing Features","stabilization_guide",N],["15. Feature Gates","feature-gates",N],["16. Coding conventions","conventions",N],[C[197],"notification-groups/about",N],["17.1. ARM","notification-groups/arm",[C[197]]],["17.2. Cleanup Crew","notification-groups/cleanup-crew",[C[197]]],["17.3. LLVM","notification-groups/llvm",[C[197]]],["17.4. RISC-V","notification-groups/risc-v",[C[197]]],["17.5. Windows","notification-groups/windows",[C[197]]],["18. Licenses","licenses",N],["19. Prologue","part-2-intro",N],["20. Overview of the Compiler","overview",N],["21. The compiler source code","compiler-src",N],["22. Bootstrapping","building/bootstrapping",N],[C[198],"query",N],["23.1. The Query Evaluation Model in Detail","queries/query-evaluation-model-in-detail",[C[198]]],["23.2. Incremental compilation","queries/incremental-compilation",[C[198]]],["23.3. Incremental compilation In Detail","queries/incremental-compilation-in-detail",[C[198]]],["23.4. Debugging and Testing","incrcomp-debugging",[C[198]]],["23.5. Salsa","salsa",[C[198]]],["24. Memory Management in Rustc","memory",N],["25. Serialization in Rustc","serialization",N],["26. Parallel Compilation","parallel-rustc",N],["27. Rustdoc internals","rustdoc-internals",N],["28. Prologue","part-3-intro",N],["29. Command-line arguments","cli",N],[C[199],"rustc-driver",N],["30.1. Ex: Type checking through rustc_interface","rustc-driver-interacting-with-the-ast",[C[199]]],["30.2. Ex: Getting diagnostics through rustc_interface","rustc-driver-getting-diagnostics",[C[199]]],[C[200],"syntax-intro",N],["31.1. Lexing and Parsing","the-parser",[C[200]]],["31.2. Macro expansion","macro-expansion",[C[200]]],["31.3. Name resolution","name-resolution",[C[200]]],["31.4. #[test] Implementation","test-implementation",[C[200]]],["31.5. Panic Implementation","panic-implementation",[C[200]]],["31.6. AST Validation","ast-validation",[C[200]]],["31.7. Feature Gate Checking","feature-gate-ck",[C[200]]],["31.8. Lang Items","lang-items",[C[200]]],[C[201],"hir",N],["32.1. Lowering AST to HIR","lowering",[C[201]]],["32.2. Debugging","hir-debugging",[C[201]]],["33. The THIR (Typed High-level IR)","thir",N],[C[202],"mir/index",N],["34.1. MIR construction","mir/construction",[C[202]]],["34.2. MIR visitor and traversal","mir/visitor",[C[202]]],["34.3. MIR passes: getting the MIR for a function","mir/passes",[C[202]]],["35. Identifiers in the Compiler",C[203],N],["36. Closure expansion","closure",N],["37. Inline assembly","asm",N],["38. Prologue","part-4-intro",N],[C[204],"ty",N],["39.1. Generics and substitutions","generics",[C[204]]],["39.2. TypeFolder and TypeFoldable","ty-fold",[C[204]]],["39.3. Generic arguments","generic_arguments",[C[204]]],["39.4. Constants in the type system","constants",[C[204]]],["40. Type inference","type-inference",N],[C[205],"traits/resolution",N],["41.1. Early and Late Bound Parameters","early-late-bound",[C[205]]],["41.2. Higher-ranked trait bounds","traits/hrtb",[C[205]]],["41.3. Caching subtleties","traits/caching",[C[205]]],["41.4. Specialization","traits/specialization",[C[205]]],[C[206],"traits/chalk",[C[205]]],["41.5.1. Lowering to logic","traits/lowering-to-logic",[C[205],C[206]]],["41.5.2. Goals and clauses","traits/goals-and-clauses",[C[205],C[206]]],["41.5.3. Canonical queries","traits/canonical-queries",[C[205],C[206]]],[C[207],"type-checking",N],["42.1. Method Lookup","method-lookup",[C[207]]],["42.2. Variance","variance",[C[207]]],["42.3. Opaque Types","opaque-types-type-alias-impl-trait",[C[207]]],["43. Pattern and Exhaustiveness Checking","pat-exhaustive-checking",N],["44. MIR dataflow","mir/dataflow",N],["45. Drop elaboration","mir/drop-elaboration",N],[C[208],"borrow_check",N],[C[209],"borrow_check/moves_and_initialization",[C[208]]],["46.1.1. Move paths","borrow_check/moves_and_initialization/move_paths",[C[208],C[209]]],["46.2. MIR type checker","borrow_check/type_check",[C[208]]],[C[210],"borrow_check/region_inference",[C[208]]],["46.3.1. Constraint propagation","borrow_check/region_inference/constraint_propagation",[C[208],C[210]]],["46.3.2. Lifetime parameters","borrow_check/region_inference/lifetime_parameters",[C[208],C[210]]],["46.3.3. Member constraints","borrow_check/region_inference/member_constraints",[C[208],C[210]]],["46.3.4. Placeholders and universes","borrow_check/region_inference/placeholders_and_universes",[C[208],C[210]]],["46.3.5. Closure constraints","borrow_check/region_inference/closure_constraints",[C[208],C[210]]],["46.3.6. Error reporting","borrow_check/region_inference/error_reporting",[C[208],C[210]]],["46.4. Two-phase-borrows","borrow_check/two_phase_borrows",[C[208]]],["47. Parameter Environments","param_env",N],[C[211],"diagnostics",N],["48.1. Creating Errors With SessionDiagnostic","diagnostics/sessiondiagnostic",[C[211]]],["48.2. LintStore","diagnostics/lintstore",[C[211]]],["48.3. Diagnostic Codes","diagnostics/diagnostic-codes",[C[211]]],["48.4. Diagnostic Items","diagnostics/diagnostic-items",[C[211]]],["49. Prologue","part-5-intro",N],["50. MIR optimizations","mir/optimizations",N],["51. Debugging","mir/debugging",N],[C[212],"const-eval",N],["52.1. miri const evaluator","miri",[C[212]]],["53. Monomorphization","backend/monomorph",N],["54. Lowering MIR","backend/lowering-mir",N],[C[213],"backend/codegen",N],["55.1. Updating LLVM","backend/updating-llvm",[C[213]]],["55.2. Debugging LLVM","backend/debugging",[C[213]]],["55.3. Backend Agnostic Codegen","backend/backend-agnostic",[C[213]]],["55.4. Implicit Caller Location","backend/implicit-caller-location",[C[213]]],["56. Libraries and Metadata","backend/libs-and-metadata",N],["57. Profile-guided Optimization","profile-guided-optimization",N],["58. LLVM Source-Based Code Coverage","llvm-coverage-instrumentation",N],["59. Sanitizers Support","sanitizers",N],["60. Debugging Support in the Rust Compiler","debugging-support-in-rustc",N],["Appendix A: Background topics","appendix/background",N],["Appendix B: Glossary",C[57],N],["Appendix C: Code Index","appendix/code-index",N],["Appendix D: Compiler Lecture Series","appendix/compiler-lecture",N],["Appendix E: Bibliography","appendix/bibliography",N],["Appendix Z: HumorRust","appendix/humorust",N]]},{"name":"Standard library developers Guide","url":"https://std-dev-guide.rust-lang.org/","pages":[[C[214],C[215],N],["Getting started",C[216],N],[C[217],"team",N],["1.1. Meetings","meetings",[C[217]]],["1.2. Membership","membership",[C[217]]],["1.3. Reviewing","reviewing",[C[217]]],[C[218],"feature-lifecycle/summary",N],["2.1. Landing new features","feature-lifecycle/new-unstable-features",[C[218]]],["2.2. Using tracking issues","feature-lifecycle/tracking-issues",[C[218]]],["2.3. Stabilizing features","feature-lifecycle/stabilization",[C[218]]],["2.4. Deprecating features","feature-lifecycle/deprecation",[C[218]]],[C[219],"code-considerations/summary",N],[C[220],"code-considerations/design/summary",[C[219]]],["3.1.1. Public APIs","code-considerations/design/public-apis",[C[219],C[220]]],["3.1.2. When to add #[must_use]","code-considerations/design/must-use",[C[219],C[220]]],[C[221],"code-considerations/breaking-changes/summary",[C[219]]],["3.2.1. Breakage from changing behavior","code-considerations/breaking-changes/behavior",[C[219],C[221]]],["3.2.2. Breakage from new trait impls","code-considerations/breaking-changes/new-trait-impls",[C[219],C[221]]],["3.2.3. #[fundamental] types","code-considerations/breaking-changes/fundamental",[C[219],C[221]]],["3.2.4. Breakage from changing the prelude","code-considerations/breaking-changes/prelude",[C[219],C[221]]],[C[222],"code-considerations/safety-and-soundness/summary",[C[219]]],["3.3.1. Generics and unsafe","code-considerations/safety-and-soundness/generics-and-unsafe",[C[219],C[222]]],["3.3.2. Drop and #[may_dangle]","code-considerations/safety-and-soundness/may-dangle",[C[219],C[222]]],["3.3.3. std::mem and exclusive references","code-considerations/safety-and-soundness/mem-and-exclusive-refs",[C[219],C[222]]],[C[223],"code-considerations/using-unstable-lang/summary",[C[219]]],["3.4.1. Const generics","code-considerations/using-unstable-lang/const-generics",[C[219],C[223]]],["3.4.2. Specialization","code-considerations/using-unstable-lang/specialization",[C[219],C[223]]],[C[224],"code-considerations/performance/summary",[C[219]]],["3.5.1. When to #[inline]","code-considerations/performance/inline",[C[219],C[224]]],[C[225],"documentation/summary",N],["4.1. doc alias policy","documentation/doc-alias-policy",[C[225]]],[C[226],"tools-and-bots/summary",N],["5.1. @bors","tools-and-bots/bors",[C[226]]],["5.2. @rust-timer","tools-and-bots/timer",[C[226]]],["5.3. @craterbot","tools-and-bots/crater",[C[226]]]]}]; \ No newline at end of file diff --git a/extension/index/caniuse.js b/extension/index/caniuse.js index d61a0c3c..16cae8c5 100644 --- a/extension/index/caniuse.js +++ b/extension/index/caniuse.js @@ -1 +1 @@ -var caniuseIndex=[["1.5","fs_canonicalize","fs_canonicalize","`fs::canonicalize`",1044],["1.5","vec_resize","vec_resize","`Vec::resize`",509],["1.54","hashmap_into_keys","map_into_keys_values","`HashMap::into_keys`",null],["1.54","btreemap_into_values","map_into_keys_values","`BTreeMap::into_values`",null],["1.54","hashmap_into_values","map_into_keys_values","`HashMap::into_values`",null],["1.54","extended_key_value_attrs","extended_key_value_attributes","macro expansion in key-value attributes",null],["1.54","btreemap_into_keys","map_into_keys_values","`BTreeMap::into_keys`",null],["1.36","const_nonnull_dangling","const_nonnull_dangling","`NonNull::dangling` as `const fn`",null],["1.36","const_needs_drop","const_needs_drop","`mem::needs_drop` as `const fn`",null],["1.36","maybe_uninit","maybe_uninit","`mem::MaybeUninit`",1892],["1.36","hashbrown",null,"`hashbrown::HashMap` as the implementation of `HashMap`",null],["1.36","string_from_string_ref",null,"`From<&String>` implementation for `String`",null],["1.36","alloc","alloc","the `alloc` crate",null],["1.36","const_layout_from_size_align_unchecked",null,"`alloc::Layout::from_size_align_unchecked` as `const fn`",null],["1.36","nll_2015",null,"Non-Lexical Lifetimes (NLL) on the 2015 edition",null],["1.36","const_nonnull_cast","const_nonnull_cast","`NonNull::cast` as `const fn`",null],["1.36","dbg_multiple_args",null,"multiple arguments in `dbg!` macro invocations",null],["1.36","string_borrow_mut_str",null,"`BorrowMut` implementation for `String`",null],["1.36","io_cursor_default",null,"`Default` implementation for `io::Cursor`",null],["1.11","nested_cfg_attr",null,"nested `cfg_attr` attributes",null],["1.55","control_flow","control_flow_enum_type","the `ControlFlow` enum",null],["1.55","range_from_patterns","half_open_range_patterns","\"RangeFrom\" patterns (`a..`)",null],["1.55","proc_macro_group_span_open","proc_macro_group_span","`Group::span_open`",null],["1.55","array_map","array_map","`[T; N]::map`",null],["1.55","proc_macro_group_span_close","proc_macro_group_span","`Group::span_close`",null],["1.55","maybe_uninit_write","maybe_uninit_write","`MaybeUninit::write`",null],["1.55","bound_cloned","bound_cloned","`Bound::cloned`",null],["1.32","const_slice_as_ptr","const_slice_as_ptr","`slice::as_ptr` as `const fn`",null],["1.32","const_ipv6addr_new","const_ipv6","`Ipv6Addr::new` as `const fn`",null],["1.32","const_unsafe_cell_get","const_unsafecell_get","`UnsafeCell::get` as `const fn`",null],["1.32","macro_literal_matcher","macro_literal_matcher","the `literal` fragment specifier in `macro_rules!`",1576],["1.32","boxed_slice_from_iter","boxed_slice_from_iter","`FromIterator` implementation for `Box<[T]>`",null],["1.32","uniform_paths","uniform_paths","uniform paths (`use x::y;` as `use self::x::y;`) in the 2018 edition",null],["1.32","const_range_inclusive_start","const_inclusive_range_methods","`RangeInclusive::start` as `const fn`",null],["1.32","must_use_traits",null,"`#[must_use]` on traits",null],["1.32","const_cell_as_ptr","const_cell_as_ptr","`Cell::as_ptr` as `const fn`",null],["1.32","const_iter_empty","const_iter_empty","`iter::empty` as `const fn`",null],["1.32","int_to_from_bytes","int_to_from_bytes","integer ↔ bytes conversion functions",null],["1.32","self_in_typedefs","self_in_typedefs","`Self` in type definitions",2300],["1.32","const_duration_subsec_micros","duration_consts","`Duration::subsec_micros` as `const fn`",null],["1.32","self_struct_ctor","self_struct_ctor","`Self` as a constructor and pattern for unit and tuple structs",2302],["1.32","macro_at_most_once_rep","macro_at_most_once_rep","`?` as the Kleene \"at most one\" operator in `macro_rules!` in the 2018 edition",2298],["1.32","const_ipv4addr_is_unspecified","const_ipv4","`Ipv4Addr::is_unspecified` as `const fn`",null],["1.32","const_manually_drop_into_inner","const_manually_drop","`ManuallyDrop::into_inner` as `const fn`",null],["1.32","const_non_null_as_ptr","const_nonnull_as_ptr","`NonNull::as_ptr` as `const fn`",null],["1.32","path_from_str","path_from_str","`FromStr` implementation for `PathBuf`",null],["1.32","const_duration_as_secs","duration_consts","`Duration::as_secs` as `const fn`",null],["1.32","const_cstr_as_ptr","const_str_as_ptr","`CStr::as_ptr` as `const fn`",null],["1.32","const_manually_drop_new","const_manually_drop","`ManuallyDrop::new` as `const fn`",null],["1.32","const_str_as_ptr","const_str_as_ptr","`str::as_ptr` as `const fn`",null],["1.32","const_ipv6addr_octets","const_ipv6","`Ipv6Addr::octets` as `const fn`",null],["1.32","dbg_macro","dbg_macro","`dbg!`",2361],["1.32","const_range_inclusive_end","const_inclusive_range_methods","`RangeInclusive::end` as `const fn`",null],["1.32","const_duration_subsec_millis","duration_consts","`Duration::subsec_millis` as `const fn`",null],["1.32","const_duration_subsec_nanos","duration_consts","`Duration::subsec_nanos` as `const fn`",null],["1.32","const_char_is_ascii","const_ascii_methods_on_intrinsics","`char::is_ascii` as `const fn`",null],["1.38","duration_mul_f64","duration_float","`Duration::mul_f64`",null],["1.38","duration_mul_f32","duration_float","`Duration::mul_f32`",null],["1.38","deprecated_macros",null,"`#[deprecated]` on macros",null],["1.38","unpin_ptr","duration_float","`Unpin` implementations for pointers",null],["1.38","iter_peekable_double_ended",null,"`DoubleEndedIterator` implementation for `iter::Peekable`",null],["1.38","str_chars_debug",null,"`Debug` implementation for `std::str::Chars`",null],["1.38","duration_from_secs_f32","duration_float","`Duration::from_secs_f32`",null],["1.38","duration_div_f32","duration_float","`Duration::div_f32`",null],["1.38","thread_accesserror_partialeq",null,"`PartialEq` implementation for `thread::AccessError`",null],["1.38","duration_div_f64","duration_float","`Duration::div_f64`",null],["1.38","ascii_escapedefault_clone",null,"`Clone` implementation for `ascii::EscapeDefault`",null],["1.38","duration_as_secs_f32","duration_float","`Duration::as_secs_f32`",null],["1.38","thread_accesserror_error",null,"`Error` implementation for `thread::AccessError`",null],["1.38","iter_step_by_double_ended",null,"`DoubleEndedIterator` implementation for `iter::StepBy`",null],["1.38","duration_from_secs_f64","duration_float","`Duration::from_secs_f64`",null],["1.38","iter_take_double_ended",null,"`DoubleEndedIterator` implementation for `iter::Take`",null],["1.38","ptr_cast","ptr_cast","`cast` method on pointers",null],["1.38","ascii_escapedefault_display",null,"`Display` implementation for `ascii::EscapeDefault`",null],["1.38","global_allocator_in_submodules",null,"`#[global_allocator]` inside submodules",null],["1.38","shared_from_iter","shared_from_iter","`FromIterator` implementation for `Rc` and `Arc`",null],["1.38","thread_accesserror_eq",null,"`Eq` implementation for `thread::AccessError`",null],["1.38","euclidean_division","euclidean_division","euclidean division & modulo",null],["1.38","any_type_name","type_name","`any::type_name`",null],["1.38","thread_accesserror_clone",null,"`Clone` implementation for `thread::AccessError`",null],["1.38","duration_as_secs_f64","duration_float","`Duration::as_secs_f64`",null],["1.38","thread_accesserror_copy",null,"`Copy` implementation for `thread::AccessError`",null],["1.53","btreeset_retain","btree_retain","`BTreeSet::retain`",null],["1.53","or_patterns","or_patterns","nested or-patterns",null],["1.53","float_is_subnormal","is_subnormal","`{f32, f64}::is_subnormal`",null],["1.53","atomic_bool_fetch_update","atomic_fetch_update","`AtomicBool::fetch_update`",null],["1.53","nonzero_trailing_zeros","nonzero_leading_trailing_zeros","`NonZero*::trailing_zeros`",null],["1.53","duration_is_zero","duration_zero","`Duration::is_zero`",null],["1.53","bufreader_seek_relative","bufreader_seek_relative","`BufReader::seek_relative`",null],["1.53","non_ascii_idents","non_ascii_idents","non-ASCII identifiers",null],["1.53","array_from_ref","array_from_ref","`std::array::from_ref`",null],["1.53","slice_iter_mut_as_ref","slice_iter_mut_as_slice","`AsRef<[T]>` implementation for `slice::IterMut<'_, T>`",null],["1.53","slice_iter_mut_as_slice","slice_iter_mut_as_slice","`slice::IterMut::as_slice`",null],["1.53","atomic_ptr_fetch_update","atomic_fetch_update","`AtomicPtr::fetch_update`",null],["1.53","array_from_mut","array_from_ref","`std::array::from_mut`",null],["1.53","duration_zero","duration_zero","`Duration::ZERO`",null],["1.53","int_bits_const","int_bits_const","Associated `BITS` constants for integer types",null],["1.53","btreemap_retain","btree_retain","`BTreeMap::retain`",null],["1.53","osstr_ascii","osstring_ascii","ASCII methods on `OsStr`",null],["1.53","nonzero_leading_zeros","nonzero_leading_trailing_zeros","`NonZero*::leading_zeros`",null],["1.53","vec_extend_from_within","vec_extend_from_within","`Vec::extend_from_within`",null],["1.17","static_recursion","static_recursion","recursive static items",null],["1.17","field_init_shorthand","field_init_shorthand","field init shorthands (`x` for `x: x` in struct initializers)",1682],["1.17","cell_non_copy","cell_non_copy","`Cell` with non-`Copy` types",1651],["1.17","static_in_const","static_in_const","elision of `'static` lifetimes in `static`s and `const`s",1623],["1.17","where_clauses_with_self",null,"`Self` in the where clause of trait impl's",1647],["1.28","sizeof_ident",null,"`sizeof` as an identifier",2421],["1.28","global_allocator","global_allocator","`#[global_allocator]`",null],["1.28","alignof_ident",null,"`alignof` as an identifier",2421],["1.28","pure_ident",null,"`pure` as an identifier",2421],["1.28","repr_transparent","repr_transparent","`#[repr(transparent)]` on newtype structs",null],["1.28","offsetof_ident",null,"`offsetof` as an identifier",2421],["1.25","repr_align","repr_align","`#[repr(align(N))]`",1358],["1.25","use_nested_groups","use_nested_groups","nested groups in imports",2128],["1.25","match_beginning_vert","match_beginning_vert","`|` at the beginning of match arms",1925],["1.0","macro_rules","macro_rules","`macro_rules!`",null],["1.0","while_let","while_let","`while let` expressions",null],["1.0","struct_variant","struct_variant","struct variants in enums",null],["1.0","default_type_params","default_type_params","type parameter defaults",null],["1.0","if_let","if_let","`if let` expressions",null],["1.0","tuple_indexing","tuple_indexing","tuple indexing",null],["1.0","slicing_syntax","slicing_syntax","`&foo[a..b]` as slicing syntax",null],["1.0","associated_types","associated_types","associated types in traits",null],["1.46","track_caller","track_caller","the `#[track_caller]` attribute",2091],["1.46","nested_tuple_indexing",null,"nested tuple indexing without parentheses (`tuple.0.0`)",null],["1.46","partialeq_vec_for_ref_slice","partialeq_vec_for_ref_slice","`PartialEq>` implementations for slices",null],["1.46","const_forget","const_forget","`mem::forget` as `const fn`",null],["1.46","option_zip","option_zip","`Option::zip`",null],["1.46","trailing_ones","leading_trailing_ones","`trailing_ones` integer methods",null],["1.46","leading_ones","leading_trailing_ones","`leading_ones` integer methods",null],["1.46","const_transmute","const_transmute","`mem::transmute` in constants",null],["1.46","vec_drain_as_ref","vec_drain_as_slice","`AsRef<[T]>` implementation for `vec::Drain<'_, T>`",null],["1.46","from_char_for_string","from_char_for_string","`From` implementation for `String`",null],["1.46","vec_drain_as_slice","vec_drain_as_slice","`std::vec::Drain::as_slice`",null],["1.46","const_slice_cast",null,"array to slice casts and coercions in `const fn`",null],["1.46","const_if_match","const_if_match","`if` and `match` in constant evaluation",2342],["1.46","vec_intoiter_as_ref","vec_intoiter_as_ref","`AsRef<[T]>` implementation for `vec::IntoIter`",null],["1.46","const_loop","const_loop","`loop` and `while` in constant evaluation",2344],["1.13","assert_ne","assert_ne","`assert_ne!`",1653],["1.13","question_mark","question_mark","the `?` operator",243],["1.13","type_macros","type_macros","`macro_rules!` macros in type position",null],["1.13","debug_assert_ne","assert_ne","`debug_assert_ne!`",1653],["1.51","wake_trait","wake_trait","the `Wake` trait",null],["1.51","iterator_reduce","iterator_fold_self","`Iterator::reduce`",null],["1.51","slice_strip_suffix","slice_strip","`slice::strip_suffix`",null],["1.51","unsigned_abs","unsigned_abs","the `unsigned_abs` method on signed integers",null],["1.51","box_send_sync_any_downcast","box_send_sync_any_downcast","`Box::::downcast`",null],["1.51","nonzero_div","nonzero_div","`Div` implementation for `u{0}`",null],["1.51","min_const_generics","min_const_generics","simple const generics",null],["1.51","slice_strip_prefix","slice_strip","`slice::strip_prefix`",null],["1.51","error_by_ref","error_by_ref","`Error` implementation for `&(impl Error)`",null],["1.51","arc_decrement_strong_count","arc_mutate_strong_count","`Arc::decrement_strong_count`",null],["1.51","seek_stream_position","seek_convenience","`io::Seek::stream_position`",null],["1.51","array_value_iter","array_value_iter","by-value `[T; N]` iterator `core::array::IntoIter`",null],["1.51","poll_map_ok","poll_map","`Poll>>::map_ok`",null],["1.51","empty_seek","empty_seek","`io::Seek` implementation for `io::Empty`",null],["1.51","str_as_mut","as_mut_str_for_str","`AsMut` implementation for `str`",null],["1.51","arc_increment_strong_count","arc_mutate_strong_count","`Arc::increment_strong_count`",null],["1.51","slice_fill_with","slice_fill_with","`slice::fill_with`",null],["1.51","poll_map_err","poll_map","`Poll>>::map_err`",null],["1.51","nonzero_rem","nonzero_div","`Rem` implementation for `u{0}`",null],["1.43","const_ascii_methods_on_intrinsics","const_ascii_methods_on_intrinsics","`u8::is_ascii` as `const fn`",null],["1.43","core_primitive","core_primitive","`core::primitive`",null],["1.43","from_utf8_error_eq",null,"`Eq` implementation for `FromUtf8Error`",null],["1.43","boxed_slice_try_from","boxed_slice_try_from","`TryFrom` implementations from boxed slices to boxed arrays",null],["1.43","extra_log_consts","extra_log_consts","`{f32, f64}::{LOG2_10, LOG10_2}`",null],["1.43","from_utf8_error_clone",null,"`Clone` implementation for `FromUtf8Error`",null],["1.43","string_as_mut","string_as_mut","`AsMut` implementation for `String`",null],["1.43","iter_once_with","iter_once_with","`iter::once_with`",null],["1.43","from_utf8_error_partial_eq",null,"`PartialEq` implementation for `FromUtf8Error`",null],["1.43","if_attr",null,"attributes on `if` expressions",null],["1.43","cstring_from_vec_of_nonzerou8","cstring_from_vec_of_nonzerou8","`From>` implementation for `CString`",null],["1.43","assoc_int_consts","assoc_int_consts","numeric constants as associated constants",null],["1.43","once_is_completed","once_is_completed","`sync::once::Once::is_completed`",null],["1.47","array_gt_32_impls",null,"`[T; N]` trait implementations with N > 32",null],["1.47","range_default",null,"`Default` implementation for `Range`",null],["1.47","result_deref","inner_deref","`as_deref` and `as_deref_mut` on `Result`",null],["1.47","const_type_id","const_type_id","`TypeId::of` in `const fn`",null],["1.47","cstr_range_from","cstr_range_from","`Index` implementation for `CStr`",null],["1.47","proc_macro_raw_ident","proc_macro_raw_ident","`proc_macro::Ident::new_raw`",null],["1.47","range_full_default",null,"`Default` implementation for `RangeFull`",null],["1.47","tau_constant","tau_constant","the `TAU` constant",null],["1.47","vec_leak","vec_leak","`Vec::leak`",null],["1.58","option_result_unwrap_unchecked","option_result_unwrap_unchecked","`unwrap_unchecked` methods",null],["1.58","cstring_from_vec_with_nul_unchecked","cstring_from_vec_with_nul","`CString::from_vec_with_nul_unchecked`",null],["1.58","is_symlink","is_symlink","`is_symlink` methods",null],["1.58","const_raw_ptr_deref","const_raw_ptr_deref","`*const T` dereferences in `const` contexts",null],["1.58","with_options","with_options","`File::options`",null],["1.58","format_args_capture","format_args_capture","implicit named arguments for formatting macros",2795],["1.58","cstring_from_vec_with_nul","cstring_from_vec_with_nul","`CString::from_vec_with_nul`",null],["1.58","saturating_div","saturating_div","`{integer}::saturating_div`",null],["1.58","char_array_pattern",null,"`Pattern` implementation for `[char; N]`",null],["1.41","maybe_uninit_debug","maybe_uninit_debug","`Debug` implementation for `MaybeUninit`",null],["1.41","cfg_doc","doc_cfg","`#[cfg(doc)]`",null],["1.41","result_map_or","result_map_or","`Result::map_or`",null],["1.41","core_panic_info","core_panic_info","the `core::panic` module",null],["1.41","weak_counts","weak_counts","`Weak` count methods",null],["1.41","result_map_or_else","result_map_or_else","`Result::map_or_else`",null],["1.41","re_rebalance_coherence","re_rebalance_coherence","relaxed coherence rules",null],["1.42","manually_drop_take","manually_drop_take","`ManuallyDrop::take`",null],["1.42","debug_map_key_value","debug_map_key_value","`DebugMap::value`",null],["1.42","wait_until","wait_until","`Condvar::wait_while`",null],["1.42","alloc_layout_const_new","alloc_layout_const_new","`alloc::Layout::new` as `const fn`",null],["1.42","iter_empty_send_sync","iter_empty_send_sync","unconditional `Send` and `Sync` implementations for `iter::Empty`",null],["1.42","matches_macro","matches_macro","`matches!`",null],["1.42","proc_macro_extern_prelude",null,"the `proc_macro` crate without `extern crate` in procedural macro crates",null],["1.42","attr_on_inline_mod",null,"attribute macros on inline modules",null],["1.42","transparent_enums","transparent_enums","`#[repr(transparent)]` on single-variant enums",null],["1.42","eq_cursor",null,"`PartialEq` and `Eq` implementations for `io::Cursor`",null],["1.42","slice_from_raw_parts","slice_from_raw_parts","`ptr::slice_from_raw_parts_mut`",null],["1.42","slice_patterns","slice_patterns","subslice patterns (`[a, .., b]` and `[a, xs @ .., b]`)",null],["1.42","wait_timeout_until","wait_timeout_until","`Condvar::wait_timeout_while`",null],["1.14","fn_ptr_to_unsafe_fn_ptr",null,"`fn` pointer to `unsafe fn` pointer coercion",null],["1.14","println_no_args",null,"`println!` without arguments",null],["1.14","dotdot_in_tuple_patterns","dotdot_in_tuple_patterns","`..` in tuple (struct) patterns",1492],["1.10","weak_new","downgraded_weak","`sync::Weak::new`",null],["1.10","cstr_default","cstr_default","`Default` implementation for `&CStr`",null],["1.10","cstring_default","cstr_default","`Default` implementation for `CString`",null],["1.18","windows_subsystem","windows_subsystem","`#![windows_subsystem]`",null],["1.18","pub_restricted","pub_restricted","`pub(restricted)` visibilities",1422],["1.35","boxed_closure_impls","boxed_closure_impls","boxed closure `Fn*` trait implementations",null],["1.35","alloc_system_default",null,"`Default` implementation for `alloc::System`",null],["1.35","exact_size_case_mapping_iter","exact_size_case_mapping_iter","`ExactSizeIterator` implementation for `ToLowercase` and `ToUppercase`",null],["1.35","asraw_stdio_locks","asraw_stdio_locks","`AsRawFd` implementation for `StdinLock`, `StdoutLock` and `StderrLock`",null],["1.35","coerce_closure_to_unsafe_fn_ptr",null,"closure to unsafe function pointer coercions",null],["1.35","dbg_no_args",null,"`dbg!` without arguments",null],["1.6","no_std","no_std","`#![no_std]`",null],["1.20","associated_consts","associated_consts","associated constants in `trait` and `impl` blocks",null],["1.20","compile_error","compile_error_macro","`compile_error!`",1695],["1.20","struct_field_attributes","struct_field_attributes","attributes on struct literal fields",null],["1.20","unimplemented_macro_args",null,"`unimplemented!` with a message",null],["1.57","vec_try_reserve_exact","try_reserve","`Vec::try_reserve_exact`",null],["1.57","string_try_reserve_exact","try_reserve","`String::try_reserve_exact`",null],["1.57","array_as_slice","array_as_slice","`<[T; N]>::as_slice`",null],["1.57","const_panic","const_panic","panicking in `const` contexts",null],["1.57","hashmap_try_reserve","try_reserve","`HashMap::try_reserve`",null],["1.57","vecdeque_try_reserve_exact","try_reserve","`VecDeque::try_reserve_exact`",null],["1.57","array_as_mut_slice","array_as_slice","`<[T; N]>::as_mut_slice`",null],["1.57","macro_attrs_in_derive_output","macro_attributes_in_derive_output","attribute macros after derive macros, on the same item",null],["1.57","hashset_try_reserve","try_reserve","`HashSet::try_reserve`",null],["1.57","vec_try_reserve","try_reserve","`Vec::try_reserve`",null],["1.57","string_try_reserve","try_reserve","`String::try_reserve`",null],["1.57","proc_macro_is_available","proc_macro_is_available","`proc_macro::is_available`",null],["1.57","vecdeque_try_reserve","try_reserve","`VecDeque::try_reserve`",null],["1.57","iter_map_while","iter_map_while","`Iterator::map_while`",null],["1.56","io_sink_clone",null,"`Clone` implementation for `io::Sink`",null],["1.56","unsafe_cell_raw_get","unsafe_cell_raw_get","`UnsafeCell::raw_get`",null],["1.56","io_empty_clone",null,"`Clone` implementation for `io::Empty`",null],["1.56","shrink_to","shrink_to","the `shrink_to` method on collections",null],["1.56","io_empty_default",null,"`Default` implementation for `io::Empty`",null],["1.56","bufwriter_into_parts","bufwriter_into_parts","`BufWriter::into_parts`",null],["1.56","io_sink_copy",null,"`Copy` implementation for `io::Sink`",null],["1.56","const_fn_union","const_fn_union","`union` field access in `const fn`",null],["1.56","io_sink_default",null,"`Default` implementation for `io::Sink`",null],["1.56","std_collections_from_array","std_collections_from_array","`From<[T; N]>` implementation for collections",null],["1.56","io_empty_copy",null,"`Copy` implementation for `io::Empty`",null],["1.56","extend_for_tuple","extend_for_tuple","`Extend` implementation for `(Extend, Extend)`",null],["1.56","unix_chroot","unix_chroot","`std::os::unix::fs::chroot`",null],["1.56","const_fn_transmute","const_fn_transmute","`mem::transmute` in `const fn`",null],["1.56","rust_version",null,"`rust-version` in Cargo.toml",2495],["1.3","duration","duration","`std::time::Duration`",null],["1.3","time","time","`std::time`",null],["1.29","proc_macro","proc_macro","procedural macros",null],["1.26","inclusive_range_syntax","inclusive_range_syntax","inclusive range syntax",1192],["1.26","underscore_lifetimes","underscore_lifetimes","placeholder lifetimes (`'_`)",2115],["1.26","match_default_bindings","match_default_bindings","default match binding modes",2005],["1.26","i128_type","i128_type","128 bit integer types",null],["1.26","dotdoteq_in_patterns","dotdoteq_in_patterns","inclusive ranges in patterns",1192],["1.26","universal_impl_trait","universal_impl_trait","`impl Trait` in function arguments",null],["1.26","termination_trait","termination_trait","types implementing `Termination` as the return type for `fn main()`",null],["1.26","conservative_impl_trait","conservative_impl_trait","`impl Trait` in function return types",null],["1.26","copy_closures","copy_closures","`Copy` implementation for applicable closures",2132],["1.26","clone_closures","clone_closures","`Clone` implementation for applicable closures",2132],["1.26","const_indexing","const_indexing","array indexing in constants",null],["1.16","self_struct_expr_pat",null,"`Self` in struct expressions and patterns",null],["1.16","assoc_ty_struct_expr_pat",null,"associated types in struct expressions and patterns",null],["1.16","writeln_no_args",null,"`writeln!` without arguments",null],["1.27","macro_lifetime_matcher","macro_lifetime_matcher","the `lifetime` fragment specifier in `macro_rules!`",null],["1.27","termination_trait_test","termination_trait_test","types implementing `Termination` as the return type for `#[test]`s",null],["1.27","cfg_target_feature","cfg_target_feature","`#[cfg(target_feature = \"...\")]`",null],["1.27","target_feature",null,"`#[target_feature(...)]`",null],["1.27","proc_ident",null,"`proc` as an identifier",null],["1.27","generic_param_attrs","generic_param_attrs","attributes on generic parameters",1327],["1.27","dyn_trait","dyn_trait","`dyn Trait` as a syntax for trait objects",null],["1.27","fn_must_use","fn_must_use","`#[must_use]` on functions",1940],["1.8","augmented_assignments","augmented_assignments","assignment operator overloading",null],["1.8","braced_empty_structs","braced_empty_structs","empty structs and enum variants with braces",218],["1.31","min_const_fn","min_const_fn","`const fn`",911],["1.31","tool_lints","tool_lints","scoped lints",null],["1.31","extern_crate_item_prelude","extern_crate_item_prelude","`extern crate foo as bar;`",null],["1.31","pattern_parentheses","pattern_parentheses","parentheses in patterns",null],["1.31","edition_2018",null,"the 2018 edition",null],["1.31","impl_header_lifetime_elision","impl_header_lifetime_elision","lifetime elision in `impl` headers",null],["1.12","nested_macro_rules",null,"`macro_rules!` within `macro_rules!`",null],["1.12","cfg_attr_path",null,"`cfg_attr` on `path` attributes",null],["1.59","result_cloned_err","result_copied","`Result::copied_err`",null],["1.59","control_flow_is_break","control_flow_enum","`ControlFlow::is_break`",null],["1.59","const_cstr_unchecked","const_cstr_unchecked","`CStr::from_bytes_with_nul_unchecked` as `const fn`",null],["1.59","u8_from_char",null,"`TryFrom` implementation for `u8`",null],["1.59","result_cloned","result_cloned","`Result::cloned`",null],["1.59","thread_local_const_init","thread_local_const_init","const-initialized thread locals",null],["1.59","hashmap_entry_insert","entry_insert","`hash_map::Entry::insert_entry`",null],["1.59","hashmap_vacant_entry_insert","entry_insert","`hash_map::VacantEntry::insert_entry`",null],["1.59","control_flow_is_continue","control_flow_enum","`ControlFlow::is_continue`",null],["1.59","available_parallelism","available_parallelism","`std::thread::available_parallelism`",null],["1.59","result_copied_err","result_cloned","`Result::cloned_err`",null],["1.59","const_generics_defaults","const_generics_defaults","defaults for const generics",null],["1.59","result_copied","result_copied","`Result::copied`",null],["1.33","const_ip","const_ip","`Ipv4Addr::new` as `const fn`",null],["1.33","pin","pin","`pin::Pin`",null],["1.33","cfg_target_vendor","cfg_target_vendor","`cfg(target_vendor)`",null],["1.33","if_while_or_patterns","if_while_or_patterns","or-patterns in `if let` and `while let`",2175],["1.33","rc_arc_pin_method_receiver",null,"`Rc`, `Arc` or `Pin` as a method receiver",null],["1.33","unpin","pin","`marker::Unpin`",null],["1.33","min_const_unsafe_fn","min_const_unsafe_fn","`const unsafe fn`s inside `unsafe` blocks in `const fn`",null],["1.33","phantom_unpinned","pin","`marker::PhantomUnpinned`",null],["1.33","const_let","const_let","let bindings, assignments and destructuring in `const fn`",2341],["1.33","repr_packed","repr_packed","`#[repr(packed(N))]` on structs",1399],["1.33","exhaustive_integer_patterns","exhaustive_integer_patterns","integer match exhaustiveness checking",2591],["1.33","underscore_imports","underscore_imports","underscore imports (impl-only trait imports)",2166],["1.33","irrefutable_let_patterns","irrefutable_let_patterns","irrefutable patterns in `if let` and `while let`",2086],["1.33","cfg_attr_multi","cfg_attr_multi","`#[cfg_attr(cfg, attr1, attr2, attr3)]`",2539],["1.40","map_get_key_value","map_get_key_value","`get_key_value` on `HashMap` and `BTreeMap`",null],["1.40","mem_take","mem_take","`mem::take`",null],["1.40","todo_macro","todo_macro","`todo!`",null],["1.40","float_to_from_bytes","float_to_from_bytes","float ↔ bytes conversion functions",null],["1.40","proc_macro_generated_macro_rules",null,"proc-macros that generate `macro_rules!` macros",null],["1.40","udpsocker_peer_addr","udp_peer_addr","`UdpSocket::peer_addr`",null],["1.40","non_exhaustive","non_exhaustive","`#![non_exhaustive]`",2008],["1.40","modern_meta_macro_pattern",null,"the `meta` fragment specifier in `macro_rules!` for modern attribute syntax",null],["1.40","cfg_doctest","cfg_doctest","`#[cfg(doctest)]`",null],["1.40","option_flattening","option_flattening","`Option::flatten`",null],["1.40","option_deref","option_deref","`as_deref` and `as_deref_mut` on `Option`",null],["1.40","macros_in_extern","macros_in_extern","macro invocations in `extern {}` blocks",null],["1.40","const_is_power_of_two",null,"`is_power_of_two` as `const fn`",null],["1.40","slice_repeat","repeat_generic_slice","`slice::repeat`",null],["1.40","const_constructor","const_constructor","tuple struct and tuple variant constructors in `const fn`",null],["1.40","type_proc_macros",null,"function-like procedural macros in type position",null],["1.44","alloc_layout_pad_to_align","alloc_layout_extras","`alloc::Layout::pad_to_align`",null],["1.44","ioslice_clone",null,"`Clone` implementation for `io::IoSlice`",null],["1.44","path_buf_shrink_to_fit","path_buf_capacity","`PathBuf::shrink_to_fit`",null],["1.44","alloc_layout_extend","alloc_layout_extras","`alloc::Layout::extend`",null],["1.44","lexerror_error","proc_macro_lexerror_impls","`Error` implementation for `proc_macro::LexError`",null],["1.44","alloc_layout_align_to","alloc_layout_extras","`alloc::Layout::align_to`",null],["1.44","path_buf_capacity","path_buf_capacity","`PathBuf::capacity`",null],["1.44","const_int_to_from_bytes",null,"integer ↔ bytes conversion functions as `const fn`",null],["1.44","path_buf_clear","path_buf_capacity","`PathBuf::clear`",null],["1.44","path_buf_reserve","path_buf_capacity","`PathBuf::reserve`",null],["1.44","no_std_async_await",null,"`async` / `.await` in `#[no_std]` crates",null],["1.44","convert_infallible_hash","convert_infallible_hash","`Hash` implementation for `convert::Infallible`",null],["1.44","from_mut_str_for_string","from_mut_str_for_string","`From<&mut str>` implementation for `String`",null],["1.44","ioslice_copy",null,"`Copy` implementation for `io::IoSlice`",null],["1.44","alloc_layout_array","alloc_layout_extras","`alloc::Layout::array`",null],["1.44","path_buf_with_capacity","path_buf_capacity","`PathBuf::with_capacity`",null],["1.44","osstring_indexmut_rangefull","mut_osstr","`IndexMut` implementation for `OsString`",null],["1.44","path_buf_reserve_exact","path_buf_capacity","`PathBuf::reserve_exact`",null],["1.44","vec_from_array","vec_from_array","`From<[T; N]>` implementation for `Vec`",null],["1.44","float_approx_unchecked_to","float_approx_unchecked_to","unchecked float → int conversion",null],["1.44","osstring_deref_mut","mut_osstr","`DerefMut` implementation for `OsString`",null],["1.44","lexerror_display","proc_macro_lexerror_impls","`Display` implementation for `proc_macro::LexError`",null],["1.4","use_group_renaming",null,"item renamings in import groups",null],["1.2","atomic_ptr_send",null,"`Send` implementation for `AtomicPtr`",null],["1.2","iter_once","iter_once","`iter::once`",null],["1.2","iter_empty","iter_empty","`iter::empty`",null],["1.19","closure_to_fn_coercion","closure_to_fn_coercion","non-capturing closure to function pointer coercion",1558],["1.19","loop_break_value","loop_break_value","`break` with a value inside `loop`s",1624],["1.19","eprintln","eprint","`eprintln!`",1869],["1.19","relaxed_adts","relaxed_adts","numeric fields in struct expressions and patterns",null],["1.19","eprint","eprint","`eprint!`",null],["1.19","untagged_unions","untagged_unions","`union`s",1444],["1.30","infer_outlives_requirements","infer_outlives_requirements","outlives requirement inference",2093],["1.30","macro_vis_matcher","macro_vis_matcher","the `vis` fragment specifier in `macro_rules!`",null],["1.30","extern_absolute_paths","extern_absolute_paths","absolute paths as paths from other crates",null],["1.30","proc_macro_path_invoc","proc_macro_path_invoc","multi-segment paths in attributes and derives",null],["1.30","raw_identifiers","raw_identifiers","raw identifiers (`r#keyword`)",null],["1.30","used","used","`#[used]`",null],["1.30","panic_handler","panic_handler","`#[panic_handler]`",null],["1.30","tool_attributes","tool_attributes","tool-scoped attributes",null],["1.30","crate_in_paths","crate_in_paths","`crate` in paths",null],["1.30","attr_literals","attr_literals","non-string literals in attribute lists and values of key-value pairs",null],["1.30","non_modrs_mods","non_modrs_mods","`foo.rs` as an alternative to `foo/mod.rs`",null],["1.30","use_extern_macro","use_extern_macro","macro imports and reexports via the module system",null],["1.49","const_poll_is_ready","const_poll","`Poll::is_ready` as `const fn`",null],["1.49","move_ref_pattern","move_ref_pattern","move and reference bindings in the same match pattern",null],["1.49","manually_drop_in_unions","untagged_unions","`ManuallyDrop` in `union`s",null],["1.49","const_poll_is_pending","const_poll","`Poll::is_pending` as `const fn`",null],["1.49","partialeq_slice_for_vec","partialeq_vec_for_slice","`impl PartialEq<[B]> for Vec where A: PartialEq`",null],["1.49","nzint_try_from_nzint","nzint_try_from_nzint_conv","`TryFrom` conversions between `NonZero` integer types",null],["1.49","partialeq_vec_for_slice","partialeq_vec_for_slice","`impl PartialEq> for [A] where A: PartialEq`",null],["1.49","empty_enum_to_int",null,"uninhabited enum to integer casts",null],["1.24","abi_sysv64","abi_sysv64","the sysV64 ABI on any platform",null],["1.24","unsized_ptr_is_null",null,"`is_null` on pointers to unsized types",null],["1.52","char_partial_eq_punct",null,"`PartialEq` implementation for `char`",null],["1.52","const_char_eq_ignore_ascii_case","const_ascii_methods_on_intrinsics","`char::eq_ignore_ascii_case` as `const fn`",null],["1.52","const_char_to_ascii_uppercase","const_ascii_methods_on_intrinsics","`char::to_ascii_uppercase` as `const fn`",null],["1.52","str_split_once","str_split_once","`str::split_once`",null],["1.52","const_u8_to_ascii_lowercase","const_ascii_methods_on_intrinsics","`u8::to_ascii_lowercase` as `const fn`",null],["1.52","const_char_to_ascii_lowercase","const_ascii_methods_on_intrinsics","`char::to_ascii_lowercase` as `const fn`",null],["1.52","const_u8_eq_ignore_ascii_case","const_ascii_methods_on_intrinsics","`u8::eq_ignore_ascii_case` as `const fn`",null],["1.52","const_char_len_utf16","const_char_len_utf","`char::len_utf16` as `const fn`",null],["1.52","str_rsplit_once","str_split_once","`str::rsplit_once`",null],["1.52","const_u8_to_ascii_uppercase","const_ascii_methods_on_intrinsics","`u8::to_ascii_uppercase` as `const fn`",null],["1.52","arc_error","arc_error","`Error` implementation for `Arc`",null],["1.52","const_char_len_utf8","const_char_len_utf","`char::len_utf8` as `const fn`",null],["1.60","not_never",null,"`Not` implementation for `!`",null],["1.60","rc_new_cyclic","arc_new_cyclic","`Rc::new_cyclic`",null],["1.60","arc_new_cyclic","arc_new_cyclic","`Arc::new_cyclic`",null],["1.60","vec_spare_capacity","vec_spare_capacity","`Vec::spare_capacity_mut`",null],["1.60","maybe_uninit_assume_init_read","maybe_uninit_extra","`MaybeUninit::assume_init_read`",null],["1.60","maybe_uninit_assume_init_drop","maybe_uninit_extra","`MaybeUninit::assume_init_drop`",null],["1.48","deque_make_contiguous","deque_make_contiguous","`VecDeque::make_contiguous`",null],["1.48","doc_alias","doc_alias","`#[doc(alias = \"…\")]`",null],["1.48","write_stdout_ref","write_mt","`Write` implementation for `&Stdout`",null],["1.48","write_sink_ref","write_mt","`Write` implementation for `&Sink`",null],["1.48","array_try_from_vec","array_try_from_vec","`TryFrom>` implementation for `[T; N]`",null],["1.48","const_option_is_none","const_option","`Option::is_none` as `const fn`",null],["1.48","slice_ptr_range","slice_ptr_range","slice to pointer range methods",null],["1.48","write_stderr_ref","write_mt","`Write` implementation for `&Stderr`",null],["1.48","const_option_is_some","const_option","`Option::is_some` as `const fn`",null],["1.48","const_result_as_ref","const_result","`Result::as_ref` as `const fn`",null],["1.48","const_option_as_ref","const_option","`Option::as_ref` as `const fn`",null],["1.48","const_result_is_err","const_result","`Result::is_err` as `const fn`",null],["1.48","const_result_is_ok","const_result","`Result::is_ok` as `const fn`",null],["1.48","write_child_stdin_ref","write_mt","`Write` implementation for `&ChildStdin`",null],["1.48","const_ordering_reverse","const_ordering","`cmp::Ordering::reverse` as `const fn`",null],["1.48","intra_doc_links",null,"intra-doc links",null],["1.48","future_ready","future_readiness_fns","`future::ready`",null],["1.48","const_ordering_then","const_ordering","`cmp::Ordering::then` as `const fn`",null],["1.48","future_pending","future_readiness_fns","`future::pending`",null],["1.15","proc_macro_derive","proc_macro","procedural derive macros (macros 1.1)",1681],["1.45","proc_macro_span_mixed_site","proc_macro_mixed_site","`proc_macro::Span::mixed_site`",null],["1.45","unicode_version","unicode_version","`std::char::UNICODE_VERSION`",null],["1.45","proc_macro_span_resolved_at","proc_macro_span_resolved_at","`proc_macro::Span::resolved_at`",null],["1.45","rc_from_cow","shared_from_cow","`From>`` implementation for ``Rc`",null],["1.45","atomic_min_max","atomic_min_max","`AtomicN::{fetch_min, fetch_max}`",null],["1.45","box_from_cow","box_from_cow","`From>` implementations for `Box`ed types",null],["1.45","proc_macro_span_located_at","proc_macro_span_located_at","`proc_macro::Span::located_at`",null],["1.45","btreemap_remove_entry","btreemap_remove_entry","`BTreeMap::remove_entry`",null],["1.45","nonzero_bitor_assign","nonzero_bitor","`BitOrAssign` implementations for `NonZero` integer types",null],["1.45","expr_proc_macro","proc_macro_hygiene","function-like procedural macros in expression, pattern and statement position",null],["1.45","nonzero_bitor","nonzero_bitor","`BitOr` implementations for `NonZero` integer types",null],["1.45","atomic_fetch_update","no_more_cas","`AtomicN::fetch_update`",null],["1.45","arc_from_cow","shared_from_cow","`From>` implementation for `Arc`",null],["unstable","duration_checked_float","duration_checked_float","`Duration::try_from_secs_*`",null],["unstable","stmt_expr_attributes","stmt_expr_attributes","attributes on expressions",16],["unstable","type_alias_impl_trait","type_alias_impl_trait","`impl Trait` in type aliases",2515],["unstable","cow_is_owned","cow_is_borrowed","`Cow::is_owned`",null],["unstable","total_cmp","total_cmp","the `total_cmp` method on float types",null],["unstable","const_generics","const_generics","const generics",2000],["unstable","raw_ref_op","raw_ref_op","the raw reference operator (`&raw [mut | const] $place`)",2582],["unstable","link_args","link_args","`#[link_args]`",null],["unstable","const_io_cursor_position","const_io_structs","`io::Cursor::position` as `const fn`",null],["unstable","option_unzip","unzip_option","`Option::unzip`",null],["unstable","plugin_registrar","plugin_registrar","`#[plugin_registrar]`",null],["unstable","btreemap_try_insert","map_try_insert","`BTreeMap::try_insert`",null],["unstable","nonnull_slice_from_raw_parts","nonnull_slice_from_raw_parts","`NonNull<[T]>::slice_from_raw_parts`",null],["unstable","default_free_fn","default_free_fn","the free `default` function (shorthand for `Default::default`)",null],["unstable","cfg_version","cfg_version","`#[cfg(version(..))]`",null],["unstable","exclusive_range_pattern","exclusive_range_pattern","exclusive range patterns (`a..b`)",null],["unstable","abi_thiscall","abi_thiscall","`thiscall` calling convention",null],["unstable","plugin","plugin","`#![plugin(...)]`",null],["unstable","iter_zip","iter_zip","`core::iter::zip`",null],["unstable","pin_static_ref","pin_static_ref","`Pin::static_ref`",null],["unstable","no_core","no_core","`#![no_core]`",null],["unstable","const_ptr_write","const_ptr_write","pointer `write` as `const fn`",null],["unstable","const_io_repeat","const_io_structs","`io::repeat` as `const fn`",null],["unstable","slice_take","slice_take","`take` method family on slices",null],["unstable","naked_functions","naked_functions","`#[naked]` functions",null],["unstable","termination_trait_lib","termination_trait_lib","`Termination` implementation for `Result`",null],["unstable","slice_ptr_len","slice_ptr_len","the `len` method on raw slices",null],["unstable","const_btreeset_new","const_btree_new","`BTreeSet::new` as `const fn`",null],["unstable","generic_associated_types","generic_associated_types","generic associated types",1598],["unstable","pub_macro_rules","pub_macro_rules","module scoping for `macro_rules!` macros",null],["unstable","is_sorted_slice","is_sorted","`is_sorted` method family on slices",2351],["unstable","try_blocks","try_blocks","`try` blocks",243],["unstable","const_mut_refs","const_mut_refs","`&mut T` in `const` contexts",null],["unstable","const_io_empty","const_io_structs","`io::empty` as `const fn`",null],["unstable","vec_drain_filter","drain_filter","`Vec:::drain_filter`",null],["unstable","future_poll_fn","future_poll_fn","`core::future::poll_fn`",null],["unstable","thread_local","thread_local","`#[thread_local]` on `static`s",null],["unstable","linkedlist_drain_filter","drain_filter","`LinkedList:::drain_filter`",null],["unstable","is_sorted_iterator","is_sorted","`is_sorted` method family on `Iterator`",2351],["unstable","option_zip_with","option_zip","`Option::zip_with`",null],["unstable","exhaustive_patterns","exhaustive_patterns","exhaustive pattern matching on types that contain uninhabited types",1872],["unstable","const_in_array_repeat_expressions","const_in_array_repeat_expressions","constants in array repeat expressions",2203],["unstable","generators","generators","generators",2033],["unstable","associated_type_defaults","associated_type_defaults","default values for associated types",null],["unstable","box_into_boxed_slice","box_into_boxed_slice","`Box::into_boxed_slice`",null],["unstable","cow_is_borrowed","cow_is_borrowed","`Cow::is_borrowed`",null],["unstable","result_contains","option_result_contains","`Result::contains`",null],["unstable","backtrace","backtrace","`Error::backtrace`",2504],["unstable","const_io_cursor_get_ref","const_io_structs","`io::Cursor::get_ref` as `const fn`",null],["unstable","custom_inner_attributes","custom_inner_attributes","custom inner attributes",null],["unstable","assert_matches","assert_matches","`assert_matches!`",null],["unstable","cfg_target_has_atomic","cfg_target_has_atomic","`cfg(target_has_atomic = ...)`",null],["unstable","ready_macro","ready_macro","`task::ready!`",null],["unstable","pin_static_mut","pin_static_ref","`Pin::static_mut`",null],["unstable","const_ptr_write_unaligned","const_ptr_write","pointer `write_unaligned` as `const fn`",null],["unstable","option_contains","option_result_contains","`Option::contains`",null],["unstable","type_ascription","type_ascription","type ascription",803],["unstable","register_tool","register_tool","`#![register_tool]`",null],["unstable","cstring_from_vec_with_nul","cstring_from_vec_with_nul","nul-terminated `Vec` to `CString` conversions",null],["unstable","poll_ready","poll_ready","`Poll::ready` / `task::Ready`",null],["unstable","const_io_cursor_new","const_io_structs","`io::Cursor::new` as `const fn`",null],["unstable","proc_macro_diagnostics","proc_macro_diagnostics","procedural macro diagnostics",null],["unstable","const_io_sink","const_io_structs","`io::sink` as `const fn`",null],["unstable","specialization","specialization","specialization",null],["unstable","nonzero_is_power_of_two","nonzero_is_power_of_two","`NonZeroU*::is_power_of_two`",null],["unstable","const_btreemap_new","const_btree_new","`BTreeMap::new` as `const fn`",null],["unstable","link_cfg","link_cfg","`#[link(..., cfg(...))]`",null],["unstable","half_open_range_patterns","half_open_range_patterns","half-open range patterns",null],["unstable","never_type","never_type","the never type (`!`)",null],["unstable","try_trait_v2","try_trait_v2","the `Try` trait",3058],["unstable","hashmap_try_insert","map_try_insert","`HashMap::try_insert`",null],["1.37","copy_within","copy_within","`[T]::copy_within`",null],["1.37","type_alias_enum_variants",null,"enum variants through a type alias",null],["1.37","repr_align_enum","repr_align_enum","`#[repr(align(N)]` on enums",null],["1.37","underscore_const_names","underscore_const_names","`_` as an identifier for constants",null],["1.37","generic_param_cfg_attrs",null,"conditional compilation of generic parameters",null],["1.37","kleene_op_2015",null,"the `?` Kleene macro operator in the 2015 edition",null],["1.37","option_xor","option_xor","`Option::xor`",null],["1.37","reverse_bits","reverse_bits","`reverse_bits` integer methods",null],["1.9","deprecated","deprecated","`#[deprecated]`",1270],["1.1","split_whitespace","split_whitespace","`str::split_whitespace`",1054],["1.23","unsized_ptr_as_mut",null,"`as_mut` on `*mut T`",null],["1.23","unsized_ptr_as_ref",null,"`as_ref` on pointers to unsized types",null],["1.50","bool_then","lazy_bool_to_option","`bool::then`",null],["1.50","const_ipv4addr_is_link_local","const_ipv4","`Ipv4Addr::is_link_local` as `const fn`",null],["1.50","const_ipv4addr_octets","const_ipv4","`Ipv4Addr::octets` as `const fn`",null],["1.50","punct_partial_eq_char",null,"`PartialEq` implementation for `proc_macro::Punct`",null],["1.50","slice_fill","slice_fill","`slice::fill`",null],["1.50","const_ipaddr_is_loopback","const_ip","`IpAddr::is_loopback` as `const fn`",null],["1.50","const_ipv4addr_is_documentation","const_ipv4","`Ipv4Addr::is_documentation` as `const fn`",null],["1.50","const_ipaddr_is_ipv4","const_ip","`IpAddr::is_ipv4` as `const fn`",null],["1.50","const_ipv6addr_segments","const_ipv6","`Ipv6Addr::segments` as `const fn`",null],["1.50","or_insert_with_key","or_insert_with_key","`Entry::or_insert_with_key`",null],["1.50","const_ipv6addr_is_multicast","const_ipv6","`Ipv6Addr::is_multicast` as `const fn`",null],["1.50","unsafe_cell_get_mut","unsafe_cell_get_mut","`UnsafeCell::get_mut`",null],["1.50","ord_clamp","clamp","`Ord::clamp`",1961],["1.50","const_ipv6addr_is_unspecified","const_ipv6","`Ipv6Addr::is_unspecified` as `const fn`",null],["1.50","const_ipv4addr_is_broadcast","const_ipv4","`Ipv4Addr::is_broadcast` as `const fn`",null],["1.50","const_ipaddr_is_multicast","const_ip","`IpAddr::is_multicast` as `const fn`",null],["1.50","assign_manually_drop_in_unions",null,"safe assignment to `ManuallyDrop` in `union`s",null],["1.50","const_ipv4addr_to_ipv6_mapped","const_ipv4","`Ipv4Addr::to_ipv6_mapped` as `const fn`",null],["1.50","const_ipv6addr_to_ipv4","const_ipv6","`Ipv6Addr::to_ipv4` as `const fn`",null],["1.50","const_ipv6addr_is_loopback","const_ipv6","`Ipv6Addr::is_loopback` as `const fn`",null],["1.50","f64_clamp","clamp","`f64::clamp`",1961],["1.50","f32_clamp","clamp","`f32::clamp`",1961],["1.50","const_ipv4addr_is_loopback","const_ipv4","`Ipv4Addr::is_loopback` as `const fn`",null],["1.50","const_ipv4addr_is_private","const_ipv4","`Ipv4Addr::is_private` as `const fn`",null],["1.50","const_ipaddr_is_ipv6","const_ip","`IpAddr::is_ipv6` as `const fn`",null],["1.50","refcell_take","refcell_take","`RefCell::take`",null],["1.50","const_ipv4addr_is_multicast","const_ipv4","`Ipv4Addr::is_multicast` as `const fn`",null],["1.50","const_ipv4addr_to_ipv6_compatible","const_ipv4","`Ipv4Addr::to_ipv6_compatible` as `const fn`",null],["1.50","const_ipaddr_is_unspecified","const_ip","`IpAddr::is_unspecified` as `const fn`",null],["1.22","drop_types_in_const","drop_types_in_const","`Drop` types in constants",1440],["1.7","vec_as_mut_slice","vec_as_slice","`Vec::as_mut_slice`",null],["1.7","string_as_str","string_as_str","`String::as_str`",null],["1.7","string_as_mut_str","string_as_str","`String::as_mut_str`",null],["1.7","vec_as_slice","vec_as_slice","`Vec::as_slice`",null],["1.34","alternative_registries",null,"alternative registries to crates.io in cargo",null],["1.34","const_wrapping_neg",null,"`wrapping_neg` as `const fn`",null],["1.34","const_overflowing_neg",null,"`overflowing_neg` as `const fn`",null],["1.34","extern_crate_self","extern_crate_self","`extern crate self as foo;`",null],["1.34","deprecated_equals_reason",null,"`#[deprecated = \"reason\"]` as a shorthand for `#[deprecated(note = \"reason\")]`",null],["1.34","unrestricted_attribute_tokens","unrestricted_attribute_tokens","arbitrary token streams in procedural attribute macros",null],["1.39","param_attrs","param_attrs","attributes on function parameters",null],["1.39","const_slice_len","const_slice_len","`[T]::len` as `const fn`",null],["1.39","const_linkedlist_new","const_linked_list_new","`LinkedList::new` as `const fn`",null],["1.39","pin_into_inner","pin_into_inner","`Pin::into_inner`",null],["1.39","const_str_len","const_str_len","`str::len` as `const fn`",null],["1.39","bind_by_move_pattern_guards","bind_by_move_pattern_guards","shared references to bind-by-move patterns in `match` arms' guards",null],["1.39","const_vec_new","const_vec_new","`Vec::new` as `const fn`",null],["1.39","const_string_new","const_string_new","`String::new` as `const fn`",null],["1.39","instant_checked_duration_since","checked_duration_since","`Instant::checked_duration_since`",null],["1.39","await","async_await","`.await`",null],["1.39","async","async_await","`async`",null],["1.39","instant_saturating_duration_since","checked_duration_since","`Instant::saturating_duration_since`",null],["1.39","const_str_as_bytes",null,"`str::as_bytes` as `const fn`",null]]; \ No newline at end of file +var caniuseIndex=[["1.23","unsized_ptr_as_ref",null,"`as_ref` on pointers to unsized types",null],["1.23","unsized_ptr_as_mut",null,"`as_mut` on `*mut T`",null],["1.33","min_const_unsafe_fn","min_const_unsafe_fn","`const unsafe fn`s inside `unsafe` blocks in `const fn`",null],["1.33","pin","pin","`pin::Pin`",null],["1.33","const_ip","const_ip","`Ipv4Addr::new` as `const fn`",null],["1.33","underscore_imports","underscore_imports","underscore imports (impl-only trait imports)",2166],["1.33","rc_arc_pin_method_receiver",null,"`Rc`, `Arc` or `Pin` as a method receiver",null],["1.33","unpin","pin","`marker::Unpin`",null],["1.33","repr_packed","repr_packed","`#[repr(packed(N))]` on structs",1399],["1.33","irrefutable_let_patterns","irrefutable_let_patterns","irrefutable patterns in `if let` and `while let`",2086],["1.33","const_let","const_let","let bindings, assignments and destructuring in `const fn`",2341],["1.33","cfg_attr_multi","cfg_attr_multi","`#[cfg_attr(cfg, attr1, attr2, attr3)]`",2539],["1.33","if_while_or_patterns","if_while_or_patterns","or-patterns in `if let` and `while let`",2175],["1.33","cfg_target_vendor","cfg_target_vendor","`cfg(target_vendor)`",null],["1.33","phantom_unpinned","pin","`marker::PhantomUnpinned`",null],["1.33","exhaustive_integer_patterns","exhaustive_integer_patterns","integer match exhaustiveness checking",2591],["1.19","eprint","eprint","`eprint!`",null],["1.19","relaxed_adts","relaxed_adts","numeric fields in struct expressions and patterns",null],["1.19","closure_to_fn_coercion","closure_to_fn_coercion","non-capturing closure to function pointer coercion",1558],["1.19","eprintln","eprint","`eprintln!`",1869],["1.19","untagged_unions","untagged_unions","`union`s",1444],["1.19","loop_break_value","loop_break_value","`break` with a value inside `loop`s",1624],["1.34","alternative_registries",null,"alternative registries to crates.io in cargo",null],["1.34","const_overflowing_neg",null,"`overflowing_neg` as `const fn`",null],["1.34","unrestricted_attribute_tokens","unrestricted_attribute_tokens","arbitrary token streams in procedural attribute macros",null],["1.34","extern_crate_self","extern_crate_self","`extern crate self as foo;`",null],["1.34","deprecated_equals_reason",null,"`#[deprecated = \"reason\"]` as a shorthand for `#[deprecated(note = \"reason\")]`",null],["1.34","const_wrapping_neg",null,"`wrapping_neg` as `const fn`",null],["1.59","result_cloned","result_cloned","`Result::cloned`",null],["1.59","control_flow_is_break","control_flow_enum","`ControlFlow::is_break`",null],["1.59","const_cstr_unchecked","const_cstr_unchecked","`CStr::from_bytes_with_nul_unchecked` as `const fn`",null],["1.59","asm","asm","inline assembly",null],["1.59","const_generics_defaults","const_generics_defaults","defaults for const generics",null],["1.59","result_copied_err","result_cloned","`Result::cloned_err`",null],["1.59","u8_from_char",null,"`TryFrom` implementation for `u8`",null],["1.59","control_flow_is_continue","control_flow_enum","`ControlFlow::is_continue`",null],["1.59","hashmap_vacant_entry_insert","entry_insert","`hash_map::VacantEntry::insert_entry`",null],["1.59","result_copied","result_copied","`Result::copied`",null],["1.59","result_cloned_err","result_copied","`Result::copied_err`",null],["1.59","hashmap_entry_insert","entry_insert","`hash_map::Entry::insert_entry`",null],["1.59","thread_local_const_init","thread_local_const_init","const-initialized thread locals",null],["1.59","available_parallelism","available_parallelism","`std::thread::available_parallelism`",null],["1.28","pure_ident",null,"`pure` as an identifier",2421],["1.28","alignof_ident",null,"`alignof` as an identifier",2421],["1.28","repr_transparent","repr_transparent","`#[repr(transparent)]` on newtype structs",null],["1.28","sizeof_ident",null,"`sizeof` as an identifier",2421],["1.28","global_allocator","global_allocator","`#[global_allocator]`",null],["1.28","offsetof_ident",null,"`offsetof` as an identifier",2421],["1.56","unsafe_cell_raw_get","unsafe_cell_raw_get","`UnsafeCell::raw_get`",null],["1.56","io_empty_default",null,"`Default` implementation for `io::Empty`",null],["1.56","extend_for_tuple","extend_for_tuple","`Extend` implementation for `(Extend, Extend)`",null],["1.56","const_fn_transmute","const_fn_transmute","`mem::transmute` in `const fn`",null],["1.56","io_sink_copy",null,"`Copy` implementation for `io::Sink`",null],["1.56","rust_version",null,"`rust-version` in Cargo.toml",2495],["1.56","io_empty_copy",null,"`Copy` implementation for `io::Empty`",null],["1.56","io_sink_clone",null,"`Clone` implementation for `io::Sink`",null],["1.56","shrink_to","shrink_to","the `shrink_to` method on collections",null],["1.56","io_empty_clone",null,"`Clone` implementation for `io::Empty`",null],["1.56","std_collections_from_array","std_collections_from_array","`From<[T; N]>` implementation for collections",null],["1.56","const_fn_union","const_fn_union","`union` field access in `const fn`",null],["1.56","bufwriter_into_parts","bufwriter_into_parts","`BufWriter::into_parts`",null],["1.56","unix_chroot","unix_chroot","`std::os::unix::fs::chroot`",null],["1.56","io_sink_default",null,"`Default` implementation for `io::Sink`",null],["1.53","atomic_bool_fetch_update","atomic_fetch_update","`AtomicBool::fetch_update`",null],["1.53","btreeset_retain","btree_retain","`BTreeSet::retain`",null],["1.53","atomic_ptr_fetch_update","atomic_fetch_update","`AtomicPtr::fetch_update`",null],["1.53","osstr_ascii","osstring_ascii","ASCII methods on `OsStr`",null],["1.53","float_is_subnormal","is_subnormal","`{f32, f64}::is_subnormal`",null],["1.53","int_bits_const","int_bits_const","Associated `BITS` constants for integer types",null],["1.53","vec_extend_from_within","vec_extend_from_within","`Vec::extend_from_within`",null],["1.53","bufreader_seek_relative","bufreader_seek_relative","`BufReader::seek_relative`",null],["1.53","nonzero_leading_zeros","nonzero_leading_trailing_zeros","`NonZero*::leading_zeros`",null],["1.53","duration_is_zero","duration_zero","`Duration::is_zero`",null],["1.53","non_ascii_idents","non_ascii_idents","non-ASCII identifiers",null],["1.53","slice_iter_mut_as_ref","slice_iter_mut_as_slice","`AsRef<[T]>` implementation for `slice::IterMut<'_, T>`",null],["1.53","nonzero_trailing_zeros","nonzero_leading_trailing_zeros","`NonZero*::trailing_zeros`",null],["1.53","array_from_mut","array_from_ref","`std::array::from_mut`",null],["1.53","duration_zero","duration_zero","`Duration::ZERO`",null],["1.53","or_patterns","or_patterns","nested or-patterns",null],["1.53","btreemap_retain","btree_retain","`BTreeMap::retain`",null],["1.53","slice_iter_mut_as_slice","slice_iter_mut_as_slice","`slice::IterMut::as_slice`",null],["1.53","array_from_ref","array_from_ref","`std::array::from_ref`",null],["unstable","const_io_cursor_new","const_io_structs","`io::Cursor::new` as `const fn`",null],["unstable","naked_functions","naked_functions","`#[naked]` functions",null],["unstable","const_in_array_repeat_expressions","const_in_array_repeat_expressions","constants in array repeat expressions",2203],["unstable","box_into_boxed_slice","box_into_boxed_slice","`Box::into_boxed_slice`",null],["unstable","result_contains","option_result_contains","`Result::contains`",null],["unstable","pin_static_ref","pin_static_ref","`Pin::static_ref`",null],["unstable","cstring_from_vec_with_nul","cstring_from_vec_with_nul","nul-terminated `Vec` to `CString` conversions",null],["unstable","link_cfg","link_cfg","`#[link(..., cfg(...))]`",null],["unstable","half_open_range_patterns","half_open_range_patterns","half-open range patterns",null],["unstable","assert_matches","assert_matches","`assert_matches!`",null],["unstable","exhaustive_patterns","exhaustive_patterns","exhaustive pattern matching on types that contain uninhabited types",1872],["unstable","const_generics","const_generics","const generics",2000],["unstable","is_sorted_iterator","is_sorted","`is_sorted` method family on `Iterator`",2351],["unstable","try_trait_v2","try_trait_v2","the `Try` trait",3058],["unstable","poll_ready","poll_ready","`Poll::ready` / `task::Ready`",null],["unstable","const_io_empty","const_io_structs","`io::empty` as `const fn`",null],["unstable","proc_macro_diagnostics","proc_macro_diagnostics","procedural macro diagnostics",null],["unstable","nonnull_slice_from_raw_parts","nonnull_slice_from_raw_parts","`NonNull<[T]>::slice_from_raw_parts`",null],["unstable","hashmap_try_insert","map_try_insert","`HashMap::try_insert`",null],["unstable","cfg_version","cfg_version","`#[cfg(version(..))]`",null],["unstable","abi_thiscall","abi_thiscall","`thiscall` calling convention",null],["unstable","plugin","plugin","`#![plugin(...)]`",null],["unstable","backtrace","backtrace","`Error::backtrace`",2504],["unstable","nonzero_is_power_of_two","nonzero_is_power_of_two","`NonZeroU*::is_power_of_two`",null],["unstable","cow_is_owned","cow_is_borrowed","`Cow::is_owned`",null],["unstable","future_poll_fn","future_poll_fn","`core::future::poll_fn`",null],["unstable","option_contains","option_result_contains","`Option::contains`",null],["unstable","linkedlist_drain_filter","drain_filter","`LinkedList:::drain_filter`",null],["unstable","const_io_cursor_position","const_io_structs","`io::Cursor::position` as `const fn`",null],["unstable","const_io_repeat","const_io_structs","`io::repeat` as `const fn`",null],["unstable","generators","generators","generators",2033],["unstable","type_ascription","type_ascription","type ascription",803],["unstable","type_alias_impl_trait","type_alias_impl_trait","`impl Trait` in type aliases",2515],["unstable","no_core","no_core","`#![no_core]`",null],["unstable","const_mut_refs","const_mut_refs","`&mut T` in `const` contexts",null],["unstable","associated_type_defaults","associated_type_defaults","default values for associated types",null],["unstable","never_type","never_type","the never type (`!`)",null],["unstable","raw_ref_op","raw_ref_op","the raw reference operator (`&raw [mut | const] $place`)",2582],["unstable","is_sorted_slice","is_sorted","`is_sorted` method family on slices",2351],["unstable","const_io_sink","const_io_structs","`io::sink` as `const fn`",null],["unstable","total_cmp","total_cmp","the `total_cmp` method on float types",null],["unstable","const_ptr_write","const_ptr_write","pointer `write` as `const fn`",null],["unstable","try_blocks","try_blocks","`try` blocks",243],["unstable","btreemap_try_insert","map_try_insert","`BTreeMap::try_insert`",null],["unstable","vec_drain_filter","drain_filter","`Vec:::drain_filter`",null],["unstable","thread_local","thread_local","`#[thread_local]` on `static`s",null],["unstable","link_args","link_args","`#[link_args]`",null],["unstable","plugin_registrar","plugin_registrar","`#[plugin_registrar]`",null],["unstable","duration_checked_float","duration_checked_float","`Duration::try_from_secs_*`",null],["unstable","pin_static_mut","pin_static_ref","`Pin::static_mut`",null],["unstable","register_tool","register_tool","`#![register_tool]`",null],["unstable","option_unzip","unzip_option","`Option::unzip`",null],["unstable","iter_zip","iter_zip","`core::iter::zip`",null],["unstable","const_io_cursor_get_ref","const_io_structs","`io::Cursor::get_ref` as `const fn`",null],["unstable","ready_macro","ready_macro","`task::ready!`",null],["unstable","const_btreeset_new","const_btree_new","`BTreeSet::new` as `const fn`",null],["unstable","termination_trait_lib","termination_trait_lib","`Termination` implementation for `Result`",null],["unstable","pub_macro_rules","pub_macro_rules","module scoping for `macro_rules!` macros",null],["unstable","cfg_target_has_atomic","cfg_target_has_atomic","`cfg(target_has_atomic = ...)`",null],["unstable","slice_ptr_len","slice_ptr_len","the `len` method on raw slices",null],["unstable","cow_is_borrowed","cow_is_borrowed","`Cow::is_borrowed`",null],["unstable","generic_associated_types","generic_associated_types","generic associated types",1598],["unstable","custom_inner_attributes","custom_inner_attributes","custom inner attributes",null],["unstable","const_btreemap_new","const_btree_new","`BTreeMap::new` as `const fn`",null],["unstable","const_ptr_write_unaligned","const_ptr_write","pointer `write_unaligned` as `const fn`",null],["unstable","stmt_expr_attributes","stmt_expr_attributes","attributes on expressions",16],["unstable","slice_take","slice_take","`take` method family on slices",null],["unstable","specialization","specialization","specialization",null],["unstable","option_zip_with","option_zip","`Option::zip_with`",null],["unstable","exclusive_range_pattern","exclusive_range_pattern","exclusive range patterns (`a..b`)",null],["unstable","default_free_fn","default_free_fn","the free `default` function (shorthand for `Default::default`)",null],["1.10","cstring_default","cstr_default","`Default` implementation for `CString`",null],["1.10","weak_new","downgraded_weak","`sync::Weak::new`",null],["1.10","cstr_default","cstr_default","`Default` implementation for `&CStr`",null],["1.27","target_feature",null,"`#[target_feature(...)]`",null],["1.27","proc_ident",null,"`proc` as an identifier",null],["1.27","fn_must_use","fn_must_use","`#[must_use]` on functions",1940],["1.27","termination_trait_test","termination_trait_test","types implementing `Termination` as the return type for `#[test]`s",null],["1.27","generic_param_attrs","generic_param_attrs","attributes on generic parameters",1327],["1.27","cfg_target_feature","cfg_target_feature","`#[cfg(target_feature = \"...\")]`",null],["1.27","macro_lifetime_matcher","macro_lifetime_matcher","the `lifetime` fragment specifier in `macro_rules!`",null],["1.27","dyn_trait","dyn_trait","`dyn Trait` as a syntax for trait objects",null],["1.42","slice_patterns","slice_patterns","subslice patterns (`[a, .., b]` and `[a, xs @ .., b]`)",null],["1.42","wait_timeout_until","wait_timeout_until","`Condvar::wait_timeout_while`",null],["1.42","slice_from_raw_parts","slice_from_raw_parts","`ptr::slice_from_raw_parts_mut`",null],["1.42","matches_macro","matches_macro","`matches!`",null],["1.42","attr_on_inline_mod",null,"attribute macros on inline modules",null],["1.42","proc_macro_extern_prelude",null,"the `proc_macro` crate without `extern crate` in procedural macro crates",null],["1.42","transparent_enums","transparent_enums","`#[repr(transparent)]` on single-variant enums",null],["1.42","manually_drop_take","manually_drop_take","`ManuallyDrop::take`",null],["1.42","wait_until","wait_until","`Condvar::wait_while`",null],["1.42","debug_map_key_value","debug_map_key_value","`DebugMap::value`",null],["1.42","alloc_layout_const_new","alloc_layout_const_new","`alloc::Layout::new` as `const fn`",null],["1.42","eq_cursor",null,"`PartialEq` and `Eq` implementations for `io::Cursor`",null],["1.42","iter_empty_send_sync","iter_empty_send_sync","unconditional `Send` and `Sync` implementations for `iter::Empty`",null],["1.9","deprecated","deprecated","`#[deprecated]`",1270],["1.37","underscore_const_names","underscore_const_names","`_` as an identifier for constants",null],["1.37","option_xor","option_xor","`Option::xor`",null],["1.37","reverse_bits","reverse_bits","`reverse_bits` integer methods",null],["1.37","copy_within","copy_within","`[T]::copy_within`",null],["1.37","generic_param_cfg_attrs",null,"conditional compilation of generic parameters",null],["1.37","kleene_op_2015",null,"the `?` Kleene macro operator in the 2015 edition",null],["1.37","type_alias_enum_variants",null,"enum variants through a type alias",null],["1.37","repr_align_enum","repr_align_enum","`#[repr(align(N)]` on enums",null],["1.43","assoc_int_consts","assoc_int_consts","numeric constants as associated constants",null],["1.43","from_utf8_error_clone",null,"`Clone` implementation for `FromUtf8Error`",null],["1.43","if_attr",null,"attributes on `if` expressions",null],["1.43","const_ascii_methods_on_intrinsics","const_ascii_methods_on_intrinsics","`u8::is_ascii` as `const fn`",null],["1.43","boxed_slice_try_from","boxed_slice_try_from","`TryFrom` implementations from boxed slices to boxed arrays",null],["1.43","once_is_completed","once_is_completed","`sync::once::Once::is_completed`",null],["1.43","from_utf8_error_partial_eq",null,"`PartialEq` implementation for `FromUtf8Error`",null],["1.43","from_utf8_error_eq",null,"`Eq` implementation for `FromUtf8Error`",null],["1.43","extra_log_consts","extra_log_consts","`{f32, f64}::{LOG2_10, LOG10_2}`",null],["1.43","core_primitive","core_primitive","`core::primitive`",null],["1.43","string_as_mut","string_as_mut","`AsMut` implementation for `String`",null],["1.43","cstring_from_vec_of_nonzerou8","cstring_from_vec_of_nonzerou8","`From>` implementation for `CString`",null],["1.43","iter_once_with","iter_once_with","`iter::once_with`",null],["1.18","pub_restricted","pub_restricted","`pub(restricted)` visibilities",1422],["1.18","windows_subsystem","windows_subsystem","`#![windows_subsystem]`",null],["1.13","question_mark","question_mark","the `?` operator",243],["1.13","assert_ne","assert_ne","`assert_ne!`",1653],["1.13","debug_assert_ne","assert_ne","`debug_assert_ne!`",1653],["1.13","type_macros","type_macros","`macro_rules!` macros in type position",null],["1.14","fn_ptr_to_unsafe_fn_ptr",null,"`fn` pointer to `unsafe fn` pointer coercion",null],["1.14","dotdot_in_tuple_patterns","dotdot_in_tuple_patterns","`..` in tuple (struct) patterns",1492],["1.14","println_no_args",null,"`println!` without arguments",null],["1.8","braced_empty_structs","braced_empty_structs","empty structs and enum variants with braces",218],["1.8","augmented_assignments","augmented_assignments","assignment operator overloading",null],["1.12","nested_macro_rules",null,"`macro_rules!` within `macro_rules!`",null],["1.12","cfg_attr_path",null,"`cfg_attr` on `path` attributes",null],["1.7","string_as_mut_str","string_as_str","`String::as_mut_str`",null],["1.7","vec_as_mut_slice","vec_as_slice","`Vec::as_mut_slice`",null],["1.7","string_as_str","string_as_str","`String::as_str`",null],["1.7","vec_as_slice","vec_as_slice","`Vec::as_slice`",null],["1.48","const_result_is_ok","const_result","`Result::is_ok` as `const fn`",null],["1.48","const_option_is_none","const_option","`Option::is_none` as `const fn`",null],["1.48","const_option_is_some","const_option","`Option::is_some` as `const fn`",null],["1.48","future_pending","future_readiness_fns","`future::pending`",null],["1.48","const_option_as_ref","const_option","`Option::as_ref` as `const fn`",null],["1.48","write_sink_ref","write_mt","`Write` implementation for `&Sink`",null],["1.48","write_stdout_ref","write_mt","`Write` implementation for `&Stdout`",null],["1.48","const_result_as_ref","const_result","`Result::as_ref` as `const fn`",null],["1.48","const_ordering_reverse","const_ordering","`cmp::Ordering::reverse` as `const fn`",null],["1.48","write_stderr_ref","write_mt","`Write` implementation for `&Stderr`",null],["1.48","write_child_stdin_ref","write_mt","`Write` implementation for `&ChildStdin`",null],["1.48","intra_doc_links",null,"intra-doc links",null],["1.48","deque_make_contiguous","deque_make_contiguous","`VecDeque::make_contiguous`",null],["1.48","future_ready","future_readiness_fns","`future::ready`",null],["1.48","slice_ptr_range","slice_ptr_range","slice to pointer range methods",null],["1.48","const_ordering_then","const_ordering","`cmp::Ordering::then` as `const fn`",null],["1.48","const_result_is_err","const_result","`Result::is_err` as `const fn`",null],["1.48","array_try_from_vec","array_try_from_vec","`TryFrom>` implementation for `[T; N]`",null],["1.48","doc_alias","doc_alias","`#[doc(alias = \"…\")]`",null],["1.17","static_in_const","static_in_const","elision of `'static` lifetimes in `static`s and `const`s",1623],["1.17","where_clauses_with_self",null,"`Self` in the where clause of trait impl's",1647],["1.17","static_recursion","static_recursion","recursive static items",null],["1.17","cell_non_copy","cell_non_copy","`Cell` with non-`Copy` types",1651],["1.17","field_init_shorthand","field_init_shorthand","field init shorthands (`x` for `x: x` in struct initializers)",1682],["1.32","const_ipv4addr_is_unspecified","const_ipv4","`Ipv4Addr::is_unspecified` as `const fn`",null],["1.32","const_range_inclusive_start","const_inclusive_range_methods","`RangeInclusive::start` as `const fn`",null],["1.32","boxed_slice_from_iter","boxed_slice_from_iter","`FromIterator` implementation for `Box<[T]>`",null],["1.32","uniform_paths","uniform_paths","uniform paths (`use x::y;` as `use self::x::y;`) in the 2018 edition",null],["1.32","const_char_is_ascii","const_ascii_methods_on_intrinsics","`char::is_ascii` as `const fn`",null],["1.32","const_ipv6addr_octets","const_ipv6","`Ipv6Addr::octets` as `const fn`",null],["1.32","const_slice_as_ptr","const_slice_as_ptr","`slice::as_ptr` as `const fn`",null],["1.32","self_in_typedefs","self_in_typedefs","`Self` in type definitions",2300],["1.32","const_unsafe_cell_get","const_unsafecell_get","`UnsafeCell::get` as `const fn`",null],["1.32","const_range_inclusive_end","const_inclusive_range_methods","`RangeInclusive::end` as `const fn`",null],["1.32","const_str_as_ptr","const_str_as_ptr","`str::as_ptr` as `const fn`",null],["1.32","const_cstr_as_ptr","const_str_as_ptr","`CStr::as_ptr` as `const fn`",null],["1.32","const_duration_subsec_micros","duration_consts","`Duration::subsec_micros` as `const fn`",null],["1.32","const_manually_drop_new","const_manually_drop","`ManuallyDrop::new` as `const fn`",null],["1.32","self_struct_ctor","self_struct_ctor","`Self` as a constructor and pattern for unit and tuple structs",2302],["1.32","path_from_str","path_from_str","`FromStr` implementation for `PathBuf`",null],["1.32","const_cell_as_ptr","const_cell_as_ptr","`Cell::as_ptr` as `const fn`",null],["1.32","const_ipv6addr_new","const_ipv6","`Ipv6Addr::new` as `const fn`",null],["1.32","dbg_macro","dbg_macro","`dbg!`",2361],["1.32","macro_at_most_once_rep","macro_at_most_once_rep","`?` as the Kleene \"at most one\" operator in `macro_rules!` in the 2018 edition",2298],["1.32","macro_literal_matcher","macro_literal_matcher","the `literal` fragment specifier in `macro_rules!`",1576],["1.32","const_non_null_as_ptr","const_nonnull_as_ptr","`NonNull::as_ptr` as `const fn`",null],["1.32","const_duration_subsec_nanos","duration_consts","`Duration::subsec_nanos` as `const fn`",null],["1.32","const_manually_drop_into_inner","const_manually_drop","`ManuallyDrop::into_inner` as `const fn`",null],["1.32","must_use_traits",null,"`#[must_use]` on traits",null],["1.32","const_duration_as_secs","duration_consts","`Duration::as_secs` as `const fn`",null],["1.32","int_to_from_bytes","int_to_from_bytes","integer ↔ bytes conversion functions",null],["1.32","const_iter_empty","const_iter_empty","`iter::empty` as `const fn`",null],["1.32","const_duration_subsec_millis","duration_consts","`Duration::subsec_millis` as `const fn`",null],["1.57","string_try_reserve_exact","try_reserve","`String::try_reserve_exact`",null],["1.57","vecdeque_try_reserve_exact","try_reserve","`VecDeque::try_reserve_exact`",null],["1.57","iter_map_while","iter_map_while","`Iterator::map_while`",null],["1.57","hashset_try_reserve","try_reserve","`HashSet::try_reserve`",null],["1.57","vec_try_reserve","try_reserve","`Vec::try_reserve`",null],["1.57","const_panic","const_panic","panicking in `const` contexts",null],["1.57","array_as_mut_slice","array_as_slice","`<[T; N]>::as_mut_slice`",null],["1.57","vecdeque_try_reserve","try_reserve","`VecDeque::try_reserve`",null],["1.57","hashmap_try_reserve","try_reserve","`HashMap::try_reserve`",null],["1.57","array_as_slice","array_as_slice","`<[T; N]>::as_slice`",null],["1.57","vec_try_reserve_exact","try_reserve","`Vec::try_reserve_exact`",null],["1.57","string_try_reserve","try_reserve","`String::try_reserve`",null],["1.57","macro_attrs_in_derive_output","macro_attributes_in_derive_output","attribute macros after derive macros, on the same item",null],["1.57","proc_macro_is_available","proc_macro_is_available","`proc_macro::is_available`",null],["1.30","macro_vis_matcher","macro_vis_matcher","the `vis` fragment specifier in `macro_rules!`",null],["1.30","proc_macro_path_invoc","proc_macro_path_invoc","multi-segment paths in attributes and derives",null],["1.30","attr_literals","attr_literals","non-string literals in attribute lists and values of key-value pairs",null],["1.30","tool_attributes","tool_attributes","tool-scoped attributes",null],["1.30","raw_identifiers","raw_identifiers","raw identifiers (`r#keyword`)",null],["1.30","used","used","`#[used]`",null],["1.30","crate_in_paths","crate_in_paths","`crate` in paths",null],["1.30","panic_handler","panic_handler","`#[panic_handler]`",null],["1.30","infer_outlives_requirements","infer_outlives_requirements","outlives requirement inference",2093],["1.30","extern_absolute_paths","extern_absolute_paths","absolute paths as paths from other crates",null],["1.30","non_modrs_mods","non_modrs_mods","`foo.rs` as an alternative to `foo/mod.rs`",null],["1.30","use_extern_macro","use_extern_macro","macro imports and reexports via the module system",null],["1.5","fs_canonicalize","fs_canonicalize","`fs::canonicalize`",1044],["1.5","vec_resize","vec_resize","`Vec::resize`",509],["1.60","u8_escape_ascii","inherent_ascii_escape","`u8::escape_ascii`",null],["1.60","rc_new_cyclic","arc_new_cyclic","`Rc::new_cyclic`",null],["1.60","maybe_uninit_assume_init_drop","maybe_uninit_extra","`MaybeUninit::assume_init_drop`",null],["1.60","vec_spare_capacity","vec_spare_capacity","`Vec::spare_capacity_mut`",null],["1.60","not_never",null,"`Not` implementation for `!`",null],["1.60","arc_new_cyclic","arc_new_cyclic","`Arc::new_cyclic`",null],["1.60","maybe_uninit_assume_init_read","maybe_uninit_extra","`MaybeUninit::assume_init_read`",null],["1.60","slice_escape_ascii","inherent_ascii_escape","`[u8]::escape_ascii`",null],["1.51","poll_map_ok","poll_map","`Poll>>::map_ok`",null],["1.51","arc_increment_strong_count","arc_mutate_strong_count","`Arc::increment_strong_count`",null],["1.51","slice_strip_prefix","slice_strip","`slice::strip_prefix`",null],["1.51","box_send_sync_any_downcast","box_send_sync_any_downcast","`Box::::downcast`",null],["1.51","empty_seek","empty_seek","`io::Seek` implementation for `io::Empty`",null],["1.51","slice_strip_suffix","slice_strip","`slice::strip_suffix`",null],["1.51","array_value_iter","array_value_iter","by-value `[T; N]` iterator `core::array::IntoIter`",null],["1.51","str_as_mut","as_mut_str_for_str","`AsMut` implementation for `str`",null],["1.51","arc_decrement_strong_count","arc_mutate_strong_count","`Arc::decrement_strong_count`",null],["1.51","unsigned_abs","unsigned_abs","the `unsigned_abs` method on signed integers",null],["1.51","nonzero_div","nonzero_div","`Div` implementation for `u{0}`",null],["1.51","wake_trait","wake_trait","the `Wake` trait",null],["1.51","min_const_generics","min_const_generics","simple const generics",null],["1.51","poll_map_err","poll_map","`Poll>>::map_err`",null],["1.51","iterator_reduce","iterator_fold_self","`Iterator::reduce`",null],["1.51","slice_fill_with","slice_fill_with","`slice::fill_with`",null],["1.51","nonzero_rem","nonzero_div","`Rem` implementation for `u{0}`",null],["1.51","error_by_ref","error_by_ref","`Error` implementation for `&(impl Error)`",null],["1.51","seek_stream_position","seek_convenience","`io::Seek::stream_position`",null],["1.2","atomic_ptr_send",null,"`Send` implementation for `AtomicPtr`",null],["1.2","iter_empty","iter_empty","`iter::empty`",null],["1.2","iter_once","iter_once","`iter::once`",null],["1.24","abi_sysv64","abi_sysv64","the sysV64 ABI on any platform",null],["1.24","unsized_ptr_is_null",null,"`is_null` on pointers to unsized types",null],["1.29","proc_macro","proc_macro","procedural macros",null],["1.36","const_needs_drop","const_needs_drop","`mem::needs_drop` as `const fn`",null],["1.36","dbg_multiple_args",null,"multiple arguments in `dbg!` macro invocations",null],["1.36","maybe_uninit","maybe_uninit","`mem::MaybeUninit`",1892],["1.36","string_borrow_mut_str",null,"`BorrowMut` implementation for `String`",null],["1.36","io_cursor_default",null,"`Default` implementation for `io::Cursor`",null],["1.36","nll_2015",null,"Non-Lexical Lifetimes (NLL) on the 2015 edition",null],["1.36","string_from_string_ref",null,"`From<&String>` implementation for `String`",null],["1.36","alloc","alloc","the `alloc` crate",null],["1.36","hashbrown",null,"`hashbrown::HashMap` as the implementation of `HashMap`",null],["1.36","const_nonnull_dangling","const_nonnull_dangling","`NonNull::dangling` as `const fn`",null],["1.36","const_nonnull_cast","const_nonnull_cast","`NonNull::cast` as `const fn`",null],["1.36","const_layout_from_size_align_unchecked",null,"`alloc::Layout::from_size_align_unchecked` as `const fn`",null],["1.4","use_group_renaming",null,"item renamings in import groups",null],["1.20","associated_consts","associated_consts","associated constants in `trait` and `impl` blocks",null],["1.20","struct_field_attributes","struct_field_attributes","attributes on struct literal fields",null],["1.20","unimplemented_macro_args",null,"`unimplemented!` with a message",null],["1.20","compile_error","compile_error_macro","`compile_error!`",1695],["1.38","duration_mul_f64","duration_float","`Duration::mul_f64`",null],["1.38","thread_accesserror_eq",null,"`Eq` implementation for `thread::AccessError`",null],["1.38","iter_peekable_double_ended",null,"`DoubleEndedIterator` implementation for `iter::Peekable`",null],["1.38","global_allocator_in_submodules",null,"`#[global_allocator]` inside submodules",null],["1.38","thread_accesserror_clone",null,"`Clone` implementation for `thread::AccessError`",null],["1.38","thread_accesserror_copy",null,"`Copy` implementation for `thread::AccessError`",null],["1.38","iter_take_double_ended",null,"`DoubleEndedIterator` implementation for `iter::Take`",null],["1.38","duration_div_f32","duration_float","`Duration::div_f32`",null],["1.38","thread_accesserror_partialeq",null,"`PartialEq` implementation for `thread::AccessError`",null],["1.38","deprecated_macros",null,"`#[deprecated]` on macros",null],["1.38","duration_from_secs_f64","duration_float","`Duration::from_secs_f64`",null],["1.38","thread_accesserror_error",null,"`Error` implementation for `thread::AccessError`",null],["1.38","any_type_name","type_name","`any::type_name`",null],["1.38","duration_as_secs_f64","duration_float","`Duration::as_secs_f64`",null],["1.38","unpin_ptr","duration_float","`Unpin` implementations for pointers",null],["1.38","ascii_escapedefault_clone",null,"`Clone` implementation for `ascii::EscapeDefault`",null],["1.38","iter_step_by_double_ended",null,"`DoubleEndedIterator` implementation for `iter::StepBy`",null],["1.38","duration_from_secs_f32","duration_float","`Duration::from_secs_f32`",null],["1.38","ascii_escapedefault_display",null,"`Display` implementation for `ascii::EscapeDefault`",null],["1.38","str_chars_debug",null,"`Debug` implementation for `std::str::Chars`",null],["1.38","duration_as_secs_f32","duration_float","`Duration::as_secs_f32`",null],["1.38","euclidean_division","euclidean_division","euclidean division & modulo",null],["1.38","shared_from_iter","shared_from_iter","`FromIterator` implementation for `Rc` and `Arc`",null],["1.38","ptr_cast","ptr_cast","`cast` method on pointers",null],["1.38","duration_div_f64","duration_float","`Duration::div_f64`",null],["1.38","duration_mul_f32","duration_float","`Duration::mul_f32`",null],["1.31","edition_2018",null,"the 2018 edition",null],["1.31","min_const_fn","min_const_fn","`const fn`",911],["1.31","impl_header_lifetime_elision","impl_header_lifetime_elision","lifetime elision in `impl` headers",null],["1.31","extern_crate_item_prelude","extern_crate_item_prelude","`extern crate foo as bar;`",null],["1.31","tool_lints","tool_lints","scoped lints",null],["1.31","pattern_parentheses","pattern_parentheses","parentheses in patterns",null],["1.1","split_whitespace","split_whitespace","`str::split_whitespace`",1054],["1.6","no_std","no_std","`#![no_std]`",null],["1.22","drop_types_in_const","drop_types_in_const","`Drop` types in constants",1440],["1.55","bound_cloned","bound_cloned","`Bound::cloned`",null],["1.55","range_from_patterns","half_open_range_patterns","\"RangeFrom\" patterns (`a..`)",null],["1.55","maybe_uninit_write","maybe_uninit_write","`MaybeUninit::write`",null],["1.55","proc_macro_group_span_open","proc_macro_group_span","`Group::span_open`",null],["1.55","array_map","array_map","`[T; N]::map`",null],["1.55","control_flow","control_flow_enum_type","the `ControlFlow` enum",null],["1.55","proc_macro_group_span_close","proc_macro_group_span","`Group::span_close`",null],["1.41","weak_counts","weak_counts","`Weak` count methods",null],["1.41","re_rebalance_coherence","re_rebalance_coherence","relaxed coherence rules",null],["1.41","result_map_or_else","result_map_or_else","`Result::map_or_else`",null],["1.41","cfg_doc","doc_cfg","`#[cfg(doc)]`",null],["1.41","maybe_uninit_debug","maybe_uninit_debug","`Debug` implementation for `MaybeUninit`",null],["1.41","result_map_or","result_map_or","`Result::map_or`",null],["1.41","core_panic_info","core_panic_info","the `core::panic` module",null],["1.16","self_struct_expr_pat",null,"`Self` in struct expressions and patterns",null],["1.16","writeln_no_args",null,"`writeln!` without arguments",null],["1.16","assoc_ty_struct_expr_pat",null,"associated types in struct expressions and patterns",null],["1.45","proc_macro_span_resolved_at","proc_macro_span_resolved_at","`proc_macro::Span::resolved_at`",null],["1.45","expr_proc_macro","proc_macro_hygiene","function-like procedural macros in expression, pattern and statement position",null],["1.45","rc_from_cow","shared_from_cow","`From>`` implementation for ``Rc`",null],["1.45","proc_macro_span_mixed_site","proc_macro_mixed_site","`proc_macro::Span::mixed_site`",null],["1.45","box_from_cow","box_from_cow","`From>` implementations for `Box`ed types",null],["1.45","atomic_min_max","atomic_min_max","`AtomicN::{fetch_min, fetch_max}`",null],["1.45","unicode_version","unicode_version","`std::char::UNICODE_VERSION`",null],["1.45","arc_from_cow","shared_from_cow","`From>` implementation for `Arc`",null],["1.45","btreemap_remove_entry","btreemap_remove_entry","`BTreeMap::remove_entry`",null],["1.45","nonzero_bitor","nonzero_bitor","`BitOr` implementations for `NonZero` integer types",null],["1.45","proc_macro_span_located_at","proc_macro_span_located_at","`proc_macro::Span::located_at`",null],["1.45","atomic_fetch_update","no_more_cas","`AtomicN::fetch_update`",null],["1.45","nonzero_bitor_assign","nonzero_bitor","`BitOrAssign` implementations for `NonZero` integer types",null],["1.54","hashmap_into_values","map_into_keys_values","`HashMap::into_values`",null],["1.54","extended_key_value_attrs","extended_key_value_attributes","macro expansion in key-value attributes",null],["1.54","btreemap_into_values","map_into_keys_values","`BTreeMap::into_values`",null],["1.54","hashmap_into_keys","map_into_keys_values","`HashMap::into_keys`",null],["1.54","btreemap_into_keys","map_into_keys_values","`BTreeMap::into_keys`",null],["1.50","const_ipv4addr_to_ipv6_mapped","const_ipv4","`Ipv4Addr::to_ipv6_mapped` as `const fn`",null],["1.50","f64_clamp","clamp","`f64::clamp`",1961],["1.50","const_ipaddr_is_ipv6","const_ip","`IpAddr::is_ipv6` as `const fn`",null],["1.50","punct_partial_eq_char",null,"`PartialEq` implementation for `proc_macro::Punct`",null],["1.50","const_ipaddr_is_multicast","const_ip","`IpAddr::is_multicast` as `const fn`",null],["1.50","slice_fill","slice_fill","`slice::fill`",null],["1.50","const_ipaddr_is_ipv4","const_ip","`IpAddr::is_ipv4` as `const fn`",null],["1.50","const_ipv4addr_octets","const_ipv4","`Ipv4Addr::octets` as `const fn`",null],["1.50","const_ipv4addr_is_link_local","const_ipv4","`Ipv4Addr::is_link_local` as `const fn`",null],["1.50","const_ipv6addr_to_ipv4","const_ipv6","`Ipv6Addr::to_ipv4` as `const fn`",null],["1.50","assign_manually_drop_in_unions",null,"safe assignment to `ManuallyDrop` in `union`s",null],["1.50","f32_clamp","clamp","`f32::clamp`",1961],["1.50","unsafe_cell_get_mut","unsafe_cell_get_mut","`UnsafeCell::get_mut`",null],["1.50","const_ipv4addr_is_broadcast","const_ipv4","`Ipv4Addr::is_broadcast` as `const fn`",null],["1.50","refcell_take","refcell_take","`RefCell::take`",null],["1.50","const_ipv4addr_is_private","const_ipv4","`Ipv4Addr::is_private` as `const fn`",null],["1.50","const_ipv6addr_is_loopback","const_ipv6","`Ipv6Addr::is_loopback` as `const fn`",null],["1.50","const_ipv6addr_is_unspecified","const_ipv6","`Ipv6Addr::is_unspecified` as `const fn`",null],["1.50","const_ipaddr_is_unspecified","const_ip","`IpAddr::is_unspecified` as `const fn`",null],["1.50","const_ipv4addr_is_loopback","const_ipv4","`Ipv4Addr::is_loopback` as `const fn`",null],["1.50","const_ipaddr_is_loopback","const_ip","`IpAddr::is_loopback` as `const fn`",null],["1.50","ord_clamp","clamp","`Ord::clamp`",1961],["1.50","const_ipv4addr_is_documentation","const_ipv4","`Ipv4Addr::is_documentation` as `const fn`",null],["1.50","const_ipv6addr_is_multicast","const_ipv6","`Ipv6Addr::is_multicast` as `const fn`",null],["1.50","bool_then","lazy_bool_to_option","`bool::then`",null],["1.50","const_ipv4addr_is_multicast","const_ipv4","`Ipv4Addr::is_multicast` as `const fn`",null],["1.50","const_ipv4addr_to_ipv6_compatible","const_ipv4","`Ipv4Addr::to_ipv6_compatible` as `const fn`",null],["1.50","const_ipv6addr_segments","const_ipv6","`Ipv6Addr::segments` as `const fn`",null],["1.50","or_insert_with_key","or_insert_with_key","`Entry::or_insert_with_key`",null],["1.35","alloc_system_default",null,"`Default` implementation for `alloc::System`",null],["1.35","exact_size_case_mapping_iter","exact_size_case_mapping_iter","`ExactSizeIterator` implementation for `ToLowercase` and `ToUppercase`",null],["1.35","dbg_no_args",null,"`dbg!` without arguments",null],["1.35","boxed_closure_impls","boxed_closure_impls","boxed closure `Fn*` trait implementations",null],["1.35","asraw_stdio_locks","asraw_stdio_locks","`AsRawFd` implementation for `StdinLock`, `StdoutLock` and `StderrLock`",null],["1.35","coerce_closure_to_unsafe_fn_ptr",null,"closure to unsafe function pointer coercions",null],["1.11","nested_cfg_attr",null,"nested `cfg_attr` attributes",null],["1.15","proc_macro_derive","proc_macro","procedural derive macros (macros 1.1)",1681],["1.39","instant_checked_duration_since","checked_duration_since","`Instant::checked_duration_since`",null],["1.39","const_string_new","const_string_new","`String::new` as `const fn`",null],["1.39","bind_by_move_pattern_guards","bind_by_move_pattern_guards","shared references to bind-by-move patterns in `match` arms' guards",null],["1.39","const_slice_len","const_slice_len","`[T]::len` as `const fn`",null],["1.39","await","async_await","`.await`",null],["1.39","instant_saturating_duration_since","checked_duration_since","`Instant::saturating_duration_since`",null],["1.39","pin_into_inner","pin_into_inner","`Pin::into_inner`",null],["1.39","const_linkedlist_new","const_linked_list_new","`LinkedList::new` as `const fn`",null],["1.39","const_vec_new","const_vec_new","`Vec::new` as `const fn`",null],["1.39","const_str_len","const_str_len","`str::len` as `const fn`",null],["1.39","const_str_as_bytes",null,"`str::as_bytes` as `const fn`",null],["1.39","async","async_await","`async`",null],["1.39","param_attrs","param_attrs","attributes on function parameters",null],["1.25","match_beginning_vert","match_beginning_vert","`|` at the beginning of match arms",1925],["1.25","use_nested_groups","use_nested_groups","nested groups in imports",2128],["1.25","repr_align","repr_align","`#[repr(align(N))]`",1358],["1.46","nested_tuple_indexing",null,"nested tuple indexing without parentheses (`tuple.0.0`)",null],["1.46","track_caller","track_caller","the `#[track_caller]` attribute",2091],["1.46","const_loop","const_loop","`loop` and `while` in constant evaluation",2344],["1.46","vec_drain_as_slice","vec_drain_as_slice","`std::vec::Drain::as_slice`",null],["1.46","const_forget","const_forget","`mem::forget` as `const fn`",null],["1.46","trailing_ones","leading_trailing_ones","`trailing_ones` integer methods",null],["1.46","leading_ones","leading_trailing_ones","`leading_ones` integer methods",null],["1.46","partialeq_vec_for_ref_slice","partialeq_vec_for_ref_slice","`PartialEq>` implementations for slices",null],["1.46","vec_intoiter_as_ref","vec_intoiter_as_ref","`AsRef<[T]>` implementation for `vec::IntoIter`",null],["1.46","const_transmute","const_transmute","`mem::transmute` in constants",null],["1.46","from_char_for_string","from_char_for_string","`From` implementation for `String`",null],["1.46","const_slice_cast",null,"array to slice casts and coercions in `const fn`",null],["1.46","option_zip","option_zip","`Option::zip`",null],["1.46","const_if_match","const_if_match","`if` and `match` in constant evaluation",2342],["1.46","vec_drain_as_ref","vec_drain_as_slice","`AsRef<[T]>` implementation for `vec::Drain<'_, T>`",null],["1.52","const_char_len_utf16","const_char_len_utf","`char::len_utf16` as `const fn`",null],["1.52","str_split_once","str_split_once","`str::split_once`",null],["1.52","const_char_eq_ignore_ascii_case","const_ascii_methods_on_intrinsics","`char::eq_ignore_ascii_case` as `const fn`",null],["1.52","const_char_len_utf8","const_char_len_utf","`char::len_utf8` as `const fn`",null],["1.52","arc_error","arc_error","`Error` implementation for `Arc`",null],["1.52","const_u8_to_ascii_uppercase","const_ascii_methods_on_intrinsics","`u8::to_ascii_uppercase` as `const fn`",null],["1.52","const_u8_to_ascii_lowercase","const_ascii_methods_on_intrinsics","`u8::to_ascii_lowercase` as `const fn`",null],["1.52","const_u8_eq_ignore_ascii_case","const_ascii_methods_on_intrinsics","`u8::eq_ignore_ascii_case` as `const fn`",null],["1.52","const_char_to_ascii_lowercase","const_ascii_methods_on_intrinsics","`char::to_ascii_lowercase` as `const fn`",null],["1.52","const_char_to_ascii_uppercase","const_ascii_methods_on_intrinsics","`char::to_ascii_uppercase` as `const fn`",null],["1.52","str_rsplit_once","str_split_once","`str::rsplit_once`",null],["1.52","char_partial_eq_punct",null,"`PartialEq` implementation for `char`",null],["1.26","match_default_bindings","match_default_bindings","default match binding modes",2005],["1.26","const_indexing","const_indexing","array indexing in constants",null],["1.26","universal_impl_trait","universal_impl_trait","`impl Trait` in function arguments",null],["1.26","i128_type","i128_type","128 bit integer types",null],["1.26","underscore_lifetimes","underscore_lifetimes","placeholder lifetimes (`'_`)",2115],["1.26","conservative_impl_trait","conservative_impl_trait","`impl Trait` in function return types",null],["1.26","inclusive_range_syntax","inclusive_range_syntax","inclusive range syntax",1192],["1.26","termination_trait","termination_trait","types implementing `Termination` as the return type for `fn main()`",null],["1.26","copy_closures","copy_closures","`Copy` implementation for applicable closures",2132],["1.26","clone_closures","clone_closures","`Clone` implementation for applicable closures",2132],["1.26","dotdoteq_in_patterns","dotdoteq_in_patterns","inclusive ranges in patterns",1192],["1.44","lexerror_error","proc_macro_lexerror_impls","`Error` implementation for `proc_macro::LexError`",null],["1.44","ioslice_copy",null,"`Copy` implementation for `io::IoSlice`",null],["1.44","from_mut_str_for_string","from_mut_str_for_string","`From<&mut str>` implementation for `String`",null],["1.44","path_buf_reserve_exact","path_buf_capacity","`PathBuf::reserve_exact`",null],["1.44","alloc_layout_align_to","alloc_layout_extras","`alloc::Layout::align_to`",null],["1.44","float_approx_unchecked_to","float_approx_unchecked_to","unchecked float → int conversion",null],["1.44","osstring_indexmut_rangefull","mut_osstr","`IndexMut` implementation for `OsString`",null],["1.44","path_buf_reserve","path_buf_capacity","`PathBuf::reserve`",null],["1.44","const_int_to_from_bytes",null,"integer ↔ bytes conversion functions as `const fn`",null],["1.44","path_buf_clear","path_buf_capacity","`PathBuf::clear`",null],["1.44","ioslice_clone",null,"`Clone` implementation for `io::IoSlice`",null],["1.44","no_std_async_await",null,"`async` / `.await` in `#[no_std]` crates",null],["1.44","vec_from_array","vec_from_array","`From<[T; N]>` implementation for `Vec`",null],["1.44","osstring_deref_mut","mut_osstr","`DerefMut` implementation for `OsString`",null],["1.44","path_buf_with_capacity","path_buf_capacity","`PathBuf::with_capacity`",null],["1.44","alloc_layout_extend","alloc_layout_extras","`alloc::Layout::extend`",null],["1.44","alloc_layout_pad_to_align","alloc_layout_extras","`alloc::Layout::pad_to_align`",null],["1.44","path_buf_shrink_to_fit","path_buf_capacity","`PathBuf::shrink_to_fit`",null],["1.44","path_buf_capacity","path_buf_capacity","`PathBuf::capacity`",null],["1.44","convert_infallible_hash","convert_infallible_hash","`Hash` implementation for `convert::Infallible`",null],["1.44","alloc_layout_array","alloc_layout_extras","`alloc::Layout::array`",null],["1.44","lexerror_display","proc_macro_lexerror_impls","`Display` implementation for `proc_macro::LexError`",null],["1.40","proc_macro_generated_macro_rules",null,"proc-macros that generate `macro_rules!` macros",null],["1.40","udpsocker_peer_addr","udp_peer_addr","`UdpSocket::peer_addr`",null],["1.40","slice_repeat","repeat_generic_slice","`slice::repeat`",null],["1.40","non_exhaustive","non_exhaustive","`#![non_exhaustive]`",2008],["1.40","option_deref","option_deref","`as_deref` and `as_deref_mut` on `Option`",null],["1.40","macros_in_extern","macros_in_extern","macro invocations in `extern {}` blocks",null],["1.40","cfg_doctest","cfg_doctest","`#[cfg(doctest)]`",null],["1.40","type_proc_macros",null,"function-like procedural macros in type position",null],["1.40","const_constructor","const_constructor","tuple struct and tuple variant constructors in `const fn`",null],["1.40","option_flattening","option_flattening","`Option::flatten`",null],["1.40","map_get_key_value","map_get_key_value","`get_key_value` on `HashMap` and `BTreeMap`",null],["1.40","mem_take","mem_take","`mem::take`",null],["1.40","todo_macro","todo_macro","`todo!`",null],["1.40","modern_meta_macro_pattern",null,"the `meta` fragment specifier in `macro_rules!` for modern attribute syntax",null],["1.40","const_is_power_of_two",null,"`is_power_of_two` as `const fn`",null],["1.40","float_to_from_bytes","float_to_from_bytes","float ↔ bytes conversion functions",null],["1.47","tau_constant","tau_constant","the `TAU` constant",null],["1.47","range_full_default",null,"`Default` implementation for `RangeFull`",null],["1.47","range_default",null,"`Default` implementation for `Range`",null],["1.47","proc_macro_raw_ident","proc_macro_raw_ident","`proc_macro::Ident::new_raw`",null],["1.47","result_deref","inner_deref","`as_deref` and `as_deref_mut` on `Result`",null],["1.47","cstr_range_from","cstr_range_from","`Index` implementation for `CStr`",null],["1.47","const_type_id","const_type_id","`TypeId::of` in `const fn`",null],["1.47","vec_leak","vec_leak","`Vec::leak`",null],["1.47","array_gt_32_impls",null,"`[T; N]` trait implementations with N > 32",null],["1.0","default_type_params","default_type_params","type parameter defaults",null],["1.0","while_let","while_let","`while let` expressions",null],["1.0","tuple_indexing","tuple_indexing","tuple indexing",null],["1.0","macro_rules","macro_rules","`macro_rules!`",null],["1.0","if_let","if_let","`if let` expressions",null],["1.0","associated_types","associated_types","associated types in traits",null],["1.0","slicing_syntax","slicing_syntax","`&foo[a..b]` as slicing syntax",null],["1.0","struct_variant","struct_variant","struct variants in enums",null],["1.58","cstring_from_vec_with_nul","cstring_from_vec_with_nul","`CString::from_vec_with_nul`",null],["1.58","is_symlink","is_symlink","`is_symlink` methods",null],["1.58","with_options","with_options","`File::options`",null],["1.58","const_raw_ptr_deref","const_raw_ptr_deref","`*const T` dereferences in `const` contexts",null],["1.58","saturating_div","saturating_div","`{integer}::saturating_div`",null],["1.58","char_array_pattern",null,"`Pattern` implementation for `[char; N]`",null],["1.58","format_args_capture","format_args_capture","implicit named arguments for formatting macros",2795],["1.58","cstring_from_vec_with_nul_unchecked","cstring_from_vec_with_nul","`CString::from_vec_with_nul_unchecked`",null],["1.58","option_result_unwrap_unchecked","option_result_unwrap_unchecked","`unwrap_unchecked` methods",null],["1.3","time","time","`std::time`",null],["1.3","duration","duration","`std::time::Duration`",null],["1.49","empty_enum_to_int",null,"uninhabited enum to integer casts",null],["1.49","nzint_try_from_nzint","nzint_try_from_nzint_conv","`TryFrom` conversions between `NonZero` integer types",null],["1.49","partialeq_slice_for_vec","partialeq_vec_for_slice","`impl PartialEq<[B]> for Vec where A: PartialEq`",null],["1.49","manually_drop_in_unions","untagged_unions","`ManuallyDrop` in `union`s",null],["1.49","const_poll_is_ready","const_poll","`Poll::is_ready` as `const fn`",null],["1.49","const_poll_is_pending","const_poll","`Poll::is_pending` as `const fn`",null],["1.49","partialeq_vec_for_slice","partialeq_vec_for_slice","`impl PartialEq> for [A] where A: PartialEq`",null],["1.49","move_ref_pattern","move_ref_pattern","move and reference bindings in the same match pattern",null]]; \ No newline at end of file diff --git a/extension/index/crates.js b/extension/index/crates.js index 3b8f3495..cffb72f8 100644 --- a/extension/index/crates.js +++ b/extension/index/crates.js @@ -1 +1 @@ -var mapping=JSON.parse('{"@f":"rust","^k":"JSON","$7":"functionality","$o":"terminal","&n":"Derive","&G":"middleware","&D":"development","@Z":"futures","^C":"compression","@7":"with","@z":"files","$D":"line","@k":"framework","@O":"system","$g":"memory","^B":"proc","$q":"Procedural","$H":"configuration","&H":"logging","&K":"rustc","@h":"wrapper","^7":"test","^Q":"database","&8":"native","^p":"working","$i":"which","$X":"access","$K":"building","&E":"friendly","&X":"inspired","^a":"handling","&u":"processing","@m":"interface","@x":"API","^W":"Automatically","^q":"error","^3":"algorithms","@C":"level","@3":"Rust","^H":"codegen","$1":"algorithm","^U":"program","&L":"random","@2":"implementation","&F":"manager","^h":"extension","@d":"simple","^V":"values","$O":"writing","^I":"process","&t":"service","$c":"string","$M":"safe","^v":"libp2p","&W":"Generic","^K":"environment","&A":"consensus","&7":"small","&g":"tracing","^z":"hash","$w":"utility","$C":"like","$2":"used","@I":"runtime","&r":"wrappers","^6":"Windows","@G":"format","@T":"implementations","$y":"trait","^M":"numbers","@H":"Bindings","$V":"structure","@R":"parsing","&R":"Language","@F":"core","^n":"generate","$R":"crates","&p":"extensions","^Y":"without","$u":"common","@g":"types","&C":"collections","^G":"generic","@p":"Library","@c":"client","^l":"allocator","@4":"the","&U":"attribute","$Q":"binary","^f":"solana","$v":"tokio","&d":"thread","^g":"project","@w":"data","^i":"compatible","&q":"metrics","^o":"Macros","$9":"primitives","$j":"build","^P":"decoding","^r":"AWS","&k":"static","@Y":"function","^y":"cli","^j":"driver","$T":"integration","@Q":"This","$Z":"creating","&Y":"https","^S":"api","$0":"file","@a":"macros","&P":"methods","@D":"command","&l":"multiple","&9":"deserialization","@X":"package","$L":"FFI","&c":"dependencies","@S":"cargo","^N":"SDK","^x":"storage","$p":"strings","&z":"http","&3":"reading","@N":"platform","$3":"traits","&Q":"crypto","$t":"between","@t":"from","$B":"operations","@u":"using","&o":"structs","$4":"version","$s":"microcontrollers","@J":"async","&5":"value","&I":"builder","&B":"Parser","^s":"HTTP","&1":"tools","@K":"Simple","@b":"derive","&j":"Linux","&x":"easy","$8":"The","&v":"pallet","@V":"code","^w":"cryptographic","^e":"Utilities","^J":"internal","^u":"utils","&f":"agnostic","@s":"provides","&O":"Common","&T":"DEPRECATED","^O":"lightweight","^2":"compiler","$5":"encoding","@A":"google","$l":"type","^b":"embedded","^R":"providing","@L":"language","&4":"libraries","^F":"module","$W":"binding","@o":"interact","&J":"shared","$F":"abstraction","&h":"Unicode","&6":"over","@0":"for","$P":"rusoto","$d":"use","^L":"stream","^4":"tool","&w":"helpers","@v":"Implementation","$U":"application","$Y":"plugin","&N":"devices","^T":"graphics","$e":"procedural","$S":"testing","$b":"collection","$x":"WebAssembly","@8":"crate","&e":"web","^9":"network","^0":"tree","^d":"into","&y":"messages","&Z":"output","&M":"Native","@l":"that","$6":"serde","$a":"engine","@j":"support","$J":"performance","@5":"and","$z":"time","@W":"Provides","@M":"serialization","&0":"write","^D":"text","^m":"distribution","$k":"structures","^8":"generated","&S":"rendering","&b":"Asynchronous","@r":"sys","&a":"number","$A":"written","@B":"generator","@n":"based","@U":"server","@6":"bindings","@q":"complete","@i":"parser","$N":"backend","^E":"standard","&s":"wasm","@e":"macro","$m":"programming","&2":"interacting","^A":"management","^5":"implementing","&V":"json","@E":"utilities","^1":"generation","@P":"applications","&m":"dependency","$I":"fast","@y":"functions","^Z":"efficient","&i":"subcommand","$f":"information","^c":"Protocol","@9":"protocol","^X":"pure","$n":"asynchronous","$h":"definitions","$G":"around","^t":"helper","$E":"generating","@1":"library","$r":"your"}');var N=null;var C=["0.1.0","0.3.0","0.4.0","0.2.0","0.1.2","0.2.1","Soon to be highly flexible Entity-Component-System @k, @F lib.","0.8.0","0.2.2","0.3.2","0.0.1-sol5","&W Request/Response Protocols","0.10.1","0.10.0","Convenience @8 @0 ^p @7 JavaScript timers","0.13.0","0.11.0","0.11.1","0.0.52-alpha2","0.3.0-alpha.19","Collection of ^l @T.","@3 SGX ^N @s @4 ability to &0 Intel SGX @P in @3 Programming &R.","Structural search @5 replace of @3 @V","0.15.0","0.14.0","A `dotenv` @2 @0 @3","0.17.0","0.47.0","0.12.0","@x @0 managing &h &R Identifiers","0.2.0-alpha.6","@x @0 managing &h Locale Identifiers","0.1.10","2.0.8+20210326","2.0.4+20210325","Lightweight private cloud solution @0 SME scenarios.","Pairing threshold cryptography","A @1 to garbage collect webassembly modules","0.1.11","@p @0 @4 imag @F ^m","Hardware-accelerated virtualization on OS X","0.21.0-alpha.4","0.20.0","0.18.0","A @q @1 to @o @7 appengine (@9 v1beta4)","A @e to evaluate, as a boolean, whether an expression matches a pattern.","STM32 peripheral mappings @0 Drone, an Embedded Operating System.","Safe FFmpeg @h","0.5.0-alpha.1","0.1.13","Some &1 @l are '^J' @0 now because they are insufficiently refined @5 unstable, but $i are $2 by other 'public' $R.","A @q @1 to @o @7 Android Enterprise (@9 v1)","WASI @2 in @3","0.30.0","2.0.4+20210323","0.3.0-alpha.1","Primitives @0 BABE &A","0.2.0-beta.2","Blockchain, Rebuilt @0 Scale","0.1.0-rc.1","0.1.16","@Q Crate Has Been Retired; And I Have Since Shifted My Focus (Almost Entirely) Towards Game-Development. If Still Interested In @Q Or Any Other Crates I've Worked On, You Can Look For $8 Rough-Equivalent On My Github &Y://github.com/jsgrant And In $8 Coupled Organizations Listed Therein.","999999999.999999999.999999999","2.0.4+20210330","@Q @8 was deprecated. It is now part of @4 `tauri-^H` @8.","2.0.8+20210329","A @q @1 to @o @7 prediction (@9 v1.6)","A @q @1 to @o @7 Vault (@9 v1)","A @q @1 to @o @7 plusDomains (@9 v1)","2.0.4+20190616","A @q @1 to @o @7 plus (@9 v1)","2.0.8+20190616","0.16.0","A $b of typings @0 GameMaker Studio 2 YY @5 YYP @z","0.22.0","Flexible @V @B @0 @3","A @q @1 to @o @7 YouTube Analytics (@9 v1)","1.0.8+20181010","0.9.0-alpha.2","Official Ceph-@f. A @f-lang specific @m to Ceph librados @5 Admin Sockets. You can create a Ceph &D ^K @7 theChef automation &1: &Y://github.com/bloomberg/chef-bcs or @7 ceph-ansible. Chef-bcs uses @4 ceph-chef cookbookcreated @5 manage at github.com/ceph/ceph-chef. It will $j out a full Ceph ^K $i you can then usefor &D etc. See README.md @0 details.","A @1 @0 $K $Y-@n @P.","Pairing cryptography @7 @4 Barreto-Naehrig curve","1.0.0-rc4","Salvo is a @d but powerful &e @U @k $A in @3.","0.13.3","2.0.8+20210325","$8 basic HyperLogLog $1","$8 liquid templating @L @0 @3","0.23.0","Rethinking ^c Generators","Internal @2 details @0 @4 js-intern @8","A @q @1 to @o @7 Ad Exchange Buyer (@9 v1.3)","2.0.8+20210330","@p @0 ^G lossless syntax trees","Tiny, no-nonsense, self contained, TensorFlow @5 ONNX inference","0.19.0","1.0.0-beta-rc.1","1.0.0-soon2","0.29.1","0.15.3","4.0.0-pre.4","2.0.8+20210316","@3 @j @0 @4 ^k-RPC 2.0 @9","Core block @5 transaction @g @0 Ethereum.","An @2 of `std::^z::Hasher` $i does not ^z at all.","A @f introspection $e @e.","A @k @0 online ^U state introspection","3.0.0-rc6","A @q @1 to @o @7 Partners (@9 v2)","^o @l implement modular arithmetic integer @g","@3 @6 to libvpx","&T: $d ncollide2d or ncollide3d insead.","2.0.8+20210323","0.5.0-rc.1","Run NASM during $r Cargo $j.","Authorship $9","A @q @1 to @o @7 dfareporting (@9 v2.4)","1.0.6+20160803","&T: replaced by @4 `aes` @8","0.3.0-alpha.2","0.7.0-alpha.1","Emulate @e-rules pattern matching in $e @a","$L @6 to cuDNN","Runtime @1 @j @0 Wasmtime","Calms a panicky I/O ^L.","Proc @e @0 smol @I.","Standard @1 @0 Wasm @n smart contracts on Cosmos blockchains","Rendy's @E","Recursive-length prefix $5, ^P, @5 ^C","A @q @1 to @o @7 licensing (@9 v1)","2.0.4+20210329","&n Debug @7 a custom @G per field","A CLI @0 mobbing @t @4 comfort of $r console","@K, drop-in replacement ^l @0 @3 running on bare metal (no_std)","@3 @6 to @4 Hunspell @1","$x interpreter","2.0.0-beta.7","Event loop @l drives Tokio I/O resources.","0.2.0-alpha.1","A @q @1 to @o @7 QPX Express (@9 v1)","@x @6 @0 @4 Stripe ^s @x","@H to elfutils","Arbitrary precision decimal ^M","2.0.8+20210331","Some useful @E to transform $x binaries, most importantly @0 $x $2 in a deterministic / blockchain context","I/O @0 Tetcore runtimes","Helpful @a @0 ^p @7 enums @5 $p","2.0.4+20210324","initialize &o @t ^K variable","Implement @4 following non ^E integers: u2, u3, u4, u5, u6, u7, u9, u10, u11, u12, u13, u14, u15, u17, u18, u19, u20, u21, u22, u23, u24, u25, u26, u27, u28, u29, u30, u31, u33, u34, u35, u36, u37, u38, u39, u40, u41, u42, u43, u44, u45, u46, u47, u48, u49, u50, u51, u52, u53, u54, u55, u56, u57, u58, u59, u60, u61, u62, u63, i2, i3, i4, i5, i6, i7, i9, i10, i11, i12, i13, i14, i15, i17, i18, i19, i20, i21, i22, i23, i24, i25, i26, i27, i28, i29, i30, i31, i33, i34, i35, i36, i37, i38, i39, i40, i41, i42, i43, i44, i45, i46, i47, i48, i49, i50, i51, i52, i53, i54, i55, i56, i57, i58, i59, i60, i61, i62, i63","&O @f commandline @a @5 ^u, to &0 shell script $C tasks easily","@f port of babel @5 closure ^2.","@Q @8 is no longer maintained.","Macro @0 dynamically loading windows dll @y","Safe @5 user &E @6 to @4 R $m @L.","@3 @h @0 Facebook's RocksDB embeddable ^Q","^r Lambda Runtime","@K, private @5 scalable cryptocurrency @2 @n on @4 Mimblewimble chain @G.","Cross-@N window creation @1.","A super-@d entity-component @O in @3","$8 bare essentials of std::io @0 $d in no_std. Alloc @j is optional.","A @q @1 to @o @7 Games Management (@9 v1management)","High $J entity component @O (ECS) @1","&O reusable @g @0 ^5 @4 sentry.io @9.","IRC log converter/collector/cruncher","Proc-@e to &0 an automatic fix @0 @4 \"hidden lifetime in impl Trait\" issue","A @q @1 to @o @7 Shopping Content (@9 v2)","A @1 offering readline-$C $7.","Chain @2 @0 grin, a @d, private @5 scalable cryptocurrency @2 @n on @4 Mimblewimble chain @G.","Stackless monads in @3","A @q @1 to @o @7 Dialogflow (@9 v2beta1)","0.9.0-alpha.5","0.30.0-rc.1","Safe Network Data Types","A @q @1 to @o @7 Ad Exchange Seller (@9 v2.0)","A @3 ^l backed by jemalloc","A @8 @l @s means of executing/dispatching calls ^d @4 @I.","Tremor Script Interpreter","@3 sending emails via sendmail. Works nicely @7 Iron Framework @u form Posts.","Harmonious distributed @w analysis in @3.","Low-@C @6 to V8, @4 Javascript $a","A @3 @L $W @0 Groonga.","A lock-free, eventually consistent, concurrent multi-&5 map.","A @q @1 to @o @7 pagespeedonline (@9 v2)","Cross-@N @3 @x @0 $g-mapped $0 IO","[Deprecated] moved ^d @4 @8 lyon_path.","Determines @4 MIME $l of a $0 by traversing a filetype ^0.","Endpoint to expose Prometheus &q","@3 $x Contracts Abi","A @q @1 to @o @7 Android Provisioning Partner (@9 v1)","A @f $W @0 @4 GSL (@4 GNU scientific @1)","Configure const @5 &k items by ^K variables.","Supports defining opaque typedefs","A @q @1 to @o @7 CustomSearch @x (@9 v1)","$8 @X @s @6 to TensorFlow.","$u part of @4 veda @N","0.5.0-beta.1","0.3.0-alpha.6","BoringSSL @6","Fake clock @0 deterministic $S of @V depending on $z.","2.0.4+20210322","An Aspect Toolkit @0 @3","Tools @0 &2 @7 @4 services of an ActyxOS node","A @e $i makes ^q @g pleasant to &0.","0.3.1-alpha3","TODO(doc): @keroro520 @8 description","0.1.0-alpha.10","2.0.4+20210331","Create Erlang NIF modules in @3 @u @4 C NIF @x.","LightSpeed","2.0.8+20210322","An ^J @8 to @j auto_enums - do not $d directly","Message Passing Interface @6 @0 @3","A secured ^x DHT","An &x-to-$d, 100% @3, extensible 2D GUI @1.","727.0.0","CosmWasm @1 @7 useful &w @0 Storage patterns","A @Z @1 adapter @0 merging @4 &Z of several streams","A convenience @1 @0 @u websockets in WASM","An @2 of @Z @5 streams featuring zero allocations,composability, @5 iterator-$C interfaces.","A @q @1 to @o @7 Search Console (@9 v1)","An ^s Signatures @1 @l leaves @4 signing to you","Cryptographic handshake @9 @u @4 noise @k.","High-@C @6 to @4 zeromq @1","2.0.8+20210319","3.0.0-beta.5","Binary Object Representation Serializer @0 Hashing","Safe autogenerated interop $t @3 @5 C++","A @q @1 to @o @7 Ad Exchange Buyer (@9 v1.4)","abandoned","A @1 to automatically ^n C header @z @t @3 source @z.","A ^c Buffers @2 @0 @4 @3 &R.","Minimalist @3 ^s toolkit (@c-only).","Concatenate identifiers in a @e invocation","0.1.13+deprecated","Renderer Agnostic User Interface","Lambda @e attributes","An html @1 @0 $K @c side webapps","$q @e @1 $2 to $j custom prime field @T","2.0.8+20181005","A @q @1 to @o @7 YouTube (@9 v3)","A @q @1 to @o @7 Cloud Tasks (@9 v2beta2)","Unix domain sockets transport @0 ^v","Build a config $V @t ^K variables ^Y boilerplate.","Fast ^w @1 @0 @3 (@6 to libsodium)","A &d-$M lazily initialized cell @u double-checked locking","@3 ^F @0 $5/^P varints @l doesn't do any IO. Inspired by @4 Node.js varint ^F","gfx-hal descriptor ^l","A @q @1 to @o @7 ^x (@9 v1)","Deflate encryption @9 @0 ^v","Proc @e &w @0 $e @a","Parse @D $D arguments by defining a struct, @b @8.","Base ^2 $F @0 Wasmer $x @I","@J @0 @f ^Y @4 noise","0.3.0-alpha.5","An interner @l deallocates unused ^V","@Q is an @2 of @4 Consistent Overhead Byte Stuffing (COBS) $1. COBS is an $1 @0 transforming a message ^d an $5 where a specific &5 (@4 \"sentinel\" &5) is not $2. @Q &5 can then be $2 to mark frame boundaries in a serial communication channel.","@H to libbzip2 @0 bzip2 ^C @5 decompression exposed asReader/Writer streams.","Xoshiro, xoroshiro @5 splitmix64 &L &a generators","A ^G @k @0 on-demand, incrementalized computation (experimental)","Machine Learning Framework @0 Hackers","Fluence $N ^N @0 developing $N @P @0 @4 Fluence ^9","Primitives @0 VRF @n &A","@K index-@n arena ^Y deletion.","A $I $Q @M @k","2.0.8+20210315","A ^X-@3 @2 of Bulletproofs @u Ristretto","$8 @f @L @2 of gRPC, base on @4 gRPC c @F @1.","CID in @f","Create ridiculously $I Lexers","Wasmer @I single pass ^2 $N","SputnikVM - a Portable Blockchain Virtual Machine","Enable deriving FromStr @0 enums","A @1 @0 taking @4 crc32 of a $c or byte literal at compile $z","A @1 @0 calling of genomic variants @u a latent variable model.","Write @5 execute SQL queries @7 ease","Primitives @0 sessions","&W uncle inclusion @E @0 &A","Runtime @x definition required by System RPC &p.","1.0.0-alpha.1","0.4.0-alpha.12","Digital signal &u @n on real or complex vectors in $z or frequency domain.","A @q @1 to @o @7 calendar (@9 v3)","A @q @1 to @o @7 replicapoolupdater (@9 v1beta1)","TLS @j @0 $v-postgres via &8-tls","Search $a @1","@1 @0 dealing @7 ipld","$x @0 Proxies","0.1.0-alpha.5","Hyperledger Sawtooth is an enterprise blockchain @N @0 $K distributed ledger @P @5 networks.","A @q @1 to @o @7 App State (@9 v1)","A @q @1 to @o @7 books (@9 v1)","0.5.0-alpha.2","A @q @1 to @o @7 Cloud Machine Learning Engine (@9 v1beta1)","1.0.6+20170515","@3 @6 to @4 CoinOR CBC MILP Solveur @u @4 C @x.","2.0.4+20210327","@v of @4 multiaddr @G","A converter $Y to @4 bson @G @0 Nushell","1.0.0-alpha.5","^o to auto-^n @T @0 @4 $6 @k","WebGPU @g","0.101.0","Run $r tests in isolation","7.0.0-beta.1","A finite-automata-@n lexing $a.","0.11.0-beta.0","@3 OpenAPI 3.0 docs @B","&M @3 @8 @0 managing control groups on &j","A $I $Q @M @k, #[@b(Readable, Writable)] @j","2.0.8+20210317","A @q @1 to @o @7 Deployment Manager (@9 v2beta2)","@3 $x Contracts Abi (@b @a)","$6 @j @0 exporting Typescript $h","@H to @4 wabt @1","persistence @0 content addressable ^x @5 entity &U &5 indexes backed by pickledb-rs.","Types @5 $3 @0 interfacing $t @4 host @5 @4 &s @I.","@K, &7, @5 extremely $I template $a @0 @3","Binding @0 @4 sentencepiece tokenizer","$q @e to implement Display @5 FromStr @u $u settings.","0.2.0-alpha.2","&M @6 to librocksdb","@3 @6 to V8","A @1 @0 loading Zcash Sapling parameters","&W slots-@n @E @0 &A","netlink packet @g","@Q @8 should not be $2 directly, it is internaly related to Refinery","Helper @8 of sv-@i","Raw $L @6 @0 all of ^6 @x.","1.0.6+20170428","@v of @4 multihash @G","&O $3 @0 @4 Twiggy @V size profiler.","Lightweight, event-driven WebSockets @0 @3.","RPC @m @0 @4 transaction payment ^F.","A good friend @0 r2d2","0.20.0-alpha.6","@Q @8 @s a very thin $F &6 other profiler $R.","DNS transport @2 @0 ^v","$L $W to libsodium","Fundamental base @g @5 @V $2 by pnet.","2.0.4+20181005","@v of @4 Interledger Dynamic Configuration ^c (ILDCP)","Create Swagger OpenApi3 @t $r &o","Copy-on-&0 datastructures, storable on disk (or elsewhere) @7 a stable @G.","A @q @1 to @o @7 fitness (@9 v1)","Access to ^9 related @O @Y @5 calls.","0.5.0-pre1","TODO(doc): @quake @8 description","3.0.0-alpha.1","Determine @4 best $5 possible @t an Accept-Encoding ^s header.","Safe generators on stable @3.","Core part of @4 @1 @0 $O NEAR smart contracts.","TCP/IP transport @9 @0 ^v","CUDA Driver @x Wrapper","0.23.0-internal","A VDOM-less &e @1 @7 fine grained reactivity","Build script @2 @0 @3 Qt $R","HTML manipulation @7 CSS seletors","A @f @8 @0 sending &y to Slack via webhooks.","4.0.0-pre.1","Wasmer @I Cranelift ^2 $N","Load ^K variables ^d $r struct members directly.","0.4.0-alpha.2","A $e @e @0 conversion $t integer @5 enum @g.","Cross-@N, datalink layer networking.","Wasmer Engine $F","Redis CLI.","Runtime $n, ^X computational tasks","1.0.0-pre.3","TLS @x ^Y @2","A @q @1 to @o @7 Cloud Functions (@9 v1)","File locking via POSIX advisory record locks","@3 @6 @0 liblmdb.","Generate @3 register maps (`struct`s) @t SVD @z","NPoS Compact Solution Type","A $e @e @2 of quote!.","@e @l expands to @4 name of @4 annotated @Y","^k-RPC Client","A @q @1 to @o @7 classroom (@9 v1)","@Q is a dummy @X @l will never have any content. I registered it because it seemed plausible @l people might copy-paste stuff ^d their $o @5 accidentally install this. I don't want them to install malware, therefore I registered it @5 I will never put any content in it. If you installed this @X, you made a mistake.","&B @0 @3 source @V","A @q @1 to @o @7 storagetransfer (@9 v1)","2.0.4+20210316","CSS Modules @7 a @e @0 convenience.","0.21.0-pre.4","^o 1.1 @2 of #[@b(Serialize, Deserialize)]","A $b of useful @w $k.","0.8.0-alpha","give $f on mounted disks","A @1 @0 assisting developers @u LibIndy @x","X11 @1 @6 @0 @3","Yet another &e @U @k @0 @f","&n-@n argument @R optimized @0 @V size","Reading bit sequences @t a byte slice","$8 ^v swarm","0.16.0-threadsafe.4","0.1.0-pre.1","^s RESTful @x @5 skeleton @U/@c implement @0 I2C bus control","Cross-@N $0 locks @5 $0 duplication.","@3 $M @6 @0 libappindicator","A @q @1 to @o @7 dfareporting (@9 v2.5)","@y @0 determining $o sizes @5 dimensions","1.0.0-beta1","I/O @Z @0 Fluvio ^g","A @1 @0 devising derives @5 other $e @a.","Server ^u @0 jsonrpc-@F @8.","A @q @1 to @o @7 groupssettings (@9 v1)","A @q @1 to @o @7 directory (@9 directory_v1)","1.0.13+20200204","Allows passing in an external transport in a WASM ^K","Cross-@N @1 @0 running @3 tests in sub-processes @u afork-$C @m.","@3 $L @6 @5 @h @0 libwebm","Plaintext encryption dummy @9 @0 ^v","^J ^7 @8 @0 &s-bindgen","Parse @D $D argument by defining a struct, @b @8.","3.0.0-beta.1","@H to linenoise @0 @d $D-editing facilities.","0.0.1-dev-1","@W #[test_case(...)] $e @e &U @0 $E parametrized ^7 cases easily","Test CLI Applications.","0.11.0-rc.1","High-@C @f @6 @0 @4 Z3 SMT solver @t Microsoft Research","1.0.0-beta.2","Vulkan @x $N @0 gfx-rs","An RPC @k @0 @3 @7 a focus on ease of $d.","Reader @5 writer @0 $u word embedding formats","Another JS Runtime","2.0.0-rc2","0.9.0-alpha.4","A @q @1 to @o @7 analytics (@9 v3)","A @q @1 to @o @7 &F (@9 v1beta2)","0.2.0-beta","A @q @1 to @o @7 Tag Manager (@9 v2)","Map characters to @5 @t their name given in @4 &h standard.This goes to great lengths to be as ^Z as possible in both timeand space, @7 @4 full bidirectional tables weighing barely 500 KBbut still offering O(1)* look-up in both directions. (*more precisely,O(length of name).)","$8 minimal, blazing-$I, @5 infinitely customizable prompt @0 any shell! ☄🌌️","Wasmer @I @F @1","Solana BPF Loader","A @i @1 @0 @4 Conventional Commit specification.","Lexical, to- @5 @t-$c conversion routines.","A @k @0 making @c-side single-page apps","0.1.0-alpha0","D-Bus & GVariant $5 & ^P","Proc @e @0 deriving custom multihash tables.","A @1 @0 $Z Telegram bots","@Q @8 @s @y @0 normalization ofUnicode $p, including Canonical @5 CompatibleDecomposition @5 Recomposition, as described inUnicode Standard Annex #15.","Hex ^t @y.","Check if tables @5 items in a .toml $0 are lexically sorted","A @e to ^n $k $i behave $C bitflags.","0.4.0-alpha.0","weblog is a @8 @l defines a set of @a @0 calling `console.log()` @5 other members of @4 browser's console @x when targeting Wasm.","0.4.0-beta.1","$8 block &I @I ^S.","A @1 @0 @L @5 locale negotiation.","high-$J computation on any hardware","$8 @X @s a statistics toolbox.","Runtime @x definition required by Contracts RPC &p.","Raw @O calls","Rendering @k built on an extensible asset pipeline","RPC &p @0 @4 BABE &A $1","0.3.0-beta1","$q @e &U @0 converting doc comments ^d &g spans","1.20141219.5","A $M @h &6 jemalloc's control @5 introspection APIs","Replaced by rug: arbitrary-precision integers, rational, floating-point @5 complex ^M","A @q @1 to @o @7 Doubleclicksearch (@9 v2)","Virtual machine @5 JIT ^2 @0 eBPF programs","Private swarm @j @0 ^v","$8 @F $7 @0 @4 unity $4 &F commandline @c.","A @q @1 to @o @7 coordinate (@9 v1)","@v of @4 ^v mDNS discovery method","Wasmer @I @1","Code ^1 @0 PyO3 @X","A @d to $d, ^Z, @5 full-featured Command Line Argument &B","&W epochs-@n @E @0 &A","A @w $V validation @1 designed @0 user input","Cranelift IR &I ^t","Transport &f ^k-RPC 2.0 @c @2.","AST representation $2 by Serde ^H. Unstable.","^r-KMS $T @0 @3 port of Google's Tink cryptography @1","Elliptic curve group $3 @5 @E","@3 @6 @0 @4 soloud audio $a","Angular @g @5 $u ^t &P.","0.6.0-pre.2","A @1 @0 @u Google Cast &N","CLI @0 nushell","Serde @j @0 PHP's @M @G.","Test @8 @0 @S-crusader","@3 @6 @0 libffi","Fork of @3 @6 @0 Pieter Wuille's `libsecp256k1` @1. Implements ECDSA @0 @4 SECG elliptic curve group secp256k1 @5 related @E.","It is JsonPath $a $A in @3. it provide a similar @x @m in Webassembly @5 Javascript too. - Webassembly Demo: &Y://freestrings.github.io/jsonpath","A @q @1 to @o @7 Tag Manager (@9 v1)","Utility @8 @0 graphql_client","Primitives @0 GRANDPA $T, suitable @0 WASM compilation.","Automated tests of $L @6.","HashMap-$C containers @l hold their key-&5 pairs in a user controllable order","IMAP @c @0 @3","A @q @1 to @o @7 Cloud Debugger (@9 v2)","2.0.4+20210326","A SOCKS5 connector @0 hyper @1","kafka &X rumqtt's mqtt commitlog","WCCG Data","higher @C ^s @c @1","A @q @1 to @o @7 DLP (@9 v2beta1)","A fork of Rust’s `^7` @8 @l doesn’t require unstable @L features.","$8 $n `Sink` $y @0 @4 @Z-rs @1.","An ^J @8 $2 by foreign-@g","Macro ^H @0 @4 include-flate @8","$M @3 @h @0 CUDA's cuDNN","2.0.0-beta.1","Just-In-Time Compilation in @3 @u LibJIT @6","A $N-&f ^h @0 ^s &4 @l @s @j @0 POST multipart/form-@w requests on both @c @5 @U.","A @q @1 to @o @7 Android Management (@9 v1)","Tweak constant variables live @t a &e GUI","LMDB &8 lib","Cross-@N OpenGL context provider.","$L @6 to FFmpeg","@H to @4 gcc quadmath @1","A @q @1 to @o @7 Cloud Monitoring (@9 v2beta2)","$8 practical ^s @c @l is fun to $d.","RPC @c @1 @0 @4 Bitcoin Core ^k-RPC @x.","A DNS @1 @0 @3.","Set scope-limited ^V can can be accessed statically","Application Load Balancer @5 @x Gateway event @g @0 ^r Lambda","A @d object pool @2 @l uses $n synchronization $9 only.","Clams help $K shells","2.0.4+20180830","A @q @1 to @o @7 AdSense Host (@9 v4.1)","Docker Remote @x in @3","Physics @1 @0 $d @7 `specs`","@Z $i @j ^J references","A @q @1 to @o @7 cloudlatencytest (@9 v2)","An in-^I scheduler @0 periodic jobs. Schedule lets you run @3 @y on a cron-$C schedule.","Part of miniquad &S library.Native @6 to slightly modified sokol-app.","A @q @1 to @o @7 bigquery (@9 v2)","2.0.8+20210327","@3 @e to automatically implement @4 &I pattern @0 arbitrary &o.","$q @a @0 @4 $z @8.","Safe, low-@C @6 to @4 Direct Rendering Manager @x","@3 $L @6 to jemalloc","Binary &c @0 @4 'deno' @8","A @q @1 to @o @7 kgsearch (@9 v1)","A @q @1 to @o @7 reseller (@9 v1sandbox)","0.3.0-alpha.8","pieces of a naive incomplete broken game boy emulator","Featture toggles @0 @3, extensible @5 @7 background synchronization @5 administration UI","Backport of libsyntax_pos","WebSocket transport @0 ^v","0.31.0-rc.1","A low-@C OpenCL @x.","0.4.0-beta.3","Telegram Bot @x @g","A @q @1 to @o @7 Groups Migration (@9 v1)","$q Macro Attribute to run all @4 ^7 cases described in ^k-Schema-Test-Suite","@H @0 @4 basis-universal Supercompressed GPU Texture Codec by Binomial","A µTP (Micro/uTorrent Transport @p) @1 implemented in @3","Test $r @3 markdown documentation via Cargo","OpenCL @6 @5 interfaces @0 @3.","Knuth-Liang hyphenation @0 a variety of languages","$q @a @0 investments @8","A @q @1 to @o @7 appsactivity (@9 v1)","Solana Bitcoin spv @R ^U","Fast $D oriented regex searching as a @1.","A ^X-@3 @2 of group $B on ristretto255 @5 Curve25519","Easy to $d conversion of ethereum contract calls to bytecode.","@W facilities @0 $E $U specific &Q @h @g.","Pretty hex dump of bytes slice in @4 $u style.","An ^Z @5 robust mqtt @c @0 $r connected &N","Runtime @1 @j @0 Wasmer","$x low-@C @G @1","Peripheral $X @x @0 STM32F042 $s","A @q @1 to @o @7 Iam (@9 v1)","Primitives @0 slots-@n &A","@H to librsync @0 calculating @5 applying networkdeltas exposed as Reader/Writer streams.","Concrete is a fully homomorphic encryption (FHE) @1 @l implements Zama's variant of TFHE.","Unsafe, low-@C @h @0 duktape JavaScript interpreter","Data $k @u entity references as mapping keys","A @q @1 to @o @7 Identity Toolkit (@9 v3)","Low-@C @6 to @4 zeromq @1","Publish-Subscribe ^h @0 jsonrpc.","$q @a of ^v-@F","A WebSocket (RFC6455) @1 @0 @3.","A $I $0 deduplicator. Replaces duplicate @z @7 identical content @7 hardlinks.","@H to @4 binaryen @1","^k-enabled $l &o @0 bitcoincore-rpc @8.","A @q @1 to @o @7 Abusive Experience Report (@9 v1)","@3 @6 @0 Xen event channel @x","namedarg main @X","0.1.1474613452","A @q @1 to @o @7 Cloud User Accounts (@9 vm_beta)","A ^J @8 $2 by numext-fixed-^z.","2.0.8+20210318","0.5.0-beta.3","shadowsocks is a $I tunnel proxy @l helps you bypass firewalls.","A @q @1 to @o @7 Play Movies (@9 v1)","0.4.0-alpha.1","Hjson @M $0 @G","@3 @h @0 CRoaring","$L @6 to cuBLAS","Interact @7 Bluetooth &N via RFCOMM channels","Tool @0 connecting &4 $A in @3 @7 other languages","A @q @1 to @o @7 Android Publisher (@9 v2)","Collective @O: Members of a set of account IDs can make their collective feelings known through dispatched calls @t one of two specialized origins.","Macro-@n free monads in @3","Automated typeclass derivation.","A @1 @0 HTML entity $5 @5 ^P","ewasm @x @0 @3","Generate Nix expressions @t Cargo.lock @z (in order to $d Nix as a $j @O @0 $R).","X25519 elliptic curve Diffie-Hellman key exchange in ^X-@3, @u curve25519-dalek.","^o to @b chain spec ^h $3 @2.","A whitespace-aware quasiquoter @0 beautiful @V ^1.","Send $0 descriptors along @7 @w &6 UNIX domain sockets","Attribute @h @0 dyn-clone","Community Driven Serde Shims","A @q @1 to @o @7 Monitoring (@9 v3)","@H to Core Foundation @0 macOS","A @q @1 to @o @7 Cloud KMS (@9 v1beta1)","Wasmer Universal Engine","Lightweight, ^Z, $Q @M @5 &9 codec","An @2 of double-buffered swap chains @0 surfman","Easy $j a configs @t ^K variables @5 $d it in globally.","A good friend @0 r2d2. Based on @f-postgres.","A conventional changelog @0 @4 rest of us","Synchronization mechanisms @l rely on lock-free @5 other non-(&d)blocking techniques, such as @3 @Z, to guarantee mutually exclusive or &J exclusive $X to @w.","A @h @0 WebRTC's AudioProcessing ^F.","@p @0 $K @5 interfacing @7 finite fields","A pool of reusable ^V","0.2.0-alpha","Use to @b @R @0 @R struct.","A set of $u $h @l are needed @0 defining execution engines.","Extract @V blocks @t Markdown @5 save them as @z.","Translator @t $x to Cranelift IR","Serialize / deserialize Blender armatures","@3 &8 ffi @6 @0 webview","A @q @1 to @o @7 Cloud Iot (@9 v1)","@3 @6 @0 GMP","Proc-@e @1 $2 to map a $v-postgres row to a @3 $l (struct)","LNP/BP @j @8 @0 devloping microservices","Big integer (256-bit @5 512-bit) @2 @0 SputnikVM @5 other Ethereum Classic clients.","A blazing $I, $l-$M template $a @0 @3.","@3 Builder @0 Cargo","0.9.0-beta.0","Pairing-&E elliptic curve @1","A no_std + $6 ^i message @1 @0 @3","Transform $r ascii diagrams ^d happy little SVG","A @q @1 to @o @7 replicapool (@9 v1beta2)","Arbitrary-precision unit-aware calculator","A @q @1 to @o @7 proximitybeacon (@9 v1beta1)","A @q @1 to @o @7 Dataproc (@9 v1)","Convenience @8 @0 ^p @7 JavaScript @z @5 blobs","Elastic vector backed by fixed size array","A @q @1 to @o @7 Tasks (@9 v1)","&n @e @0 `std::^q::Error`","Procedure @e to run @J fn as ^7","CBOR @j @0 $6.","Kademlia @9 @0 ^v","Rustyline, a readline @2 @n on Antirez's Linenoise","3.0.0-beta.3","0.1.0-alpha.2","Core Kubernetes metadata $3","Keystore (@5 session key ^A) @0 ed25519 @n chains $C Polkadot.","@H to libopus","Node-specific RPC &P @0 interaction @7 contracts.","Conditional compilation according to &K ^2 $4","Types @0 interaction @7 a @L @U, @u VSCode's &R Server ^c","@K daemon ^I to execute backup scripts","Cuckoo Filter: Practically Better Than Bloom","&W cache @T @5 simplified @Y memoization","@3 Custom &n Macro $i loads @z ^d @4 @f $Q at compile $z during release @5 loads @4 $0 @t @4 fs during dev","^t @8 @0 hawktracer profiling @1.","A tiny search $a @0 &k websites","2.0.9+20210322","A @q @1 to @o @7 dfareporting (@9 v2.7)","1.0.6+20170818","Check email address","A @q @1 to @o @7 Cloud Trace (@9 v1)","2.0.4+20210319","Imaging @1 $A in @3. @W basic filters @5 decoders @0 @4 most $u image formats.","@H to libdeflate @0 DEFLATE (de)^C exposed as non-streaming bufferoperations. Contains @6 @0 raw deflate, zlib, @5 gzip @w.","A Cassandra CQL ^j, built on top of @4 DataStax C++ ^j @0 $J @5 $7.","Compile-$z HTML templates.","A @q @1 to @o @7 Pubsub (@9 v1)","pest meta @L @i @5 validator","A @h $G @4 Mastodon @x.","A @q @1 to @o @7 Blogger (@9 v3)","RPC &p @0 @4 GRANDPA finality gadget","@v detail of abi_stable.","Source Code Spelling Correction","Sentry $T @0 os, device, @5 @f contexts.","A @q @1 to @o @7 Firebase Remote Config (@9 v1)","Keyring @j @V @0 @4 @I. A set of ^7 accounts.","Generates serializeable @3 @g @t a &V schema","A @q @1 to @o @7 Deployment Manager (@9 v2)","1.0.0-beta-rc.4","A quasi-quoting @e @O","Flexible ^q ^A @0 @3. An middle-ground $t failure @5 SNAFU","&O @E @0 $S components built off @Z-rs.","File transfer @9 (FTP) @1","Extract root domain @5 suffix @t a domain name","an alternative cpu measurement @0 criterion","A @q @1 to @o @7 gan (@9 v1beta1)","A simulation of lib3h","Print a @D @5 then execute it","Abstraction &6 std::$z::Instant @5 @Z-timer @l works on WASM","A @q @1 to @o @7 webmasters (@9 v3)","Compile-$z @V ^1 @0 Elasticsearch $l @T.","0.21.0-pre.5","Part of miniquad &S library.Native @6 to a slightly modified $4 of sokol-app.","Ethereum @g","High-@C &S $a @7 &l backends","Peer-to-peer networking @1","zk-SNARK @1","&O @E @5 ^h $3 @0 @4 @Z-rs @1.","4.0.0-beta.1","@3 @6 @0 Metal","A @3 port of Google's SwissTable ^z map","@K, private @5 scalable cryptocurrency @2 @n on @4 MimbleWimble chain @G.","$H @1 to @D a sozu instance","A @q @1 to @o @7 Gmail (@9 v1)","Wrapper $G @4 PSA Cryptography @x","Nodes identifcation @9 @0 ^v","&M @6 to @4 librdkafka @1","Opaque Debug replacement @7 per-field $H","@3 @6 to @4 HarfBuzz ^D shaping $a","A @q @1 to @o @7 dfareporting (@9 v2.2)","I/O @0 Substrate runtimes","Main @e of @4 @1 @0 $O NEAR smart contracts.","Idiomatic @5 $M LMDB @h.","2.0.8+20160512","2.0.0-rc6","A @q @1 to @o @7 Manufacturer Center (@9 v1)","A @q @1 to @o @7 dfareporting (@9 v3.0)","A special input $l @0 nom to locate tokens","Helper @8 to ^n ffi-&E virtual tables","reflects of type's fields' names @5 their $l names in a hierarchical ^0","0.20.0-rc6","A github webhook @U","Raw @3 @6 @0 libffi","A @3 ^D diffing @5 assertion @1.","Gossipsub @9 @0 ^v","0.33.0-rc.1","@3 @6 @0 @4 unicorn emulator","$8 @F $3 @5 @g in @0 @4 `@Z` @1.","A $I mpmc broadcast queue","Eliminate N+1 query bugs when @u Juniper","Portable Packed SIMD vectors","Solana Network ^e","Experimental Mustache-$C templating $a.","SRT @2 in @3","@3 @6 @0 openapi schemas","Task-local container @0 arbitrary @w.","Extra components @0 $d @7 Mio","@3 @2 of Apache Arrow","0.8.0-rc.1","A @1 @0 @4 Marlin preprocessing zkSNARK","0.4.0-rcn.11","In-$g patricia trie $B","@3 @1 @0 $O NEAR smart contracts.","@H to netmap - @4 $I packet I/O @k","Efficient ring buffer @0 byte buffers, FIFO queues, @5 SPSC channels","1.0.0-alpha.4","@H to NNG (Nanomsg-Next-Generation) aka Nanomsg2","An @2 of multipart/form-@w (RFC7578)","A @q @1 to @o @7 Cloud OS Login (@9 v1beta)","@3 @6 @0 @4 FLTK GUI @1","A @3 @p of China's Standards of Encryption Algorithms (SM2/3/4)","Converts @S ^7 &Z ^d a vec of suites","A $M @5 convenient store @0 one &5 of each $l","Visitor @B @0 stable &K","Cross-@N @1 to retrieve ^9 sockets $f.","@Q is Pre alpha, @5 not useful, no @V worth looking at.","A light, $I @5 powerful cache proxy $A in @3.","@3 @6 @0 Pieter Wuille's `libsecp256k1` @1. Implements ECDSA @0 @4 SECG elliptic curve group secp256k1 @5 related @E.","A @d object arena","Code gen @j @0 @4 windows @8","Abstract algebra @0 @3","A ^G @M/&9 @k","A @q @1 to @o @7 Cloud KMS (@9 v1)","2.0.4+20210318","@K, minimal-&m ^s @c","De/serialize &o @7 named fields as array of ^V","I/O @1 @0 @3","Wasmer @b @a","A @3 @1 @0 &2 @7 ^9 interfaces","Hyperscan @6 @0 @3 @7 Multiple Pattern @5 Streaming Scan","convenient LR(1) @i @B","0.1.0-alpha.4","$M, ^O userland context switches","Channels @0 $n communication @u @Z-rs.","TLS @j @0 $v-postgres via openssl","1.0.0-alpha","Handle errors @5 exit in @D $D programs easily.","A @q @1 to @o @7 reports (@9 reports_v1)","1.0.12+20190521","pest @V @B","Attribute @h @0 objekt","@3 @6 @0 webview, a tiny cross-@N @1 to render &e-@n GUIs @0 desktop @P","Parse, manipulate @5 serialize docker-compose.yml in a strongly-typed fashion","^W $E infrastructure @0 measuring @4 total @I size of an object on @4 heap","A @q @1 to @o @7 Cloudbilling (@9 v1)","A @q @1 to @o @7 siteVerification (@9 v1)","Wrapper @8 @0 SPIRV-Tools","Automatic bit manipulation @0 $Q @w formats","Core $3 @5 &o of ^v","Telemetry ^u","Fast, ergonomic &q @0 @3!","ipld cbor codec ^B @e","Command $D ^4 allow you to $X twitter","&B @0 ISO base media $0 @G (mp4)","Easy @9 $h","A @1 @0 $E x86-64 assembly @0 finite field multiplication","Transport &f @f @2 of ^k-RPC 2.0 Specification.","Coming soon","0.17.0-pre.2","An @m @0 leveldb","A @1 @0 zero-allocation @R of $Q formats.","0.8.0-pre0","Fast @5 ^Z ed25519 EdDSA key generations, signing, @5 verification in ^X @3.","Timer facilities @0 Tokio","0.5.0-alpha.0","Primitives @0 Aura &A","FTP @c @0 @3","An ODM @0 MongoDB built upon @4 mongo @f ^j.","A @q @1 to @o @7 dfareporting (@9 v2.1)","1.0.6+20160323","Light merkle ^0 @2 @7 SPV @j @5 &m &f.","Visitors @0 swc ecmascript nodes $i works on stable &K","Multistream-select negotiation @9 @0 ^v","0.6.0-beta.3","A @q @1 to @o @7 Surveys (@9 v2)","Compiler $Y @0 'mockers' mocking @1","&n CDRS ^t $3","Type erasure @0 @J $y &P","Thread-$M @3 @6 @0 @4 HDF5 @1.","A @q @1 to @o @7 Logging (@9 v2beta1)","Async ^7 @j @0 @3 through a $e @e. @Q @8 defines @4`#[async_test]` &U to make $O tests @l $d @J/await easier.","@3 @r @6 @0 libappindicator","Runtime Modules &J primitive @g.","0.1.0-alpha-6","A @q @1 to @o @7 appengine (@9 v1beta5)","A &G @n &z @J &e @U.","A @q @1 to @o @7 dfareporting (@9 v2.3)","typed ^s headers","0.3.0-alpha.7","A @q @1 to @o @7 appengine (@9 v1)","2.0.8+20210324","A @8 to $d HD44780 compliant displays @7 ^b-hal","Easy-to-$d @3 @i @0 CSS3 color $p","0.1.0-alpha.0","^e to handle ASCII characters","$q @a @0 @4 salsa @8","A @3 @2 of an @J TAR $0 reader @5 writer. @Q @1 does notcurrently handle ^C, but it is abstract &6 all I/O readers andwriters. Additionally, great lengths are taken to ensure @l @4 entirecontents are never required to be entirely resident in $g all at once.","A @q @1 to @o @7 Shopping Content (@9 v2sandbox)","Low-@C @V @B @1","0.5.0-pre.1","Raw @6 to CRoaring","A (mostly) ^X-@3 @2 of various $u ^w ^3.","@Q @8 generates schema @0 @3 &o $i can be $2 by TypeScript.","CouchDB @1 @0 @3","@Q @8 @s means to instantiate @5 execute &s modules.","Runtime @0 @4 @J/await @a in @4 `@Z` @8.","@Q @8 implements @4 specification of @4 @m @l Near blockchain exposes to @4 smart contracts.","Quasi-quoting @e quote!(...)","OpenGL $N @0 gfx-rs","@K persistent ^G HashMap/Key-&5 store","Big integer @2 @0 @3","Core definition @0 @4 @3 borrow checker","Base $3 @5 $h $2 by ipld codecs.","Authority discovery $9","Stores, rotates, compresses ^I logs.","A @q @1 to @o @7 urlshortener (@9 v1)","@3 Json Object $X Runtime","100.100.100","Transaction pool $9 @g & Runtime @x.","Ping @9 @0 ^v","Subcommand @0 Cargo to easily $j @V @0 `wasm32-wasi`","Run jq programs to extract @w @t &V $p.","Ledger Hardware Wallet - &O APDU ^c Types","Singlepass ^2 @0 Wasmer $x @I","A @q @1 to @o @7 DoubleClick Bid Manager (@9 v1)","Avocado, @4 strongly-typed MongoDB ^j","A cache @l holds a limited &a of key-&5 pairs","@K $e @a to $d textwrap @E at compile $z.","0.1.0-alpha.1","Core sentry @1 $2 @0 instrumentation @5 $T &D.","ipld cbor codec","AST representation $2 by Serde @b @a. Unstable.","Proc @a @0 PyO3 @X","Wrappers @0 WASM","Floodsub @9 @0 ^v","A @q @1 to @o @7 Cloud OS Login (@9 v1)","Shader translation infrastructure","Read $g @t another ^I.","@p @0 performing MPCs @0 $Z zk-SNARK public parameters","A @q @1 to @o @7 Cloud Machine Learning Engine (@9 v1)","A @8 @0 printing tables on @D $D","Cross-compilation made easier - see main @8 @S-dinghy","^O $e @a bringing orm-$C features to sqlx","A ^k @M $0 @G","@p @0 ANSI $o colours @5 styles (bold, underline)","A @q @1 to @o @7 fusiontables (@9 v2)","Demo of ^B-@e-hack","A @8 $i contains $9 @l are useful @0 @2 @l uses staking approaches in general. Definitions related to sessions, slashing, etc go here.","Build ^4 @l replaces `@S run` to $j WASM projects","A ^J @8 $2 by numext-fixed-uint.","Shaders @0 2D ^T in @3","A @q @1 to @o @7 Safebrowsing (@9 v4)","A @q @1 to @o @7 Container (@9 v1)","Drop-in global ^l @u tcmalloc","Connectivity &F @n on reputation","2.0.0-pre.1","@3 @6 @0 libclang.","^o @0 &x operator overloading.","&O @E @0 $E @5 $K @3-Qt $R","$8 Elegant &B","Mplex multiplexing @9 @0 ^v","Helper @a @0 jsonrpc-@F","A @q @1 to @o @7 Service Registry (@9 alpha)","Mqtt3 is a @8 to read/&0 MQTT-packet @t/to a ^L.","A @q @1 to @o @7 discovery (@9 v1)","&n @e @0 bytecheck","Newtypes @0 ^D offsets","Support @V @0 @4 @I.","$6 @j @0 self-describing, schema-@n @w formats","Some useful @a @5 definition @0 exercising in leetcode","A @q @1 to @o @7 mirror (@9 v1)","Portably retrieve @4 user name (@5 possibly other $f in future versions) of @4 user running @4 current &d.","Yamux multiplexing @9 @0 ^v","Collection of @D-$D @E @5 corresponding @3 ^S @0 producing pwasm-^i executables","A @q @1 to @o @7 Pubsub (@9 v1beta2)","@3 @1 @0 Philips Hue lights","@3 &r $G Microsoft Azure REST APIs - Core @8","gfx-hal $g ^l","Lightweight Ethereum world state ^x.","A @q @1 to @o @7 Logging (@9 v2)","Various &w @0 Actix @P to $d during $S","Enigma @1 @0 $Z Secret Contracts","A @q @1 to @o @7 YouTube Reporting (@9 v1)","A @q @1 to @o @7 spectrum (@9 v1explorer)","A state machine $e @e @0 enums.","Checks to run against a topic in git to enforce coding standards.","@3 @6 to nativefiledialog","Block @5 transaction @g @0 Ethereum.","@3 @2 of JMESPath, a query @L @0 ^k","@3 &z @U @u JSONRPC 2.0.","@3 @c @0 @4 NSQ realtime message &u @O","A @q @1 to @o @7 TPU (@9 v1alpha1)","Zero-Copy &3 @5 $O of geospatial @w.","A @q @1 to @o @7 resourceviews (@9 v1beta2)","2.0.4+20160512","@K 2D ^T @1","A @q @1 to @o @7 SQL Admin (@9 v1beta4)","Proc @e of Support @V @0 @4 @I.","$L @6 to gRPC c @F @1","A @q @1 to @o @7 dfareporting (@9 v2.8)","2.0.8+20180830","Real-Time Interrupt-driven Concurrency (RTIC): a concurrency @k @0 $K real-$z systems","0.6.0-rc.2","Tetsy Transport &f ^k-RPC 2.0 @c @2.","Portable Ethereum Virtual Machine @2 $A in ^X @3.","Wasmer &O Types","@3 @6 @0 EGL","Reading @5 $O at an offset","A @q @1 to @o @7 Slides (@9 v1)","1.0.4+20161213","A @q @1 to @o @7 drive (@9 v3)","Backport of libsyntax","Manage $b of objects","@3 definition of SPIR-V &o @5 enums","A @q @1 to @o @7 dfareporting (@9 v2.6)","Xoodyak / Xoodoo - A versatile ^w scheme @l can be $2 @0 hashing, encryption, MAC computation @5 authenticated encryption.","AMQP Worker to listen @5 provide $y to ^I message","A port of HdrHistogram to @3","@3 @1 @0 accessing USB &N.","&5 @B @0 $S @5 fuzzing","0.10.0-alpha.2","Tool to find @5 fix @3 formatting issues","Epoch-@n garbage $b","XDR object @M @0 @3","&T: replaced by @4 `cipher` @8","0.99.99","Safe @f @x @l @s a way to @o @7 Virtual Reality headsets @5 $T @7 vendor specific SDKs $C OpenVR @5 Oculus. $8 @x is &X on @4 &x to $d WebVR @x but adapted to @3 design patterns","A batteries-included &q @1.","A @q @1 to @o @7 Firestore (@9 v1beta1)","2.0.4+20210317","Executors @0 $n tasks @n on @4 @Z-rs @1.","Sentry $T @0 capturing panics.","@3 @6 @0 @4 GTK+ 3 @1","A @q @1 to @o @7 playcustomapp (@9 v1)","$q @e portion of &x-jsonrpc. Don't $d this @8 directly. Use &x-jsonrpc instead.","A localization @O designed to unleash @4 entire expressive power ofnatural @L translations.","Secure Remote Delegation (SRD) Authentication ^c","$L @6 @0 libusb.","Encodes @5 decodes @4 Bech32 @G","A @3 @2 of @4 Khronos OpenCL 3.0 @x @5 &p.","compile-$z $c $B","A @q @1 to @o @7 Cloud Resource Manager (@9 v1)","2.0.4+20210328","Use declarative @a as proc_macro attributes or derives","Simulate expansion of $e @a at run $z","A @q @1 to @o @7 autoscaler (@9 v1beta2)","Raw @6 to libsodium","0.5.0-beta.2","Wasm @V validator","^e @0 $5 @5 ^P frames @u `@J/await`","A @q @1 to @o @7 Dns (@9 v1)","Sentry $T @5 @E @0 dealing @7 stacktraces.","Log bloom @2 @0 Ethereum.","A Kinetic @9 @1 $A in @3","@W a typemap container @7 FxHashMap","Cross-@N, low @C networking @u @4 @3 $m @L.","A @q @1 to @o @7 Games (@9 v1)","Python3 fstring interpolation in @3","2.0.0-alpha.0","Rusty WebGPU @x @h","Configuration DSL","Peer-to-peer networking @1 @u QUIC","Indented document literals","@3 @c to gerrit","A @q @1 to @o @7 Translate (@9 v2)","Build script @2 @0 C++ @1 &r","0.3.0-alpha4","Enables apps to report events to Event Tracing @0 ^6 (ETW).","A @q @1 to @o @7 taskqueue (@9 v1beta2)","Merkle-Patricia Trie ^G &6 key hasher @5 node $5","A @8 @0 measuring @4 total size of object on @4 stack @5 heap","$F @0 distributed &g choices","Deprecated in favour of elastic_types_derive","Sentry $T @0 log @5 env_logger $R.","Custom @b nom parsers @t struct","$8 @X @s an @m to SQLite.","A @q @1 to @o @7 BigQuery Data Transfer (@9 v1)","@Q $U is designed to be $2 as a @D @t a $x @Y running inside @4 SSVM to perform &8 tensorflow $B. Please see documentation @0 more details.","High-@C @x to expose @4 Wasmtime @I","Streaming Network Overlay Connection Arbitration Tunnel","Externs @1 to @o @7 Ethereum-$C ^9","Creates rin projects","Display current ^9 utilization by ^I, connection @5 remote IP/hostname","InfluxDB @3 ^j","A @q @1 to @o @7 Cloud Resource Manager (@9 v1beta1)","2.0.8+20210328","A @1 @0 constructing polynomial commitment schemes @0 $d in zkSNARKs","Optimized ^a of `&[u8]` @5 `Vec` @0 Serde","A cron expression @i @5 schedule explorer.","Speedy &e ^2","Static $0 serving @0 Iron.","Convert a $y definition ^d a jsonrpc ^S.","A RPC handler to create sync states @0 light clients.","@3 ^j @0 MongoDB","^W apply @4 suggestions made by &K","Backport of librustc_errors","^e @0 interoperability @7 C++","Experimental ^q ^a $F.","JIT-style execution @0 WebAsssembly @V in Cranelift","Traits @5 default @T @0 inspecting ^V @7 imgui.","A @q @1 to @o @7 Firebase Dynamic Links (@9 v1)","Raw @6 @0 libalpm","Port of stylis","A @q @1 to @o @7 drive (@9 v2)","@W @g @5 $3 @0 $Z @5 checking inherents.","&b TLS/SSL streams @u Rustls.","$L @6 to libgtk-3","@3 @6 @0 @4 minimp3 @1.","A @q @1 to @o @7 Ad Experience Report (@9 v1)","&W @5 $l-@C $m @0 @3","A @q @1 to @o @7 Webfonts (@9 v1)","$8 @X @s SQLite.","bit @C @M/&9 ^B-@e @0 &o","A @q @1 to @o @7 Games Configuration (@9 v1configuration)","0.21.6-dev.36","[ink!] @3 @n eDSL @0 $O smart contracts @0 Substrate","Linear algebra @X @0 @f-ndarray @u LAPACK","Inkwell aims to help you pen $r own $m languages by safely wrapping llvm-@r.","Return @m IP addresses on Posix @5 windows systems","@Q @3 @1 implements a @h $l called SendWrapper $i allows you to move $G non-Send typesbetween threads, as long as you $X @4 contained &5 only @t within @4 original &d. You also have tomake sure @l @4 @h is dropped @t within @4 original &d. If any of these constraints is violated,a panic occurs.Forked @t &Y://github.com/thk1/send_wrapper because it was unmaintained","A @3 XML @M @1","A Luhn validation @1","A @q @1 to @o @7 $S (@9 v1)","A @q @1 to @o @7 AdSense (@9 v1.4)","Generate &L ^M quickly.","A @q @1 to @o @7 genomics (@9 v1)","A @q @1 to @o @7 People Service (@9 v1)","Sentry (getsentry.com) @c @0 @f ;)","Pure-@3 $3 @5 @E @0 constant-$z ^w @T.","An ergonomic ^q ^a @1","0.7.0-beta.1","pest's @b @e","Encoding @5 ^P @j @0 BSON in @3","Versioning @j @0 Serde","A @d graph search @5 representation @1","SAFE Authenticator","$q functionlike!() @a @u only ^o 1.1","A suite of non-^w ^z @y @0 @3.","@3 @2 of RFC6570 - URI Template @l can processURI Templates up @5 to including ones designated Level 4.","Magnet, a ^k/BSON schema @B"];var crateIndex={"xxcalc":["Embeddable or standalone robust floating-point polynomial calculator",C[5]],"wread-data-mongodb":["read @5 &0 @w @0 mongodb",C[15]],"tokkit":["A @d(simplistic) OAUTH toolkit.",C[26]],"octavo-digest":["Octavo - Cryptographic Hash Functions. WARNING!!! Not suitable @0 production",C[4]],"jack":["Real $z audio @5 midi @7 JACK.","0.7.2"],"scorex_&Q_avltree":["@v of cryptographically authenticated dictionary @n on AVL ^0",C[0]],"annatar":["A @D $D ^4 @0 making memes.Full readme available at: &Y://github.com/archer884/annatar","0.5.6"],"libmctp":["libMCTP is a MCTP (Management Component Transport ^c) @2 @0 @3",C[0]],"ark-crypto-primitives":["A @1 of useful ^w $9",C[1]],"$6_&V_traversal":["A @e @l creates @4 boilerplate to traverse ^k (js/ts style)",C[3]],"rivlib":["Use Riegl's RiVLib to read rxp @z",C[1]],"asexp":["Advanced S-expression-$C @G suitable @0 $H @5 @M",C[9]],"^7_dir":["Easy creation of temporary $0 $V @0 ^7 purpose.",C[0]],"lbfgsb-sys":["$8 @X @s an @m to L-BFGS-B fortran routine",C[0]],"yarte_&s_app":["A @d single &d reactor pattern @0 &s",C[5]],"finn-assembler":["$8 Finn IR Assembler",C[8]],"ra_ap_ssr":[C[22],"0.0.39"],"thrussh_@U":["An SSH @U @1 built on top of Thrussh @5 Mio.","0.6.0"],"rst":["a reStructuredText @i @5 renderer @0 @4 @D $D",C[2]],"dimensioned":["Compile-$z dimensional analysis @0 various unit systems @u Rust's $l system.Dimensioned aims to $j on Rust's safety features by adding unit safety @7 no @I cost. Inaddition, it aims to be as &x to $d as possible, hopefully making things easier @0 you not justby avoiding bugs but also by making it clear what units things are.Never again should you need to specify units in a comment!","0.7.0"],"alloc_buddy_simple2":[C[133],C[4]],"mob_@U":[C[132],"0.4.3"],"copperline":["Pure-@3 Command Line Editing @p",C[1]],"hmac":["&W @2 of Hash-@n Message Authentication Code (HMAC)",C[16]],"linear":["Use @4 matrix @X instead.",C[3]],"fbjira":["Command $D @m @0 jira","0.1.6"],"openh264-sys":["@H to OpenH264","1.0.3"],"bytes":["Types @5 $3 @0 ^p @7 bytes","1.1.0"],"sys-mount":["High @C $L $W $G @4 @r mount & umount2 calls","1.3.0"],"corona":["Coroutine @5 Async/Await @j @0 $v-@n @Z","0.4.3"],"xkcd":["Interface @0 @4 XKCD &e @x",C[1]],"initial_conditions":["A helpful physics lib: mechanics, useful constants, @5 more.",C[2]],"mobc":["A ^G connection pool @7 @J/await @j","0.7.3"],"stats":[C[454],"0.0.2"],"lockchain-crypto":["Small shim layer @8 @0 ^w $B on lockchain @w records",C[7]],"tw_pack_lib":["A Total War series pack $0 @1","0.1.21"],"fpa":["Fixed point arithmetic",C[0]],"tai64":["TAI64 @5 TAI64N (i.e. Temps Atomique International) timestamp @j @0 @3","3.1.0"],"qecs":[C[6],"0.0.7"],"path-dsl":["A $w DSL @5 @e to help deal @7 Paths @5 PathBufs.","0.6.1"],"google-cloudiot1-cli":[C[633],C[54]],"funnel":["A @d @w $V @l makes it &x to read @t &l channels @t a single source","1.1.0"],"spirv-reflect":["Reflection @x in @f @0 SPIR-V shader byte @V, intended @0 Vulkan @P.","0.2.3"],"nereon_@b":["Automatic Nereon FromValue $y @T.","0.6.0"],"deno_&e":["Collection of Web APIs","0.54.0"],"ansi_colours":["true-colour ↔ ANSI $o palette converter","1.0.4"],"stm32f1xx-hal":["HAL @0 @4 STM32F1xx family of $s","0.7.0"],"ruspiro-allocator":["@K @5 ^O heap $g ^l @0 Raspberry Pi baremetal environments.","0.5.0"],"eng-pwasm-abi":[C[188],C[9]],"certainly":["$8 easiest way to create self-signed certificates. Ever.","1.8.0"],"rand_isaac":["ISAAC &L &a @B",C[1]],"smallbox":["`Small Box` optimization: store &7 item on stack @5 fallback to heap @0 large item.",C[7]],"sgx-quote":["Zero-copy Intel SGX quote @i @u nom.",C[0]],"gladis_^B_@e":["Easily import Glade-^8 UI @z ^d @3 @V (^B @e).","1.0.1"],"vmprotect":["Unofficial VMProtect ^N @0 @3",C[3]],"yaml-validator":["A @1 @0 validating YAML against YAML-defined schemas",C[0]],"crossfont":["Cross @N &8 font loading @5 rasterization","0.3.1"],"seek_bufread":["A drop-in replacement @0 std::io::BufReader @7 seeking @j.","1.2.2"],"gurobi-sys":["Low-@C $L @6 of Gurobi C @x @0 @3 (unofficial)",C[1]],"phetch":["quick lil gopher @c","1.1.0"],"tonic-reflection":["Server Reflection ^F of `tonic` gRPC @2.",C[1]],"main_loop":["main loop @0 real $z @P","0.3.3"],"minify":["Crate @0 ^D minification. Currently supported: html, &V","1.2.0"],"json-api":["Idiomatic @g @0 $K a robust ^k @x","0.4.1"],"termbook-cli":["`termbook` is a @D-$D ^4 to $j `mdbook`'s while executing `bash` codeblocks @5 collecting their &Z to become part of @4 `mdbook`.","1.4.6"],"codeviz_js":[C[75],C[8]],"tower-http":["Tower &G @5 @E @0 ^s clients @5 servers","0.1.1"],"argh_@b":[C[392],"0.1.6"],"pbf_font_&1":["Tools @0 ^p @7 SDF font glyphs encoded in protobuf @G.","1.0.2"],"oidn":["A @h @0 @4 Intel OpenImageDenoise image denoising @1.","1.4.1"],"fitsio-sys":["$L @h $G cfitsio",C[2]],"google-books1-cli":[C[291],C[497]],"quoted_printable":["A @d encoder/decoder @0 quoted-printable @w","0.4.3"],"difflib":["Port of Python's difflib @1 to @3.",C[2]],"azure_sdk_@0_@f":["@3 &r $G Microsoft Azure REST APIs",C[28]],"bgzip":["@3 @2 of bgzip",C[5]],"blsttc":[C[36],"3.4.0"],"py-spy":["Sampling profiler @0 Python programs","0.3.10"],"ncbitaxonomy":["Read NCBI Taxonomy Database @t @z @5 work @7 NCBI Taxonomy DB","1.0.7"],"schemars_@b":["^o @0 #[@b(JsonSchema)], @0 $d @7 schemars","0.8.6"],"fps_clock":["A @8 @0 making $r game loop run at @4 correct FPS","2.0.0"],"docopt_@a":["Docopt @e @0 @D $D argument @R.","0.8.1"],"sloppy-rfc4880":["RFC 4880 @i extract @t @4 openpgp @8",C[3]],"usdt-macro":["$q @e @0 $E @3 @a @0 USDT probes",C[49]],"colornamer":["give me a color @5 I will name it","1.0.1"],"queen-io":[C[780],"0.6.1"],"memflow-derive":["@b @a @0 @4 memflow physical $g introspection @k","0.1.5"],"bit-matrix":["@p @0 bit matrices @5 vectors.","0.6.0"],"jsonpath":["JSONPath @0 @3","0.1.1"],"kube-derive":["Custom derives @0 @4 kube kubernetes $R","0.63.1"],"audir-sles":["OpenSL ES @6 @0 Android",C[0]],"vicuna":["^r Lambdas made @d.","0.4.1"],"buldak":["It is a @1 @l @s various sorting @y.","0.27.1"],"ptree":["Pretty-print ^0-$C $k",C[9]],"llvm-ir":["LLVM IR in natural @3 @w $k","0.8.1"],"v_frame":["Video Frame @w $k, part of rav1e","0.2.4"],"unic-ucd":["UNIC — &h Character Database","0.9.0"],"i2c-linux":["&j I2C device @m",C[4]],"util":["^e",C[4]],"@J_executors":["Implements Spawn, SpawnLocal @5 SpawnHandle @0 commonly $2 executors.","0.4.2"],"gdk-pixbuf":["@3 @6 @0 @4 GdkPixbuf @1",C[24]],"pose":["An XSLT $C templating @O @0 @3",C[5]],"^f_libra_proptest_&w":["Libra proptest &w",C[10]],"messagepack-rs":["messagepack-rs is ^X @3 MessagePack @2",C[7]],"v8_rub":["@3 Builder @0 v8","0.0.5"],"brotli-decompressor":["A brotli decompressor @l @7 an @m avoiding @4 @f stdlib. @Q makes it suitable @0 ^b &N @5 kernels. It is designed @7 a pluggable ^l so @l @4 ^E lib's ^l may be employed. $8 default $j also includes a stdlib ^l @5 ^L @m. Disable this @7 --features=no-stdlib. Alternatively, --features=unsafe turns off array bounds checks @5 $g initialization but @s a $M @m @0 @4 caller. Without adding @4 --features=unsafe argument, all included @V is $M. For ^C in addition to this @1, download &Y://github.com/dropbox/@f-brotli","2.3.2"],"ophelia-bls-amcl":["ophelia bls",C[1]],"victoria-dom":["Minimalistic HTML @i @7 CSS selectors",C[4]],"icon_baker":["A @d solution @0 $5 $u icon $0 formats.","3.2.0"],"rlp-derive":["&n @e @0 #[@b(RlpEncodable, RlpDecodable)]",C[0]],"&V_logger":["A ^k &H @2.",C[0]],"moore-common":["$8 $u @F of @4 moore ^2 @k.","0.12.1"],"squote":["A clone of @4 quote @8 @l uses a String as its backing store",C[4]],"path-tree":["path-^0 is a ^O high $J ^s request router @0 @3",C[8]],"panic_search":["^W search @0 panics when they happen","0.1.4"],"tokio-utp":["$v-@n uTP @2",C[1]],"google-prediction1d6":[C[66],"2.0.8+20160511"],"apis":["Reactive, session-oriented, $n ^I-calculus @k","0.4.5"],"google-manufacturers1":[C[729],C[85]],"tetcore-wasm-interface":[C[316],"2.1.2"],"roa-core":["@F components of roa &e @k","0.5.1"],"clfft":["@H @0 clFFT, a FFT @1 @0 OpenCL.","0.3.3"],"bdrck_config":["Application $H tooling.",C[3]],"cortex-a":["Low @C $X to Cortex-A processors","6.1.0"],"actl":["A @D $D ^4 @0 @O maintenance @5 @4 $C @0 Archlinux.","1.0.1"],"hyper-rustls":["Rustls+hyper $T @0 ^X @f HTTPS","0.22.1"],"dirs-sys":["System-@C ^t @y @0 @4 dirs @5 directories $R.","0.3.6"],"qecs-core":[C[6],"0.0.17"],"flat_projection":["Fast geodesic distance approximations via flat surface projection.",C[2]],"^Q":["Database.","0.5.0"],"tower-web-macros":["^o @0 tower-&e","0.3.5"],"runtime-native":["A cross-@N $n @I",C[197]],"dht":["@v of Kademlia-@n DHT in @3","0.0.6"],"parselnk":["Parse windows .lnk @z in ^X @f",C[0]],"@b_display_@t_debug":["A trivial @3 @e to @b @4 Display $y @0 any $l @7 @4 Debug $y",C[4]],"auto-args":["Parse @D $D arguments by defining a struct.","0.2.9"],"v8-api":["A @i @0 v8.h @z to extract a description of @4 V8 @x heuristically. Used in $j scripts, @0 example in v8-@r.",C[7]],"ts3-query":["Teamspeak3 Query @p","0.3.1"],"warn":["A @1 @0 a warning callback $y",C[8]],"$P_iam":["^r ^N @0 @3 - ^r Identity @5 Access Management @ 2010-05-08",C[27]],"pcg":["A port of @4 PCG &L &a ^1 @1","4.1.0"],"enum_$3":["Traits @0 builtin enum items @l are primarily $2 by `enum_traits_macros` when automatically deriving @g",C[1]],"disabled_contracts":["A clearly stub $4 of @4 `contracts` @8.",C[0]],"intmap":["Specialized HashMap @0 u64 keys","0.7.0"],"ieee754":["Low-@C manipulations of IEEE754 floating-point ^M.",C[119]],"rg3d":["3D Game $a","0.23.1"],"rqrr":["Detect @5 read QR codes @t any image source",C[9]],"sized-chunks":["Efficient sized chunk datatypes","0.6.5"],"ref_filter_map":["Like `std::cell::{Ref,RefMut}::map`, but @0 optional components.","1.0.1"],"libimaghabit":[C[39],C[12]],"arnalisa":["Pipeline @O @0 calculating ^V","0.6.8"],"freefare-sys":["$L @6 @0 @4 libfreefare @1",C[3]],"rusty-tcl-sys":["@3 $L declarations @0 Tcl","1.1.3"],"font-kit":["A cross-@N font loading @1",C[12]],"humansize":["A configurable @8 to easily represent $0 sizes in a human-readable @G.","1.1.1"],"ntrumls":["NTRUMLS @1 @0 @3. An @m to @4 reference @2.","0.9.6"],"yahoo_finance_^S":["A @f adapter @0 @4 yahoo! finance @x to fetch histories of market @w quotes.","1.2.2"],"unic-idna-punycode":["UNIC — @v of Punycode (RFC 3492) $1","0.9.0"],"algebloat_@a":["RustAlgebloat $w @a","0.0.13"],"cranelift-bforest":["A forest of B+-trees","0.77.0"],"google-androiddeviceprovisioning1":[C[189],C[143]],"jrsonnet-parser":["jsonnet @L @i @5 AST","1.0.0"],"ul":["High Level @H to Ultralight ^N","1.1.4"],"actix-server":["General purpose TCP @U built @0 @4 Actix ecosystem","2.0.0-beta.6"],"comp_state":["Component State - a clone of React Hooks use_state","0.2.8"],"castor":["Content addressable ^x backed by LMDB","0.5.0"],"typed-arena":["$8 arena, a $I but limited $l of ^l","2.0.1"],"sum":["General-purpose sum @g.","0.1.7"],"rtfm-syntax":["$8 Real Time @0 $8 Masses (RTFM) meta @L",C[2]],"sdl2_net":["Safe but close to @4 source SDL2_net @6 @5 &r","0.0.2"],"orbfont":["Orbital font &S","0.1.8"],"gluon_c-api":["C-^S @0 gluon, a &k, $l inferred $m @L @0 $U embedding",C[43]],"tokio-channel":["Channels @0 $n communication @u Tokio.",C[0]],"treebitmap":["Fast IPv4/IPv6 lookup trie.",C[2]],"x448":["A ^X-@3 @2 of X448.","0.6.0"],"bitfields":["Helpers @0 storing sub-byte enums in primitive @g.",C[3]],"crypto-mac":["Trait @0 Message Authentication Code (MAC) ^3",C[17]],"lipmaa-link":["A @Y to calculate [lipmaa](&Y://github.com/AljoschaMeyer/bamboo/blob/master/README.md#links-@5-entry-verification) sequence ^M.","0.1.1"],"lzf":["A &7 @h $G LibLZF, a very &7 @w ^C @1","0.3.1"],"rocks":["RocksDB @6 @0 @3.",C[32]],"mussh":["SSH Multiplexing","3.1.2"],"poem":["Poem is a full-featured @5 &x-to-$d &e @k @7 @4 @3 $m @L.","1.0.9"],"multiinput":["A ^X @f gamepad/mouse/keyboard input @1 @n off of rawinput @0 @4 windows @N",C[0]],"partial_@Y":["A clean way to define @Y as a set of subfunctions where each hasdefined start @5 end bounds.","0.5.0"],"jsonrpc-async":[C[102],"2.0.1"],"beats":["A @1 @0 dealing @7 Swatch Internet Time (.beats)","0.1.3"],"etcetera":["An unopinionated @1 @0 obtaining $H, @w @5 cache directories",C[9]],"fibers_&z_@U":["A tiny ^s/1.1 @U @k",C[3]],"simulacrum_mock":["Core $7 @0 $Z mock objects @7 Simulacrum.",C[0]],"shaku":["Compile Time Dependency Injection @0 @3","0.6.1"],"rs621":["@3 @8 @0 @4 E621 @x (a large online archive of furry art).","0.7.0-alpha1"],"page_size":["@W an &x, $I, cross-@N way to retrieve @4 $g page size","0.4.2"],"lava":["@3 @h to manipulate Vulkan more conveniently than @7 @6.","0.4.9"],"gnutls":["A @h $G gnutls-@r (GnuTLS bindngs @0 @3).","0.1.3"],"activitystreams-ext":["Extension @g @0 @4 ActivityStreams @8",C[657]],"sv-parser-macros":[C[327],C[17]],"qt_3d_extras":["@H @0 Qt3DExtras C++ @1","0.5.0"],"dahl-partition":["An ^Z representation of a set partition.","0.5.3"],"add_getters_setters":["Makes it much easier to add getters @5 setters @0 fields of structures.Done by simply just adding some attributes to @4 struct @5 fields","1.1.2"],"dev":["An @m to @O/kernel &N",C[0]],"legal_chess":["@1 @l generates legal chess moves given a board","0.4.42"],"skeleton":["Skeleton ^g &F","0.3.3"],"broker":["Real-$z BaaS (Backend as a Service)","15.1.0"],"duktape_@r":[C[574],"0.0.2"],"@V_&I":["A @V &I @0 $E indented $c @V blocks.",C[0]],"monstrio":["MonstrIO - set of high @C IO &P.",C[4]],"memsec":["@3 @2 `libsodium/^u`.","0.6.0"],"smol-potat-derive":[C[125],C[0]],"bmp":["Small @1 @0 &3 @5 $O BMP images in @3.","0.5.0"],"stm32f40x":["Peripheral $X @x @0 STM32F40X $s","0.6.0"],"sawp-modbus":["SAWP ^c &B @0 Modbus","0.6.0"],"leechbar":["A @1 @0 $K $r own bar on top of XCB","0.5.4"],"github":["A @3 GitHub v3 @x @c.",C[4]],"hijri_date":["@s $7 @0 conversion $t hijri @5 gregorian calander",C[2]],"jsondata":["^k &u @X @0 document databases",C[7]],"units":["Units of Measure @0 @3. Easy to $d, $l-$M @5 customizable.",C[0]],"spmc":["@K SPMC channel",C[1]],"heap":["Heap $B on slices",C[0]],"chargrid_event_routine":["Pseudo-synchronous composable event-@n state machines @0 chargrid apps",C[1]],"dotenv_^H":[C[25],C[23]],"evercrypt-sys":["$L $W to HACL/Evercrypt","0.0.8"],"term_rewriting":["A @3 @1 @0 representing, @R, @5 computing @7 first-order term rewriting systems.","0.7.0"],"yubibomb":["Don't you love when you accidentally tap $r Yubikey when you have $r IRC @c in focus @5 you send 987947 ^d Libera? Want to be able to have @l experience ^Y having to reach all @4 way &6 to $r laptop's USB port? Now you can!","0.2.6"],"gio-sys":["$L @6 to libgio-2.0",C[24]],"quanta":["high-speed timing @1","0.9.3"],"mirror_sparse_matrix":[C[50],C[60]],"tokio-fs":["Filesystem @x @0 Tokio.",C[30]],"dnsstamps":["Create @5 parse DNS Stamps","0.1.9"],"jsonschema-transpiler":["A ^4 to transpile ^k Schema ^d schemas @0 @w &u","1.10.0"],"netstat2":[C[768],"0.9.1"],"eccoxide":["elliptic curve cryptography (ECC) @k","0.3.1"],"text-size":[C[920],"1.1.0"],"bobbin-bits":["Small bit fields @5 ranged integers","0.1.1"],"aliasable":["Basic aliasable (non unique pointer) @g","0.1.3"],"leveldb-rs":["@H to @4 LevelDB key/&5 ^x @1 (&Y://github.com/@A/leveldb)","0.0.7"],"tetsy-libp2p-kad":["Kademlia @9 @0 tetsy-^v","0.29.0"],"nspire":["&T - $d ndless instead","0.5.2"],"winit_input_^t":["Processes winit events, allowing input state to be queried at any $z.",C[13]],"nom-test-helpers":["^o to help @7 $S nom parsers","6.1.3"],"async-recursion":["Recursion @0 @J @y",C[9]],"sanakirja":[C[343],"1.2.11"],"oxygengine-input-device-web":["Web input &N ^F @0 Oxygen Engine",C[42]],"block_on_^B":["Generate a blocking method @0 each @J method in an impl block. Supports either `$v` or `@J-std` $N.",C[3]],"qwk":["Duck Duck Go @c $A in @3","0.1.3"],"competitive-programming-rs":["Competitive Programming @p in @3","34.0.0"],"nix":["@3 &E @6 to *nix APIs",C[88]],"clippy":["A bunch of helpful lints to avoid $u pitfalls in @3.","0.0.302"],"gvariant-macro":["Proc @a @0 @4 gvariant @8",C[2]],"google-doubleclicksearch2":[C[464],C[112]],"xdg-utils":["Query @O @0 default apps @u XDG MIME databases. @3 @T of some $u @y in @4 freedesktop ^g `xdg-^u`.",C[2]],"lame":["@3 @6 @0 libmp3lame","0.1.3"],"pallet-authority-discovery":["FRAME &v @0 authority discovery","3.0.0"],"ruby-sys":["Low @C @6 to MRI, Matz's Ruby Interpreter.",C[1]],"tls-listener":["wrap incoming Stream of connections in TLS",C[5]],"ethereum-types-serialize":[C[707],C[8]],"vega_lite_4":["@f ^S @0 vega-lite v4","0.6.0"],"rusty-cute-macros":["Bunch of lazy @a $i i $2 @t $z to $z",C[9]],"deckofcards":["An @x to implement a deck of cards",C[2]],"what-bump":["Detect required $4 bump @n on conventional commit &y","1.2.0"],"cex_@b":["^o @0 checked exception simulation","0.5.2"],"pbjson-types":["Protobuf well known @g @7 $6 @M @j",C[3]],"smart-leds":["A @8 to $d smart-leds device drivers",C[1]],"indexed_bitvec_@F":["Core $B on indexed bitvectors including (hopefully) $I rank @5 select $B.","4.0.0"],"newtonmath":["Wrapper @0 @4 Newton @x (&Y://newton.now.sh)",C[1]],"htmlescape":[C[604],"0.3.1"],"clipboard_wayland":["A @1 to obtain $X to @4 clipboard of a Wayland window",C[3]],"ajson":["^k &B @0 @3 - Get ^k ^V quickly","0.2.4"],"android_log-sys":["$L @6 to Android log @p.",C[3]],"opaque_typedef_@a":[C[192],"0.0.5"],"passwords":["@Q @8 @s useful &1 to ^n &l readable passwords, as well as analyze @5 score them.","3.1.8"],"escargot":["Cargo @x $A in Paris","0.5.2"],"bencher":["A port of @4 libtest (unstable @3) benchmark runner to @3 stable releases. Supports running benchmarks @5 filtering @n on @4 name. Benchmark execution works exactly @4 same way @5 no more (caveat: black_box is still missing!).","0.1.5"],"parity-codec-derive":["Serialization @5 &9 @b @e @0 Parity Codec","3.3.0"],"redox_users":["A @3 @1 to $X Redox users @5 groups $7",C[2]],"oauth1-request":["Yet yet yet another OAuth 1.0 @c @1.","0.5.1"],"ethers-contract":["Smart contract @6 @0 @4 ethers-rs @8","0.5.4"],"stoken":["a @f @n stoken @2","0.0.6"],"async-rwlock":["Async reader-writer lock","1.3.0"],"kalk":["A math evaluator @1 @l supports user-defined @y, variables @5 units, @5 can handle fairly ambiguous syntax.","2.1.2"],"btm":["Blockchain Time Machine","0.1.6"],"google-audit1":["A @q @1 to @o @7 audit (@9 v1)","0.1.11+20150419"],"noble-grandpa":["FABRIC noble @0 GRANDPA finality gadget","2.0.0"],"skein-ffi":["@3 Skein ^z @Y (via ffi $W)","0.5.0"],"nickel_mustache":["Flexible Mustache template &S @0 nickel",C[0]],"objectid":["A @3 @2 of a BSON ObjectId.",C[3]],"windows-dll-codegen":[C[153],C[1]],"v-common-ft-xapian":[C[195],"0.1.51"],"panic-semihosting":["Report panic &y to @4 host stderr @u semihosting","0.5.6"],"unic-locale-macros-impl":[C[31],"0.9.0"],"^f_libra_stdlib":["Libra stdlib",C[10]],"tracing-futures":["^e @0 instrumenting `@Z` @7 `&g`.","0.2.5"],"testanything":["Generate results in @4 Test Anything ^c (TAP)",C[1]],"leveldb-sys":["$L @6 to LevelDB","2.0.9"],"deku":[C[1066],"0.12.4"],"fabric-benchmarking":["Macro @0 benchmarking a FABRIC @I.","2.0.0"],"futures-cache":["Futures-aware cache backed by sled.",C[13]],"perf-event-open-sys":["Unsafe, direct @6 @0 Linux's perf_event_open @O call, @7 associatedtypes @5 constants.","1.0.1"],"google-partners2":[C[108],"2.0.8+20180925"],"condition_variable":["Condition Variables (CondVars) made &x","0.1.5"],"tugger-apple-codesign":["Pure @3 @m to @V signing on Apple platforms","0.6.0"],"demo-hack":[C[900],"0.0.5"],"cicada":["A @d Bash-$C Unix shell.","0.9.22"],"stm32f100xx":["Peripheral $X @x @0 STM32F100XX $s",C[2]],"uhidrs-sys":["$L @6 to &j UHID (user-space HID transport drivers)","1.0.1"],"netns":["A @1 to work @7 linux ^9 namespaces",C[0]],"eval":["Expression evaluator","0.4.3"],"k8-obj-app":["Kubernetes app objects","2.0.0"],"loca":["$g allocation","0.7.2"],"next-gen_proc-macro":[C[350],"0.0.10"],"anchor-spl":["CPI clients @0 SPL programs",C[43]],"pallet-recovery":["FRAME account recovery &v","3.0.0"],"stm32h7xx-hal":["Hardware Abstraction Layer @2 @0 STM32H7 series $s",C[13]],"unicode-case-mapping":["Fast lowercase, uppercase, @5 titlecase mapping @0 characters",C[3]],"blake2b":["&T: please $d @4 `blake2` @8","0.99.0"],"bn":[C[81],"0.4.3"],"tonic-web":["grpc-&e @9 translation @0 tonic services.",C[3]],"fff_@b":[C[238],C[1]],"pallet-babe":["Consensus ^h ^F @0 BABE &A. Collects on-chain randomness @t VRF outputs @5 manages epoch transitions.","3.0.0"],"threads_pool":["@Q @X @s an &x way to create @5 manage &d pools, so you don't have to.","0.2.6"],"biofile":["A @1 @0 &3 bioinformatics related @z","1.10.3"],"libswe-sys":["Astrology lib connected to @4 C lib Swiss ephemeris (just @4 c lib)","0.2.4"],"crypto-rest-client":["An RESTful @c @0 all cryptocurrency exchanges.","0.7.6"],"fancy-prompt":["fancy-prompt is an improved shell prompt @7 several useful features",C[5]],"rustpython":["A python interpreter $A in @f.",C[4]],"bevy_diagnostic":["@W diagnostic $7 @0 Bevy Engine","0.5.0"],"qemu_print":["A @8 prividing `qemu_print!` @5 `qemu_println!` @a to print $p to @4 console @0 debugging.",C[0]],"vk_@B":["Generate @3 @6 to @4 Vulkan @x",C[9]],"&V_typegen_&J":["Codegen @t ^k samples. Not intended to be $2 directly. See repository @0 @4 intended $R.","0.7.0"],"nodejs-sys":["&M @6 to @4 nodejs' n-^S",C[15]],"tonic-types":["A $b of useful protobuf @g @l can be $2 @7 `tonic`.",C[2]],"webrender_$j":["Code &J $t precompilation (build.rs) @5 @4 rest of WebRender",C[0]],"lpc43xx":["Register $h @0 @4 NXP LPC43xx microcontroller @N, ^8 through svd2rust",C[0]],"ascii-canvas":["@d canvas @0 drawing lines @5 styled ^D @5 emitting to @4 $o","3.0.0"],"sentry-debug-images":["Sentry $T @l adds @4 list of loaded &4 to events.",C[88]],"calculator":["Mathematical expressions @1, @0 calculator $O, perhaps","0.0.1"],"smithay-client-toolkit":["Toolkit @0 making @c wayland @P.","0.15.1"],"megam_rustyprint":["A pretty printer table make @0 ^y. Takes a matrix of [x,y] rows @7 a header [x] cols @5 prints it in a neat way.",C[5]],"mpc":["WIP @6 @0 orangeduck's mpc (Micro &B Combinators) @1",C[32]],"docql":["Generate &k HTML documentation @0 GraphQL APIs.",C[9]],"stm32f3-discovery":["Board @j @X @0 @4 STM32F3DISCOVERY board","0.7.2"],"serenity-voice-model":["A @3 @1 @0 (de)serializing Discord Voice @x gateway &y.",C[0]],"async-pipe":["Creates an $n piped reader @5 writer pair @u tokio.rs","0.1.3"],"weather":["@3 CLI weather forecasting ^4",C[4]],"uhyve":["A hypervisor @0 RustyHermit.","0.0.29"],"lru-cache-macros":["A $e @e @0 automatically caching @4 &Z of @y.","0.3.1"],"i3":["i3 Window Manager IPC @p","0.0.17"],"ra_ap_vfs-notify":["TBD","0.0.79"],"primes":["A @X @0 calculating primes @u @4 Sieve of Eratosthenes, @5 @u @l to check if anumber is prime @5 calculating factors. Includes an iterator &6 all primes.",C[1]],"async-dnssd":["&b @h @0 DNS-SD C &4",C[113]],"exonum-cli":["Helper @8 @0 secure @5 convenient $H of @4 Exonum nodes.","1.0.0"],"mop-adapters":["Solver adapters @0 MOP","0.0.10"],"shippo":["An @x @c @0 Shippo","0.1.29"],"enum-ordinalize":["@Q $R @s a $e @e to let enums not only get its variants' ordinal but also be constructed @t an ordinal.","3.1.10"],"buf_$0":["A Buffered File @l allows @0 both &3 @5 $O","0.2.9"],"gfa":["@p @0 ^p @7 graphs in @4 GFA (Graphical Fragment Assembly) @G",C[13]],"ccl-crossbeam-epoch":[C[976],"0.7.4"],"value-bag":["Anonymous structured ^V","1.0.0-alpha.8"],"mn":["$8 CLI app @0 remembering those little things @l slip $r mind",C[5]],"neli":["Type $M netlink @1 $A in @3","0.5.3"],"avr-device-macros":["Attribute @a @0 re-export in `avr-device`",C[9]],"frame-system-rpc-runtime-api":[C[278],"3.0.0"],"serde-hex":["Hexadecimal $5/^P @7 $6.",C[0]],"peekable_reader":["Exposes a $w @h $G Readers, allowing @4 clients to peek at @4 coming byte, ^Y consuming it","0.0.2"],"mouse_automation":["A winapi @h @l @s &x mouse automation.","0.1.3"],"avr_delay":["A @8 @0 AVR ^R software-@n delay @y",C[9]],"ndless-sys":["@3 @6 @0 Ndless @0 TI Nspire",C[3]],"async-zmq-types":["Types @5 $3 to create a ^G @m &6 $n zmq @T",C[9]],"lyon_@F":["&O resources to all lyon $R.",C[7]],"linkify":["Finds URLs @5 email addresses in plain ^D. Takes care to get @4 boundaries right @7 surrounding punctuation $C parentheses.","0.7.0"],"distributions":["Some statistic distributions $A in @f","0.0.2"],"llvm-sys":["@H to LLVM's C @x","130.0.0"],"game_clock":["@W a clock @0 game (engines) @l is @d to $d @5 ^Z.","1.1.1"],"gtag":["$8 missing range tag @D @0 Git",C[1]],"prefixopt":["See Read Me. ^W @b options @t &o @5 enums to $d @7 clap.",C[2]],"smart-default":["@3 custom-@b @e @0 Default @7 more control on @4 fields","0.6.0"],"amethyst_rendy":[C[708],C[99]],"protobuf_codec":["Encoders @5 decoders @0 ^c Buffers @n on bytecodec @8","0.2.8"],"gdk4-wayland-sys":["$L @6 of GDK4 Wayland","0.3.1"],"sidekiq-rs":["Sidekiq ^i @U in @3","0.7.0"],"google-cloudtasks2_beta2":[C[241],C[265]],"substrate-build-script-utils":["Crate @7 $w @y @0 `build.rs` scripts.","3.0.0"],"capnpc":["Cap'n Proto @V ^1","0.14.4"],"rspell":["A @d practical spellcheker.","0.1.1"],"structopt-toml":["An default &5 loader @t TOML @0 structopt","0.5.0"],"@b_deref":["Adds `#[@b(Deref)]` @5 `#[@b(DerefMut)]`","1.1.1"],"rpmlib-sys":["RENAMED: please visit &Y://crates.io/$R/librpm-@r","0.99.0"],"rms":["A @d $l @0 calculating @5 storing @4 RMS given some buffer of interleaved audio samples.","0.4.2"],"flywheel":["A Game Engine @0 Piston","0.1.1"],"gdnative_geom":["(&T) Math $9 @0 @4 Godot game engine's gdnative @6 (See @4 gdnative @8).","0.6.1"],"spherical_voronoi":["Generate Voronoi diagrams on a sphere.","0.5.1"],"cargo2junit":["Converts cargo's &V &Z (@t stdin) to JUnit XML (to stdout)","0.1.9"],"gdnative-derive":["$8 Godot game engine's gdnative @b @5 $e @a.","0.9.3"],"deepspeech":["@3 @6 to Mozilla's DeepSpeech STT @2","0.9.0"],"lcov-parser":["LCOV report @i @0 @3","3.2.2"],"libbpf-cargo":["Cargo $Y to $j bpf programs","0.9.2"],"hoodlum":["HDL ^1 @1 @0 hardware synthesis.","0.5.0"],"naive-timer":["A minimal naive timer @0 ^b (no_std) platforms.",C[3]],"lv2rs-core":["@3 adaptation prototype of @4 LV2 @F @1","0.3.3"],"never-type":["@Q @1 is an alternative @2 of never $l @0 stable @f.","0.1.1"],"rust-lcm-codegen":["Generates @3 de/@M @V @t LCM $l specification",C[5]],"^f_libra_prost_ext":["Libra $j &w",C[10]],"$I_fmt":["@Q @8 @s faster, more flexible @5 more correct alternative to @F::fmt","0.1.3"],"kiwi-schema":["@Q is a @3 @1 @7 some ^t routines @0 @R @z in @4 Kiwi @M @G.",C[4]],"yew-router-macro":["Contains @a $2 @7 yew-router",C[23]],"fmt-extra":["Extra formaters not shipped in @4 ^E @1",C[5]],"vodk_@w":["Tiny RTTI @1.","0.0.2"],"hello":["hello world","1.0.4"],"introspection":[C[105],C[0]],"bibicode":["A @8 to convert any natural &a @t one numeral @O to another.","0.3.1"],"luke":["Deep Learning @p","0.1.4"],"audiopus":["High-@C $W of @4 Opus Codec @1.","0.3.0-rc.0"],"tweetust_@a":["^o $2 in tweetust","0.0.2"],"include_dir_impl":["@v @8 @0 include_dir","0.6.2"],"libp2p-secio":["Secio encryption @9 @0 ^v","0.26.0"],"ethbloom":["Ethereum bloom filter",C[17]],"google-searchconsole1-cli":[C[220],C[34]],"@f_decimal_@e_impls":["Shorthand @a to assist $Z Decimal @g. Do not depend on this directly; $d rust_decimal_macros","1.7.0"],"bigml-parallel":["CLI ^4 @0 executing &l BigML scripts in parallel","0.7.0"],"metro_m4":["Board Support @8 @0 @4 Adafruit Metro M4","0.9.0"],"stun_codec":["Encoders @5 decoders @0 STUN (RFC 5389) @5 its &p",C[49]],"tetsy-libp2p-request-response":[C[11],"0.9.1"],"hadean-std":["Hadean stdlib. Requires Hadean @3.",C[3]],"ncollide_geometry":["&T: $d ncollide2d or ncollide3d instead.","0.6.4"],"red_asn1":["A little @1 to encode/decode ASN1 DER","0.3.5"],"pyo3-asyncio":["PyO3 @E @0 Python's Asyncio @1","0.14.1"],"iced_@Z":["Commands, subscriptions, @5 runtimes @0 Iced",C[1]],"retro-rs":["A @3 front-end @0 libretro cores.",C[9]],"zx-bip44":["BIP44 HD derivation",C[0]],"iota":["Related constants: 1 << iota",C[8]],"cifar_10_loader":["Crate of loading cifar10",C[3]],"plumtree":["A @3 @2 of Plumtree $1","0.1.1"],"deuterium_orm":["@K ORM @0 @3","0.5.0"],"semalock":["A @1 @0 concurrently $O to @z in a $M @5 ^Z manner.","0.3.1"],"cryptonote-varint":["varint @0 cryptonote","0.1.3"],"intecture-api":["@x component @0 Intecture infrastructure. Intecture is @4 developer &E, multi-lingual $H ^A ^4.",C[9]],"wd40":["^s @x @h @0 Stockfighter in @3",C[5]],"markov":["A ^G markov chain @2 in @3.","1.1.0"],"azure_sdk_cosmos":["@3 &r $G Microsoft Azure REST APIs - Azure Cosmos DB @8","0.100.3"],"imag-log":["Part of @4 imag @F ^m: imag-log @D",C[12]],"pallet-benchmark":["Patterns to benchmark in a FRAME @I.",C[728]],"n_array":["Arbitrarily dimensioned arrays","0.1.3"],"conrod_@b":["A @8 ^R $e @a @0 @4 conrod @1","0.75.0"],"metacrate":["Metadata @0 $R",C[4]],"mpr-sys":["Contains @Y $h @0 @4 ^6 @x @1 mpr. See winapi @0 @g @5 constants.","0.1.1"],"rtlsdr":["@3 @6 @0 librtlsdr","0.1.4"],"ffmpeg-dev":["Self contained (no net/@r deps) &k @f @6 to ffmpeg.","0.3.8"],"amqpr":["A $v @n amqp ^S @1 mainly $2 by amqpr.",C[8]],"gtk-rs-lgpl-docs":["LGPL-licensed docs @0 Gtk-rs $R","0.1.18"],"mbrman":["MBR Partition Management in @3",C[2]],"pest_tmp":[C[913],"2.1.1"],"win_etw_provider":[C[1021],"0.1.5"],"solana-banks-server":["Solana banks @U","1.8.1"],"google-cloudtrace2":["A @q @1 to @o @7 Cloud Trace (@9 v2)",C[224]],"&k_map_@a":["$q @e $2 @0 static_map.",C[431]],"extreme":["Extremely boring @J @Y runner. MIT/Apache-2.0 license is available @0 spacejam's github sponsors.","666.666.666666"],"gfx_glyph":["Fast GPU cached ^D &S @u gfx-rs & ab_glyph",C[26]],"ascii_table":["Print ASCII tables to @4 $o","3.0.2"],"glfw-sys":["An Open Source, multi-@N @1 @0 $Z windows @7 OpenGL contexts @5 receiving input @5 events","3.3.4"],"termcolor_&Z":["Interface @8 @0 styled &Z to termcolor through @e.","1.0.1"],"speedy-derive":[C[309],C[7]],"node-runtime":["$8 Tetcore @I","2.0.1"],"cloud-storage-lite":["A @d, flexible Google Cloud Storage @c.","0.1.9"],"tari_broadcast_channel":["Bounded non-blocking single-producer-multi-consumer broadcast channel",C[3]],"pub-sub":["A basic publish/subscribe channel.","2.0.0"],"ecies-ed25519":["ECIES on Twisted Edwards Curve25519 @u AES-GCM @5 HKDF-SHA256","0.5.1"],"sp-std":["Lowest-$F @C @0 @4 Substrate @I: just exports useful $9 @t std or @c/alloc to be $2 @7 any @V @l depends on @4 @I.","3.0.0"],"squish":["A ^X @3 BC1/2/3 compressor @5 decompressor @n on Simon Brown's libsquish","1.0.0"],"swc_$u":["&O @E @0 @4 swc ^g.","0.14.2"],"hexyl":["A @D-$D hex viewer","0.9.0"],"nom-psl":["Fast public suffix list domain @R, $A in nom","1.2.0"],"minimal-lexical":["Fast float @R conversion routines.",C[5]],"basis-universal":[C[553],"0.1.1"],"ssh2":["@H to libssh2 @0 &2 @7 SSH servers @5 executing remotecommands, forwarding local ports, etc.","0.9.3"],"anyvec":["Vector-$C $l @0 storing different @g in contagious $g.","0.2.3"],"rline":["Input $D retrieval @u libreadline's \"Alternate Interface\".",C[1]],"staticfile":[C[1044],"0.5.0"],"matroska":["@p @0 @R Matroska (MKV) $0 metadata.","0.7.0"],"forgiving-htmlescape":["A @1 @0 HTML entity $5 @5 ^P, @7 @j @0 leaving malformed entities intact",C[0]],"libp2p-request-response":[C[11],"0.13.0-rc.1"],"rtps":["OMG RTPS 2.2","0.2.3"],"rev_slice":["A newtype @0 operating on a reversed view of a slice.","0.1.5"],"ift":["A @1 to read template $p @0 local ^9 interfaces",C[9]],"cargo-lock":["Self-contained Cargo.lock @i @7 optional &m graph analysis","7.0.1"],"pam":["Safe @3 &r @0 PAM authentification","0.7.0"],"unreliable-message":["An @2 of unreliable message sending &6 UDP",C[0]],"graphy_^F":[C[80],C[1]],"console_log":["A &H facility @l routes @3 log &y to @4 browser's console.",C[3]],"jsonrpc-test":["@K ^7 @k @0 ^k-RPC.","18.0.0"],"pikkr":["^k &B $i picks up ^V directly ^Y performing tokenization in @3",C[72]],"libblas-sys":["$8 @X @s @6 to @4 Basic Linear Algebra Subprograms.",C[0]],"cellular_maps":["A @d @1 to ^n 2D $e bitmaps @u @4 cellular automata technique.","1.1.0"],"&k_assert_@e":["@p @2 of so-called `static_assert`","1.1.0"],"solana-banks-interface":["Solana banks RPC @m","1.8.1"],"no_color":["Detect NO_COLOR ^K variable.",C[0]],"aliri":["Implementations of @4 Javascript/^k Object Signing @5 Encryption (JOSE) standards","0.5.3"],"fmt-iter":["Print all items @t an iterator",C[5]],"resources_@X":["Macro @l allows you to @X @z inside $r &4 or executables.",C[0]],"tokio-linux-aio":["Tokio @6 @0 &j kernel AIO",C[38]],"enc28j60":["A @N &f ^j to @m @4 ENC28J60 (Ethernet controller)",C[5]],"canal":["A @1 @0 multithreaded concurrency $9, including queues @5 channels.","0.1.3"],"amigo":["a scheme &X @L","0.3.1"],"peeking_take_while":["Like `Iterator::take_while`, but calls @4 predicate on a peeked &5. @Q allows you to $d `Iterator::by_ref` @5 `Iterator::take_while` together, @5 still get @4 first &5 @0 $i @4 `take_while` predicate returned false after dropping @4 `by_ref`.","1.0.0"],"unic-langid-macros-impl":[C[29],"0.9.0"],"sgx_@g":[C[21],"1.1.2"],"&L_nice_emoji":["@Q is a little bin $i prints a &L nice emoji, $i I $d in my shell prompt",C[2]],"test-case-derive":[C[418],"0.2.3"],"flate2-crc":["SIMD acceleration @0 CRC-32 checksums $2 in @4 gzip @G**Deprecated in favor of @4 `crc32fast` @8**",C[4]],"v8-sys":[C[180],C[23]],"pdcurses-sys":["$L @6 @0 PDCurses, specifically @4 win32a @2.","0.7.1"],"imgui-winit-support":["winit @j @V @0 @4 imgui @8",C[7]],"cargo-wasi-src":[C[874],"0.1.23"],"contrail-collections":["Collections built on top of contrail.",C[1]],"atomic_enum":["An &U to create an atomic @h $G a C-style enum","0.1.1"],"rash":["@3-@n $0 hashing ^4","0.6.0"],"accord":["@p @0 validating @w according to rules $C \"contains\", \"length\", \"either\", \"range\".",C[8]],"smtp":["UNMAINTAINED - Replaced by @4 'lettre' @8",C[9]],"reproto-core":[C[89],"0.3.36"],"darling":["A ^B-@e @1 @0 &3 attributes ^d &o whenimplementing custom derives.",C[15]],"ckb-occupied-capacity":[C[205],C[302]],"csml_interpreter":["$8 CSML Interpreter is @4 official interpreter @0 @4 CSML $m @L, a DSL designed to make it extremely &x to create rich @5 powerful chatbots.","1.7.0"],"jojo":["JoJo's Bizarre Programming Adventure.","0.1.14"],"xcore":["A @d epoll @n TCP @U @k","0.1.3"],"commit_verify":["Commit-verify @x @0 @c-side validation","0.5.11"],"$z":["Date @5 $z @1. Fully interoperable @7 @4 ^E @1. Mostly ^i @7 #![no_std].","0.3.4"],"hcal":["Hexadecimal calendar @0 $o",C[5]],"$6_str_&w":["Helpers @0 @u $6 @7 $p",C[4]],"debug_@a":["A @d set of @a to help debugging.","0.0.1"],"imgui-ext":["A @8 to $j debug UIs on &o @u a @b @e (@n on @4 imgui @8)",C[1]],"tetcore-fabric-rpc-system":["FABRIC's @O exposed &6 Tetcore RPC","2.0.1"],"spotify-tui":["A $o user @m @0 Spotify","0.25.0"],"itsdangerous":["@3 port of @4 popular itsdangerous python @1 @0 signing $p @5 sending them &6 untrusted channels.",C[2]],"flatdata":["@3 @2 of flatdata","0.5.1"],"itm":["Tool to parse @5 dump ITM packets","0.3.1"],"idem":["0 @5 1",C[2]],"wchar":["$q @a @0 compile $z UTF-16 @5 UTF-32 wide $p.",C[16]],"wasmer-cache":["Cache @O @0 Wasmer $x @I","2.0.0"],"sixtyfps-corelib-macros":["Helper @e @0 sixtyfps-corelib","0.1.4"],"ra_&K_lexer":["lexer $2 by &K, zero stability gurantees","0.1.0-pre.3"],"termfest":["A &d-$M TUI @1",C[3]],"jaesve":["A CLI $w @0 ^L converting ^k objects to a series of CSV ^V","1.3.4"],"iota-lib-rs-preview":["A @f @2 of @4 IOTA @x","0.1.6"],"indy-sys":["$L @6 to Libindy C @x","1.16.0"],"srec":["Parsing @5 $E Motorola S-record (SRECORD/SREC) @z",C[3]],"zord":[C[61],C[62]],"dbg":["dbg!(expr, ..) @e @t RFC 2173 in stable @3","1.0.4"],"ggbasm":["Generating Gameboy Assembler",C[1]],"crossterm_screen":["A cross-@N @1 @0 raw @5 alternate screen.",C[9]],"futures-await-async-macro":["Definition of @4 `#[@J]` @e @0 @4 `@Z-await` @8 as well as afew other assorted @a.",C[626]],"hello-cli":["Prints a nice 'Hello World!' message",C[8]],"ist7920":["SPI ^j @0 @4 IST7920 LCD display controller","0.1.1"],"color_scaling":["Functions to scale colors: get a weighted color $t 2 colors","0.0.4"],"twa_pack_lib":["A Total War: Arena pack $0 @1",C[49]],"&k_init_@e":["Attribute @a @0 static_init @8","1.0.1"],"tp-finality-grandpa":[C[492],"2.0.2"],"entity_store_@V_gen":["Code @B @0 game @w store",C[26]],"x264-sys":["$L @6 to x264",C[3]],"sc-block-builder":["Substrate block &I","0.9.0"],"threed-ice":["$8 @X @s an @m to 3D-ICE.",C[28]],"un_algebra":["@K @T of selected abstract algebraic $k--including groups, rings, @5 fields. Intended @0 self-study of abstract algebra concepts @5 not @0 production $d.","0.9.0"],"salsa":[C[259],C[812]],"imag-contact":["Part of @4 imag @F ^m: imag-contact @D",C[12]],"dataview":["Safe transmute $t @g @5 bit patterns of @4 same length.",C[4]],"libp2p-yamux":[C[926],"0.34.0-rc.1"],"diesel-derive-newtype":["^W connect newtypes to Diesel @u their wrapped $l",C[4]],"ockam_vault_@F":["$8 Ockam Vault $y.",C[53]],"rio_turtle":["RDF Turtle, Trig, N-Triples @5 N-Quads parsers @5 serializers","0.6.1"],"solana-stake-accounts":[C[58],"1.8.1"],"tower-load-shed":["Immediately reject requests if @4 inner &t is not ready. @Q is alsoknown as load-shedding.",C[1]],"http-box":["Fast push/callback oriented ^s @i","0.1.5"],"abomonation_@b":["A custom @b $Y @0 abomonation","0.5.0"],"sc-chain-spec-derive":[C[608],"3.0.0"],"envoy":["Conveniences @0 manipulating ^K variables.","0.1.3"],"anevicon":["A high-performant UDP-@n load @B, $A in @3","7.0.9"],"graphy_^q":["A @1 @0 registering errors.",C[3]],"bare-websocket":["@K @c only WebSocket (RFC6455) @2 @7 low @C @9 details exposed (if needed)","0.0.6"],"sfml-build":["&O routines @0 finding @5 linking &8 (C)SFML &4",C[2]],"csi":["A ^4 @0 &u a directory of ^D @z. Particularly useful @0 $K &k websites.","1.0.2"],"gloo-console-timer":[C[14],C[0]],"r-efi":["UEFI Reference Specification ^c Constants @5 Definitions","4.0.0"],"aoc-runner-derive":["Codegen @0 aoc-runner & others",C[1]],"glsl-layout-derive":["Custom @b @0 `glsl-layout` @8.",C[2]],"tc-sync-state-rpc":[C[1046],C[7]],"krates":["Create graphs of $R gathered @t @S metadata","0.9.0"],"borsholder":["Dashboard of @f-lang/rust's bors queue.","0.9.3"],"holochain_&q":["Holochain analytics @t logs @5 other &q",C[18]],"gip":["A @1 @5 @D-$D frontend to check global IP address","0.7.0"],"$l_^z_@a":["Internal @e $h. They may not work properly if not $2 via @4 type_hash @8.",C[1]],"sig":["ffi @1 of signal(2) @5 kill(2)","1.0.0"],"tfs-fuse-sys":["Low-@C, incomplete fuse @6 @0 $d in tfs.","0.1.1"],"gltf-utils":["^e to complement @4 gltf @8",C[12]],"$v":["An event-driven, non-blocking I/O @N @0 $O $n I/Obacked @P.","1.12.0"],"@S_gn":["Cargo $T @7 @4 GN $j @O","0.0.15"],"gdk4-x11-sys":["$L @6 of GDK4 X11","0.3.1"],"sherr":["Error signalling @5 &H &w","0.4.1"],"telebot":["A @h $G @4 telegram bot ^S, powered by @Z","0.3.1"],"spirit-dipstick":["Automatic $H of dipstick backends",C[1]],"coyoneda":["Functor composition via @4 Co-Yoneda Lemma","0.5.2"],"ultra":["Cryptanalysis of @4 Engima.","0.6.1"],"enum-unitary":["Trait @5 @e @0 unitary enums","0.4.3"],"archiveis":["Archive websites online @u @4 archive.is capturing &t.",C[2]],"zeptohttpc":["minimal ^s @c @u &z @5 httparse $R","0.5.0"],"raui-ggez-renderer":["RAUI renderer @0 GGEZ game $a","0.38.2"],"google-vault1-cli":[C[67],C[382]],"@d_excel_writer":["@K Excel Writer","0.1.8"],"multistream-select":[C[826],"0.10.4"],"ockam_key_exchange_@F":["$8 Ockam Key Exchange $y.","0.28.0"],"sctp-sys":["Binding to libsctp @0 linux, @5 SctpDrv @0 windows. SctpDrv $W is experimental","0.0.7"],"usb-disk-probe":["@W a ^L $l $i can be $2 to probe @0 USB ^x &N in @4 @O.",C[0]],"commander":["$8 @q solution @0 @3 @D-$D interfaces",C[4]],"autocxx":[C[227],C[15]],"s3find":["A @D $D $w to walk an Amazon S3 hierarchy.s3find is an analog of find @0 Amazon S3.","0.7.2"],"coreutils_logger":["Logger $H @n on fern.","0.5.1"],"&Q_^S":["Defines a general purpose @x @0 various ^w $9",C[8]],"groestl-aesni":["Hardware-accelerated Groestl ^z @0 x86-64 systems @7 AES &p",C[1]],"futures-executor-preview":[C[984],C[19]],"update-ssh-keys":["A ^4 @0 managing authorized SSH keys","0.7.0"],"flakebi-ring":["A fork of ring to make some private $7 public.","0.16.15"],"graphql_@c":["Typed GraphQL requests @5 responses",C[13]],"sw-composite":["a $b of software compositing routines","0.7.14"],"sp-session":[C[276],"3.0.0"],"webp-dev":["@3 @6 to libwebp (plus related) @5 some other miscellaneous stuff.","0.4.1"],"lazy_mut":["@Q @8 @s a $V @l can be $2 to lazily initialized ^V as well as a @e @0 $Z lazy variables.",C[0]],"sidekiq":["@3 Sidekiq Client","0.9.1"],"easy-plugin-parsers":["Parsers $2 internally by @4 &x-$Y @8.","0.11.8"],"rosc":["An OSC @1 @0 @3","0.5.2"],"sha2raw":["SHA-2 ^z @Y","5.1.0"],"crndm_@b":["Persistent Programming @p $q ^o","0.1.1"],"gluon_language-server":["&R @U ^R completion @0 gluon",C[43]],"strerror":["A $c-@n ^q $l. No longer developed. Recommended replacement: Anyhow @5 Thiserror $R.","0.6.3"],"angle":["Angle @h to avoid ambiguous parameters + $u operation &6 angles $C wrapping, comparisons, arithmetic $B, trigonometric $B @5 conversions $t rad @5 deg.",C[2]],"safe-mix":["@v of @4 Collective Coin Flip $1","1.0.1"],"splitmut":["Safely retrieves &l mutable ^V @t @4 same $b.",C[5]],"sp-consensus-aura":[C[819],"0.9.0"],"rdp-rs":["A Pure RUST imlementation of Remote Desktop ^c",C[0]],"near-sdk-macros":[C[725],C[100]],"magic-school-bus":["Cross-@N TUI filesystem browser @7 Vi-$C keybinds","0.7.0"],"freeimage":["@3 idiomatic @6 @0 FreeImage",C[8]],"ram":["A @1 @l helps to parse source @V @7 finite state machines","7.0.3"],"fatfs":["FAT filesystem @1.","0.3.5"],"async-executor":["Async executor","1.4.1"],"sc-finality-grandpa-rpc":[C[684],"0.9.0"],"redis-protocol":["Structs @5 @y to implement @4 Redis @9.","3.0.1"],"embedded-triple":["Embed @4 target triple ^d @4 $Q",C[0]],"mqttrs":["Mqtt @9 $5 @5 ^P","0.4.1"],"cl-traits":["@W $3 @l describe &C","6.0.0"],"rusqlcipher":["Ergonomic @h @0 SQLCipher","0.14.9"],"dolores":["A calendar ^A $U on terminals",C[32]],"earwax":["Audio ^P @1 @0 @3 @n on ffmpeg","0.1.7"],"multipart-rfc7578":[C[761],"0.7.0"],"fake-tty":["Run @D @7 bash pretending to be a tty",C[3]],"gcp-bigquery-client":["An ergonomic @J @c @1 @0 GCP BigQuery.",C[13]],"diligent-date-parser":["@p @0 @R datetime in unknown @G","0.1.3"],"to_$y":["A $y @7 &P similar to .^d() @5 .try_into(), except they take $l arguments.","0.1.1"],"remutex":["Recursive mutex, adapted @t Rust's ^E @1","0.1.1"],"tp-keyring":[C[689],"2.0.2"],"pelite":["Lightweight, $g-$M, zero-allocation @1 @0 &3 @5 navigating PE binaries.","0.9.0"],"allegro_font":["Allegro 5 font addon @3 @h","0.0.41"],"secret_^L":["Convenient combination of secret-handshake @5 box-^L.",C[1]],"pkg":["A &7 $w @1 @0 $Q @P.","3.0.0"],"fil-blst":["A @1 to accelerate SNARK verification @0 @4 Filecoin ^9 @u @4 blst BLS12-381 $J @1.",C[4]],"reproto-derive":["Rethinking ^c GeneratorsDerives a reproto schema @t an existing ^k.","0.3.36"],"lpc55-pac":["Peripheral $X @x @0 NXP LPC55 $s",C[2]],"tsunami":["Toolkit @0 running short-lived jobs on cloud VMs",C[17]],"kafka-serde":["@M @5 &9 @0 @4 Kafka @9",C[0]],"acteur":["A $M actor-$C @k @l just works. @K, robust, $I, documented.","0.12.2"],"pshbullet_@c":["Unofficial Pushbullet @x @c.",C[5]],"i2cdev2":["@W @x @0 $M $X to &j i2c device interface.https://www.kernel.org/doc/Documentation/i2c/dev-@m",C[2]],"^x_zip":["Utility @y @1 @0 zipping Options @5 Results ^d tuples.","0.1.1"],"x11-dl":[C[390],"2.19.1"],"symphonia-codec-aac":["Pure @3 AAC decoder (a part of ^g Symphonia).",C[2]],"bugsalot":["Debugging @a @5 APIs @0 shipping stable codebases.",C[5]],"crushtool":["A @1 to encode @5 decode Ceph's crushmap","0.3.10"],"findomain":["$8 fastest @5 cross-@N subdomain enumerator, do not waste $r $z.","2.1.5"],"mpi-sys":[C[212],C[4]],"gfapi-sys":["@Q $R @s $L @6 @0 Gluster's @x","4.0.1"],"kbs2":["A secret &F backed by age",C[2]],"semtech-udp":["Semtech UDP @s @M @5 &9 of packets complying @7 @4 Semtech UDP @9","0.7.2"],"deno_fetch":["Fetch @x @2 @0 Deno","0.46.0"],"actix-telegram":["telegram bot ^S lib @n on actix",C[0]],"bevy_app":["@W @F App $7 @0 Bevy Engine","0.5.0"],"google-jwt-verify":["A @c to verify Google ^k &e tokens",C[1]],"louis":["Rusty @H to liblouis","0.6.2"],"swipl":["A high-@C @1 @0 $K SWI-Prolog &p @5 embedding SWI-Prolog in @f @P","0.3.5"],"container-pid":["Resolve container names to their PIDs",C[3]],"nav-types":["Easily work @7 global positions @5 vectors","0.5.1"],"^D":["$8 @X @s a ^D toolbox.","0.0.4"],"loopdev":["Setup @5 control loop &N",C[1]],"streaming-harness-hdrhist":["Deprecated in favour of &Y://crates.io/$R/hdrhist",C[2]],"fluence-it-types":["Definitions of IValue @5 IType","0.3.1"],"diskus":["A minimal, $I alternative to 'du -sh'.","0.6.0"],"pallet-aura":["FRAME AURA &A &v","3.0.0"],"boringtun":["an @2 of @4 WireGuard® @9 designed @0 portability @5 speed",C[1]],"tls-api":[C[369],"0.7.0"],"storage-proofs":["Implementations of Proofs of Storage","6.0.0"],"mimalloc":["Performance @5 security oriented drop-in ^l","0.1.26"],"glm_color":["A @d @1 @0 manipulating @5 $E color ^V, @n on @4 `glm-rs` math @1.",C[4]],"lz4_flex":["Fastest LZ4 @2 in @3, no unsafe by default.","0.9.0"],"sp-allocator":[C[20],"3.0.0"],"reqwest_cookie_store":["A @d @8 ^R an @2 of @4 `reqwest::cookie::CookieStore` $y @0 `cookie_store::CookieStore`",C[3]],"ic-agent":["Agent @1 to communicate @7 @4 Internet Computer, following @4 Public Specification.","0.9.0"],"nannou_osc":["$8 OSC @x @0 Nannou, @4 creative coding @k.",C[26]],"io-at":["Traits @0 Read @5 Write @7 offsets, @h @g & @F impls","0.4.1"],"infer_fs":["@K ^F to infer samplerate of a dataset.",C[1]],"solana-config-api":["config ^U @x","0.20.5"],"ili9341":["A @N &f ^j to @m @7 @4 ILI9341 (ald ILI9340C) TFT LCD display","0.5.0"],"sourcegen":["@Q @8 contains a $e @e to work together @7 \"sourcegen-^y\" @8.",C[1]],"deno_tls":["TLS @0 Deno",C[13]],"atlatl":["Double-array tries.",C[4]],"tether":["^6 @l are &e views.","0.3.5"],"fux_kdtree":["K-dimensional ^0 implemented in @3 @0 $I NN querying.",C[3]],"yy-typings":[C[73],"0.4.8"],"iced_wgpu":["A wgpu renderer @0 Iced",C[2]],"cobalt-bin":["Static site @B $A in @3","0.17.4"],"specs_transform":["transform 2d @5 3d component @0 specs","0.5.0"],"libpulse-sys":["$L @6 @0 @4 PulseAudio libpulse @O @1.","1.19.2"],"wireguard-uapi":["Control WireGuard interfaces.","2.0.1"],"emerald-cli":["Console $w @0 secure account ^A",C[88]],"lang-c":["Lightweight C @i",C[16]],"rustc-hash":["speed, non-^w ^z $2 in &K","1.1.0"],"build-fs-tree":["Generate a filesystem ^0 @t a @e or a YAML ^0",C[1]],"gl_loader":["@K OpenGL @Y pointer loader @n on Glad.",C[4]],"rs_ws281x":["Wrapper @0 ws281x @1 @u bindgen to track upstream","0.4.2"],"marine-it-generator":["Fluence Marine @m @g @B","0.5.6"],"chessground":["A chessboard widget @0 Relm/GTK",C[7]],"ncollide_math":[C[111],"0.9.1"],"readext":["Extensions @0 @4 ^E Read $y",C[0]],"tremor-common":["Tremor $u @y","0.11.10"],"kaguya_rs":["Functional Programming &1 @5 ADTs","0.1.5"],"db-dump":["@p @0 scripting analyses against crates.io's ^Q dumps",C[9]],"$P_elasticbeanstalk":["^r ^N @0 @3 - ^r Elastic Beanstalk @ 2010-12-01",C[27]],"opal":["hi",C[4]],"multiversion":["Easy @Y multiversioning","0.6.1"],"kvdb":["&W key-&5 $y",C[13]],"google-gan1_beta1-cli":[C[699],"2.0.4+20130205"],"dwm1001":["Board Support Crate @0 @4 Decawave DWM1001 ^F @5 &D board","0.5.0"],"bdwgc-alloc":["impl GlobalAlloc @0 bdwgc","0.6.0"],"gltf-importer":["Reference importer @0 @4 gltf @8",C[12]],"$6_yaml":["YAML @j @0 Serde","0.8.21"],"gstreamer-webrtc":["@3 @6 @0 GStreamer WebRTC @1","0.17.2"],"countmap":["@K map to count occurences of supplied keys",C[3]],"smtp2go":["SMTP2GO ^S @m @0 email sending","0.1.6"],"append-only":["Append only versions of std @w $k","0.0.1"],"disjoint-set":["A @2 of Tarjan's Union-Find Data Structure.","0.0.2"],"drone-stm32-map-pieces-6":[C[46],C[24]],"async-wakers":["A container to register @5 notify task wakers.","0.1.0-alpha.22"],"mp4parse":[C[807],C[28]],"oapi_@B":["Code @B @0 OpenAPI specifications","0.0.24"],"&V_env_logger":["A structured ^k logger @0 @3","0.1.1"],"k8-types":["Kubernetes Object Types",C[1]],"eb":["A @D executor exercising exponential backoff","0.5.0"],"orbterm":["$8 Orbital Terminal","0.3.6"],"puruspe":["Pure @3 Special @Y @1","0.1.5"],"wasm-gc-api":[C[37],C[38]],"&Z_vt100":["Utility to activate escape codes in ^6' CMD @5 PowerShell",C[4]],"emerald-rocksdb":[C[155],"100.0.0"],"treap":["Randomized treap @2","0.0.3"],"gurufocus_^S":["A @f adapter to @4 GuruFocus @x, a provider of financial @w.","0.4.2"],"wyhash":["@3 @2 of @4 WyHash $I portable non-^w hashing $1 @5 &L &a @B.","0.5.0"],"onig_@r":["$8 `onig_sys` @8 contains raw @f @6 to theoniguruma @1. @Q @8 exposes a set of unsafefunctions $i can then be $2 by other $R tocreate $M &r $G Oniguruma.You probably don't want to link to this @8 directly;instead check out @4 `onig` @8.","69.7.1"],"gcemeta":["@Q @1 @s $X to Google Compute Engine metadata &t.",C[8]],"battery-cli":["CLI ^4 @0 batteries reports","0.1.6"],"nyx":["Small no-std @2 of @4 TOTP $1.","2.1.1"],"zero85":["@3 @2 of ZeroMQ's base85 $1.",C[3]],"compiler-builtins-snapshot":["Snapshot of @4 ^2-builtins @8","0.1.20170127+764557f0b669bb0e28817c5ae70c9d718685e35a"],"proptest-quickcheck-interop":["@W an interoperability layer @0 reuse of quickcheck::Arbitrary impls in proptest","2.0.0"],"fisher":["Webhooks catcher $A in @3","1.0.0"],"jsonrpsee":["^k-RPC @8","0.4.1"],"quaint":["An $F layer @0 SQL databases.","0.2.0-alpha.13"],"tomllib":["A @G-preserving TOML $0 @i @5 manipulator",C[4]],"structenv_@b":[C[148],"0.0.1"],"factori":["A factory @1 @0 @3, &X by FactoryBot. 🤖","1.1.0"],"duct_sh":["a sub-@8 @0 @4 sh @Y, formerly in duct","0.13.5"],"lightproc":["Lightweight ^I $F @0 @3","0.3.5"],"$6_rustler":["Serde Serializer @5 Deserializer @0 Rustler NIFs",C[0]],"solana-jsonrpc-pubsub":[C[578],C[2]],"&t_world":["Discover services @t Hasicorp's consul",C[3]],"wasmonkey":["Patch a WASM object $0 to replace a set of exported @y @7 imported @y @t another @1",C[49]],"c2rust-macros":["$q @e @j @8 @0 C2Rust",C[23]],"rust-warrior":["Game @0 learning @3, &X by Ruby Warrior","0.9.3"],"core-futures-tls":["A libcore @h allowing @J/await to be $2 @t no_std $R","0.1.1"],"dsp":["Digital Signal Processing",C[12]],"profiling":[C[336],"1.0.3"],"linux-raw-sys":["Generated @6 @0 Linux's userspace @x","0.0.29"],"slice_queue":["@Q @1 @s an VecQueue @0 ^Z ^p @7 (byte-)slices",C[9]],"frappe":["Functional Reactive Programming @1 @0 @3","0.4.7"],"holochain_wasmer_guest":["&s guest @V","0.0.73"],"imgui-wgpu":["A wgpu render $N @0 imgui-rs.",C[43]],"configure":["Configuration ^A","0.1.1"],"@f_qt_$W_@B":["Generate @V to $j Qt @P @7 @3","0.3.6"],"escodegen":["AST @5 @V @B @0 a subset of ES5.","0.4.4"],"type-layout-derive":["&n @e @2 @0 $l-layout @8",C[3]],"pcsc-sys":["Low-@C @6 to @4 PC/SC C @x","1.2.0"],"dubp-documents":["Handles DUBP documents (DUBP: DUniter Blockhain ^c)","0.58.0"],"netlink-sys":["netlink sockets, @7 optional $T @7 $v","0.7.0"],"bevy_pbr":["Adds PBR &S to Bevy Engine","0.5.0"],"siren":["Your &E neighborhood monitoring CLI ^4.","1.3.1"],"gloo-timers":[C[14],C[5]],"@B":["Stackfull Generator @p in @3","0.7.0"],"fastrie":["Sequentialised $g-packed associative tries, buildable at compile $z, useful @0 longest prefix matching","0.0.6"],"num-format-windows":["A ^t @8 @0 num-@G. Do not $d directly.",C[1]],"cudnn-sys":[C[122],"0.0.3"],"sasl2-sys":["@H @0 Cyrus SASL.","0.1.14"],"the-way":["A @V snippets &F @0 $r $o","0.14.4"],"secp256k1-zkp":["@3 @6 @0 @4 `libsecp256k1-zkp` @1.",C[2]],"cson":["Reference @2 of Cursive Script Object Notation (CSON), a superset of ^k suitable @0 manual editing",C[60]],"google-language1":["A @q @1 to @o @7 Cloud Natural &R (@9 v1)",C[33]],"memory-lru":["A $g-@n @h $G @4 lru @8",C[0]],"muncher":["Easy to $d char muncher @0 $O a lexer.","0.7.0"],"pkcs1":["Pure @3 @2 of Public-Key Cryptography Standards (PKCS) #1:RSA Cryptography Specifications Version 2.2 (RFC 8017)","0.2.4"],"socket_addr":["Serialisable SocketAddr",C[0]],"ttrpc-compiler":["ttRPC ^2 @0 ttrpc",C[2]],"interoptopus_$N_csharp":["Generates C# @6.","0.13.6"],"android_looper-sys":["$L @H to &M Android Looper.",C[1]],"json-rpc-types":["Type $h @0 ^k-RPC","1.0.1"],"fractal-utils":["^e @0 ^p @7 Fractal Global Credits.","0.3.4"],"mockall":["A powerful mock object @1 @0 @3.","0.10.2"],"coil_^B_@e":["@Q @1 should not be $2 directly, it is re-exported through coil",C[1]],"finchers":["A combinator @1 @0 builidng $n ^s services","0.13.5"],"linked-hash-map":["A HashMap @h @l holds key-&5 pairs in insertion order","0.5.4"],"partitions":["A disjoint-sets/union-find @2 @l allows @0 ^Z iteration &6 elements of a set.","0.2.4"],"ss58-registry":["Registry of known SS58 address @g","1.2.0"],"gattii":["Cross @N GUI (GTK-@n) serial $o",C[15]],"impl-trait-for-tuples":["Attribute @e to implement a $y @0 tuples",C[5]],"navigation":["@W basic navigation $t GPS waypoints","0.1.7"],"noughts_@5_crosses_lib":["Game of tic tac toe","0.0.3"],"sdwd":["SystemD WatchDog $w @8","1.0.0"],"ra_ap_assists":["TBD","0.0.39"],"cognitive-graphics":["@K &1 related to hardware ^T",C[0]],"com_@a":["COM @8 @a","0.6.0"],"fluent-syntax":["&B/Serializer &1 @0 Fluent Syntax.",C[16]],"trayicon":["Tray Icon, @l thing in @4 corner","0.1.1"],"ic-cdk-optimizer":["WASM Optimizer @0 @4 IC CDK (experimental).",C[9]],"tiny-cid":[C[268],C[1]],"humanize-rs":["For @R human-readable $p to some @g.","0.1.5"],"dprint-plugin-markdown":["Markdown formatter @0 dprint.",C[16]],"byte_struct_@b":["&n @e @0 byte_struct","0.4.2"],"unsafe_unwrap":["Unsafely unwrap Result @5 Option @g ^Y checking.",C[0]],"tryhard":["Easily retry @Z",C[2]],"xdg-mime":["A @1 @0 loading @5 querying @4 XDG &J MIME ^Q","0.3.3"],"kernel":["Abstract Reactive Streams","1.1.0"],"pmac":["&W @2 of Parallelizable Message Authentication Code","0.6.0"],"ddcutil":["DDC/CI monitor $X via libddcutil","0.0.3"],"libatasmart-sys":["@3 @6 @0 @4 libatasmart @1",C[4]],"serialport":["A cross-@N low-@C serial port @1","4.0.1"],"pcd-rs":["Working @7 PCD $0 @G in @3",C[7]],"psutil":["Process @5 @O monitoring @1","3.2.1"],"treexml":["An XML ^0 @1 @0 @3","0.7.0"],"pwrs":["a pwgen $C $w @l generates passphrases","1.1.0"],"askama_escape":["Optimized HTML escaping @V, extracted @t Askama",C[12]],"comfy-table":["An &x to $d @1 @0 $K beautiful tables @7 automatic content wrapping","4.1.1"],"libdrm-sys":["&M @6 to @4 libdrm @1",C[5]],"deno_timers":["Timers @x @2 @0 Deno","0.21.0"],"bosonnlp":["BosonNLP ^N @0 @3","0.10.3"],"openblas-blas-provider":["BLAS/LAPACK provider @u @4 OpenBLAS @2","0.0.5"],"rocket-include-tera":["@Q is a @8 $i @s @a `tera_resources_initialize!` @5 `tera_response!` to statically include Tera @z @t $r @3 ^g @5 make them be @4 ^s response sources quickly.","0.5.0"],"lindera-core":["A morphological analysis @F @1.",C[7]],"evdev":["evdev @m @0 &j",C[17]],"stun":["A ^X @3 @2 of STUN",C[2]],"tink-gcpkms":[C[478],C[5]],"twasmi-validation":[C[1002],C[1]],"git_httpsable":["git via &Y.","1.0.1"],"ugli-raw":["Universal OpenGL Interface (Raw)",C[120]],"google-datastore1_beta3":["A @q @1 to @o @7 datastore (@9 v1beta3)",C[310]],"ansi-parser":["A @1 @u nom @0 @R ANSI Escape Codes",C[7]],"workerpool":["A &d pool @0 running a &a of jobs on a fixed set of stateful worker threads.","1.2.0"],"approveapi":["ApproveAPI @f @c.","1.0.3"],"fac":["$j ^4","0.5.4"],"underscore":["$w @1 @0 @f. Inspired by underscore.js.","0.0.2"],"&q_printer":["A recorder @0 @4 &q @1 @l prints metric ^V to an &Z in regular intervals.",C[0]],"$c_cache":["A $c interning @1 @0 @3, developed as part of @4 Servo ^g.","0.8.2"],"ux_$6":[C[149],C[3]],"env_proxy":["Determination of proxy parameters @0 a URL @t @4 ^K","0.4.1"],"levenshtein":["Levenshtein $1","1.0.5"],"cargo-sls-distribution":["A Cargo &i $i packages a $Q @8 ^d a ^m archive","0.4.5"],"ledcat":["Control lots of LED's &6 lots of protocols","0.1.5"],"vt100":["@p @0 @R $o @w",C[28]],"$P_glue":["^r ^N @0 @3 - ^r Glue @ 2017-03-31",C[27]],"k8-obj-core":["Core Kubernetes @x Objects","2.2.0"],"pug":["pug.js reimplemented in @f @0 speed",C[32]],"tuple_list":["Crate @0 @e-free variadic tuple metaprogramming","0.1.3"],"holochain_&s_^u":["holochain &s ^u",C[18]],"fabric-executive":["FABRIC executives $a","2.0.0"],"buf":["Read buffer","0.2.3"],"ruma-identifiers":["Resource identifiers @0 Matrix.",C[42]],"type-name":["A $M @h $G @4 type_name @x.",C[0]],"fcgi":["@3 @6 @0 $I-cgi","0.0.2"],"task-compat":["Utility @8 to compat @Z 0.1 @5 @Z 0.3 tasks.",C[0]],"regex":["An @2 of regular expressions @0 @3. @Q @2 usesfinite automata @5 guarantees linear $z matching on all inputs.","1.5.4"],"ordered-float":["Wrappers @0 total ordering on floats","2.8.0"],"mysql_$u":["MySql @9 $9","0.27.5"],"lapacke-sys":["$8 @X @s @6 to LAPACKE (C).","0.1.4"],"microbit":["Board @j @8 @0 @4 BBC Micro:bit V1",C[16]],"spiral":["Iterate &6 a 2D $V in a spiral pattern","0.1.9"],"@J_io_^L":["IntoAsyncRead on steriods",C[9]],"rcublas":["$M @3 @h @0 CUDA's cuBLAS","0.5.0"],"i2p_snow":["A ^X-@f @2 of @4 Noise ^c Framework, @7 I2P Noise &p","0.5.1"],"wasmtime-fiber":["Fiber @j @0 Wasmtime",C[53]],"org-tangle-engine":["A faster way to tangle org-mode.- @4 $a of @4 commend $D ^4.","0.1.9"],"interledger-service-util":["Small, commonly $2 Interledger services @l don't really fit anywhere else",C[2]],"noise-rust-crypto":["Wrappers of dalek @5 RustCrypto $R @0 noise-@9","0.4.1"],"guile-sys":["Low-@C @6 to GNU Guile.","0.1.1"],"slog-gelf":["GELF drain @0 slog",C[4]],"splines":["Spline interpolation made &x","4.0.3"],"flac":["An @2 of FLAC (free lossless audio codec)","0.5.0"],"dyn_bitmap":["Dynamically sized ^O bitmap @2.",C[9]],"bar":["status bar","0.1.1"],"google-replicapoolupdater1_beta1":[C[283],"2.0.8+20161003"],"structdoc":["Extract $V @5 documentation @t &o","0.1.4"],"monoid":["A @X ^R some $u monoids @0 $d in @3","0.0.5"],"http-serde":["Serde @j @0 @4 &z @8. (De)serialize HeaderMap, Uri, Method, StatusCode","1.0.3"],"qoqo_calculator_pyo3":["Python @m to qoqo calculator, @4 calculator $N of @4 qoqo quantum computing toolkit by HQS Quantum Simulations",C[2]],"winscard-sys":["$L @6 to winscard. @Q @8 is a placeholder @0 @4 future. If you are interested in this @1 feel free to get in touch @7 me: &z://www.rustaceans.org/retep998","0.0.1"],"nl80211":["Send commands to nl80211 @5 receive &y","0.0.2"],"rdxsort":["Fast Radix Sort",C[1]],"trim-in-place":["In-place trimming $p.","0.1.6"],"idmap":["Efficient maps of integer id keys to ^V, backed by an underlying `Vec`","0.2.21"],"bm":["Binary Merkle Trie",C[16]],"grcov":["@3 ^4 to collect @5 aggregate @V coverage @w @0 &l source @z","0.8.2"],"kagura":["Frontend frame-work @0 &s on @3.",C[84]],"build-deps":["@3 $j-script &c @B @0 @w/IDL @z","0.1.4"],"ga":["Genetic $1 $3 @5 $1","0.1.4"],"sharp_pencil":["A micro &e @k @0 @3. (A Pencil fork)","0.6.0"],"ptrace":["@3 @6 @0 @4 POSIX ptrace @x",C[4]],"caper":["Minimalist game @k",C[15]],"jsl":["^k Schema &R validator @5 @E.","0.3.1"],"debugless-unwrap":["Unwrap Result @5 Option","0.0.4"],"@d_ecs":[C[159],C[9]],"xed-sys":["@3 $L @6 @0 Intel XED.",C[2]],"futures-util-preview":[C[711],C[19]],"wikipedia":["Access wikipedia articles @t @3","0.3.4"],"audiotags":["Unified IO @0 different @g of audio metadata","0.2.7182"],"near-primitives":["@Q @8 @s @4 base set of $9 $2 by other nearcore $R",C[396]],"snarkvm-dpc":["DPC @0 a decentralized virtual machine","0.7.9"],"v8":[C[322],"0.31.0"],"cw2":["Definition @5 @g @0 @4 CosmWasm-2 @m",C[12]],"enum-utils":["A set of useful ^B @a @0 enums",C[4]],"kwarg_@a":["Keyword argument $Y","0.0.6"],"lightspeed_cache":[C[209],"0.40.1"],"validator":["&O validation @y (email, url, length, ...) @5 $y - to be $2 @7 `validator_derive`",C[24]],"sc-network":["Substrate ^9 @9","0.9.0"],"dockworker":["Docker daemon @x @c. (a fork of Faraday's boondock)","0.0.23"],"mktemp":["mktemp @z @5 directories","0.4.1"],"paste":["^o @0 all $r token pasting needs","1.0.5"],"@b_state_machine_future":["Custom @b @2 @0 @4 `state_machine_future` @8. Use thatcrate instead of this one directly.",C[3]],"nakadion":["Types @0 &2 @7 @4 Nakadi Event Broker","0.29.2"],"bayer":["Algorithms @0 demosaicing Bayer images.","0.1.5"],"gsbrs":["@W a @c @0 @4 Google Safe Browsing Lookup @x","0.7.1"],"tectonic_pdf_io":["Xdvipdfmx’s PDF, XDV, @5 image I/O APIs in C, as a @3 @8.",C[4]],"prefix-map":["A $b @0 $Z prefix maps.","0.3.1"],"async-diesel":["Integrate Diesel ^d @J-std cleanly @5 efficiently.",C[0]],"im-rc":["Immutable $b datatypes (@4 $I but not &d $M $4)","15.0.0"],"rolling-stats":["Rolling statistics calculations (min/max/mean/std_dev) &6 arbitrary floating point ^M @n on Welford's Online Algorithm",C[2]],"tcp-loop":["a TCP event loop @n on mio","0.1.1"],"thrussh-config":["^e to parse .ssh/config @z, including &w to implement ProxyCommand in Thrussh.","0.6.0"],"pentest-toolbox":["@Q is a pentest ^7 @X","0.1.14"],"tp-allocator":[C[20],"2.1.2"],"lapin-futures-native-tls":["Integration of &8-tls @7 lapin-@Z",C[12]],"wasmer-emscripten":["Emscripten @2 @1 @0 Wasmer $x @I","2.0.0"],"lcov-util":["Utility commands to operate @5 analyze LCOV trace $0 at blazingly $I.","0.1.6"],"minimax":["&W @T of Minimax.",C[3]],"artnet_@9":["A 1:1 @2 of @4 ArtNet @9",C[1]],"mdbook-epub":["An EPUB renderer @0 mdbook.",C[1]],"macaddr":["MAC address @g","1.0.1"],"openal-sys":["$L @6 to OpenAL","1.16.0"],"google-cloudmonitoring2_beta2":[C[517],"2.0.8+20170501"],"av-ivf":["IVF muxer @5 demuxer",C[8]],"efi-loadopt":["UEFI load option (EFI_LOAD_OPTION) ^P",C[0]],"raur-ext":["Extension to raur, giving caching @5 request splitting","2.0.2"],"&5_@t_$l_@a":["Implement enum (@5 cast &P) @0 a set of struct @g","1.0.6"],"amethyst_window":["Windowing @j @0 Amethyst $a.",C[99]],"aud":["A minimal @2 of Sagas","0.1.3"],"jql":["A ^k query @L CLI ^4","3.0.2"],"insideout":["Wrap composed @g inside-out (eg. `Result, E>` or `Option>`",C[3]],"signalo_filters":["A $b of filters $2 in 'signalo' umbrella @8.","0.6.0"],"sgx_tkey_exchange":[C[21],"1.1.1"],"macroquad-platformer":["Platformer physics @0 macroquad",C[4]],"stm32l4x6":["Memory map @0 STM32L4x6 $s","0.6.0"],"ra_ap_ide_ssr":[C[22],"0.0.79"],"positioned-io":[C[961],C[8]],"egui-miniquad":["@H $t egui @5 miniquad","0.7.0"],"id_^0":["A @1 @0 $Z @5 modifying Tree $k.","1.8.0"],"recycler":["A &7 @3 @1 @0 recycling @g containing owned $g","0.1.4"],"xxhash-c-sys":["@H to xxhash","0.8.1"],"froggy":["Froggy is a prototype @0 @4 Component Graph System $m model.It aims to combine @4 convenience of composition-style Object-Oriented Programmingwith @4 $J close to Entity-Component Systems.","0.4.4"],"wfst":["An @2 of Weighted Finite-State Transducers (WFSTs) as described in:Mehryar Mohri, Fernando Pereira, @5 Michael Riley. \"$8 design principles of a weighted finite-state transducer @1,\" In: Theoretical Computer Science vol. 231 issue 1 (2000): pp. 17-32.","0.6.0"],"image-watcher":["A @d CLI ^4.","0.0.23"],"fastping-rs":["ICMP ping @1 @0 quickly sending @5 measuring batches of ICMP ECHO REQUEST packets.","0.2.3"],"eth2_ssz_@b":["$q @b @a to accompany @4 eth2_ssz @8.",C[5]],"lua":["@H to Lua 5.3","0.0.10"],"socksv5_future":["Socks v5 @Z @0 Server @5 Client","0.2.5"],"stream-vbyte":["Encode @5 decode ^M in @4 Stream VByte @G",C[9]],"scope-threadpool":["Renamed to \"pond\"","0.3.1"],"conjecture":["Core $a @0 Hypothesis @T","0.7.0"],"identicon-rs":["identicon-rs is a @1 built $G custom ^1 of identicon images.","2.0.2"],"lapin-async":["AMQP @c @1 @7 a low @C @x designed @0 $d @7 mio","0.22.1"],"fluence-fork-libp2p-mdns":[C[469],C[98]],"random-access-storage":["Abstract @m to implement &L-$X instances.","4.0.0"],"unborrow":["Macro @0 calling a &mut self method @7 transient &-borrows of self in @4 parameters","0.3.1"],"twapi-reqwest":["Twitter OAuth @1 $2 by reqwest.",C[8]],"pact_mock_@U_^y":["Standalone pact mock @U @0 consumer pact tests","0.7.6"],"openzwave-sys":["$L @p to @4 opensource OpenZwave @1","0.1.1"],"webrtc-ice":["A ^X @3 @2 of ICE","0.5.0"],"eagre-asn1":["A asn1 @1, currently only supporting DER",C[1]],"net2":["Extensions to @4 ^E library's networking @g as proposed in RFC 1158.","0.2.37"],"ttcore_def":[C[35],"0.2.35"],"soup-sys":["Soup $L @8 @0 @3",C[13]],"libc-print":["println! @5 eprintln! @a on libc ^Y stdlib","0.1.17"],"yarte_html":["Markup @i",C[23]],"kurobako_@F":["Core @8 @0 `kurobako`",C[38]],"modtype_@b":[C[109],"0.7.0"],"stm32f4":["Device @j $R @0 STM32F4 &N",C[24]],"webrtc-sdp":["@Q create parses $p in @4 @G of @4 Session Description ^c according to RFC4566. It specifically supports @4 subset of features required to @j WebRTC according to @4 JSEP draft.","0.3.8"],"postgres_large_object":["Large object @j @0 @f-postgres","0.7.1"],"s3lsio":["S3lsio is a @D $D $w @0 ^r S3 $B. It @j V2 @5 V4 signatures. It also does benchmarking @0 S3.It can be $2 in scripts, called @t other apps, cron etc. It's driven by ^k @5 can return @w in ^k. It can alsobe $2 to keep buckets in sync. It also performs Ceph RGW Admin features @0 those familiar @7 Ceph.Install: [Cargo install s3lsio] OR download at &z://www.lambdastack.io/s3lsioFor help just run @4 ^y: [s3lsio -h]","0.1.21"],"base64-compat":["encodes @5 decodes base64 as bytes or utf8 - ^i @7 older @3 versions","1.0.0"],"atoms":["S-expression @i @5 pretty-printer.","2.2.3"],"vswhom-sys":["Pure $L to Jon Blow's VS discovery script",C[0]],"wasmer-singlepass-backend-near":[C[270],"0.18.1"],"slice-group-by":["Iterators &6 groups in a slice",C[1]],"async-socks5":["An @J/.await SOCKS5 @2","0.5.0"],"g2poly":["Primitive @2 of polynomials &6 @4 field GF(2)",C[2]],"pnet_datalink_bandwhich_fork":[C[364],"0.23.1"],"sval_@b":["Custom @b @0 sval",C[299]],"suricata-ipc":["@p @0 sending packets to suricata @5 receiving &Z.",C[95]],"tilde-expand":["perform shell-style tilde expansion of home directories in paths","0.1.1"],"marine-module-interface":["Fluence Marine ^F @m","0.1.6"],"rustc-artifacts":["Access lists of published &K artifacts",C[8]],"auto_@t":["^W implement std::convert::From @0 enum variants @7 single fields",C[1]],"soloud-sys":[C[480],"1.0.0"],"noble-mmr":["FABRIC Merkle Mountain Range noble.","2.0.0"],"doku":["A @k @0 $K documentation",C[12]],"indradb":["A graph ^Q @U","2.1.0"],"@b_dumb":["&n `Dumb` generates a $V in $i all fields are public. Original $V can be converted @u @Y call `dumb`.","0.1.4"],"@I":["[deprecated] Empowering everyone to $j $n software.",C[542]],"rust-libcore":["Libcore wrapped ^d @S @X, suitable @0 cross-builds","0.0.3"],"lsp-codec":["@K Tokio-^i codec @2 @0 &R Server ^c.",C[1]],"readwrite":["Combine Read @5 Write ^d a single Read+Write object",C[3]],"libnghttp2-sys":["$L @6 @0 libnghttp2 (nghttp2)","0.1.7+1.45.0"],"datadog-apm-sync":["Datadog APM-^i tracer @5 logger @0 @3","0.4.4"],"wgpu-core":["WebGPU @F logic on wgpu-hal","0.11.2"],"spinny":["Spinlock-@n RwLock struct, @7 lock_api",C[8]],"zcash-vanity":["Zcash vanity address @B.","0.2.9"],"getopts":["getopts-$C option @R.","0.2.21"],"enum-iterator":["Tools to iterate &6 @4 variants of a field-less enum","0.7.0"],"industrial-io":["&j Industrial I/O (IIO) Support",C[1]],"bele":["Big-Endian Little-Endian",C[7]],"mpfr":["High-@C @6 to MPFR @1","0.0.8"],"ipopt-sys":["Raw unsafe @3 @6 to @4 Ipopt non-linear optimization @1.","0.5.5"],"openssl-sys-extras":["Extra $L @6 to OpenSSL @l require a C shim","0.7.14"],"async-compat":["Compatibility adapter $t $v @5 @Z",C[5]],"snarkvm-errors":["Errors @0 a decentralized virtual machine","0.0.6"],"dotenv_^H_impl":[C[25],C[0]],"namaste":["@K locks $t processes",C[26]],"fse_dump":["Dumps @4 fseventsd entries @t a mac","1.0.11"],"stm32l432xx-hal":["Hardware $F layer @0 @4 stm32l432xx chips","0.2.7"],"cpuprofiler":["@H to google's cpu profiler","0.0.4"],"rs_osrm":["@f @h @0 osrm","1.0.11"],"exar":["Exar DB's @F event store $a @7 streaming @j",C[0]],"mpmc-scheduler":["multi-mpmc, cancellable, scheduler @7 rate limiting","0.3.1"],"showata":["A @1 of to show @w (in browser, evcxr_jupyter) as table, chart...",C[9]],"amethyst_input":["Input rebinding",C[99]],"nonempty":["Correct by construction non-empty vector","0.7.0"],"type-uuid":["Safe, stable IDs @0 @3 @g",C[4]],"$P_waf":["^r ^N @0 @3 - ^r WAF @ 2015-08-24",C[27]],"nereon":["Riboseinc $H @1 @0 @3","0.6.0"],"ethnum":["256-bit unsigned integer @2","1.0.3"],"rdiff":["A @1 @0 tracking changes to a $0 &6 $z",C[4]],"copypasta":["copypasta is a cross-@N @1 @0 getting @5 setting @4 contents of @4 OS-@C clipboard.","0.7.1"],"v_hist":["A really quick way to make histograms @l fix @4 $o",C[4]],"ophelia-hasher":["ophelia hasher $y",C[3]],"glsl-layout":["@W @w @g @5 $3 to $j $k ready to upload ^d UBO.",C[2]],"digits":["Custom “numeric” incrementor ^Y u64 MAX limit in size. Like a score flipper @0 a custom character set.","1.1.0"],"kserd":["Kurt's Self-Explanatory @3 Data","0.5.0"],"aesni":[C[118],C[979]],"posthog-rs":["An unofficial @3 @c @0 Posthog (&Y://posthog.com/).",C[8]],"ilog2":["Integer logarithm @1 including some bit $B.",C[8]],"threadbound":["Make any &5 Sync but only available on its original &d.",C[4]],"rtnetlink":["manipulate linux networking resources via netlink","0.8.1"],"deno_net":["Networking @0 Deno",C[23]],"debug_stub_@b":["A drop-in replacement @0 `#[@b(Debug)]` @l supports replacement ^V @0 members $i do not implement `fmt::Debug.`",C[1]],"$P_waf_regional":["^r ^N @0 @3 - ^r WAF Regional @ 2016-11-28",C[27]],"anybar_rs":["A @3 $U @0 controlling Anybar 0.2.3","1.0.14"],"chromiumoxide_@g":["Contains @4 essential @g necessary @0 @u chromiumoxide","0.3.1"],"blip_buf-sys":["$L @6 to blip_buf.c","0.1.4"],"byte-tools":["Bytes related $w @y","0.3.1"],"mitrid_@F":["Core @1 of @4 Mitrid @k","0.9.4"],"polylabel_cmd":["A @D-$D $w @0 finding optimum polygon label positions","1.4.0"],"raw-string":["RawStr/RawString are $C str/String, but ^Y any guaranteed $5","0.3.5"],"libtool":["$j script ^t to automatically ^n libtool convenience @1 (.la) @z.","0.1.1"],"matches2":[C[45],"1.2.1"],"pelite-macros":["Implements $e @a @0 @4 pelite @8.","0.1.1"],"proc-macro-error":["Almost drop-in replacement to panics in ^B-@a","1.0.4"],"liquid-lib":[C[87],C[88]],"wiremock":["^s mocking to ^7 @3 @P.","0.5.7"],"semval":["Semantic validation","0.1.8"],"tugger-file-manifest":["Interact @7 lists of @z through a ^x-&f @m","0.6.0"],"matplotrust":["A @d wrap $G Python's matplotlib.","0.1.7"],"ethers":["Complete Ethereum @1 @5 wallet @2 in @3.","0.5.4"],"rcat":["Concatenate @5 print @z in a @3 byte slice ^i @G.","2.0.4"],"meval":["A @d math expression @i @5 evaluator.",C[3]],"gazetta":["A &k site @B framework.If you want to $d or extend gazetta, see @4 gazetta-bin @8.",C[1]],"glpk-sys":["GLPK @6 @0 @3.",C[3]],"rubefunge-93":["A @d toy Befunge interpreter.","0.0.3"],"coins-ledger":["Ledger Nano X/S connection @5 communication ^A @1","0.4.2"],"sc-proposer-metrics":["Basic &q @0 block production.","0.9.0"],"twapi-ureq":["Twitter OAuth @1 $2 by ureq.",C[5]],"hina":[":].","0.1.3"],"rustli":["Rustli is a minimal @3 @1 to talk to Restli servers &Y://github.com/linkedin/rest.liand to reason about PDSC schemas.This is personal ^g.",C[2]],"@f_sodium_holochain_fork":[C[244],"0.10.2"],"jsonrpc-client-transports":[C[476],"18.0.0"],"sc-consensus-uncles":[C[277],"0.9.0"],"legion":[C[162],C[2]],"partial-min-max":["`min` @5 `max` @y @l work @7 `PartialOrd`.",C[2]],"ergo_std":["items @l could be in @4 ^E @1, part of @4 ergo ecosystem","0.0.3"],"find-crate":["Find @4 @8 name @t @4 current Cargo.toml.","0.6.3"],"vec_map":["A @d map @n on a vector @0 &7 integer keys","0.8.2"],"evcxr_jupyter":["An Jupyter Kernel @0 @3",C[28]],"dicom":["A ^X @3 @2 of @4 DICOM ^E",C[2]],"alfred-rs":["Write Alfred workflows easily.https://www.alfredapp.com","0.6.0"],"rbspy-testdata":["Test @w @0 rbspy",C[4]],"stack-buf":["Vector-$C facade @0 arrays allocated entirely on @4 stack.","0.1.6"],"bdk-testutils":["Supporting $S @E @0 `bdk`",C[2]],"iced_style":["$8 default set of styles of Iced",C[1]],"openapi_$l":["OpenAPI $l $f @0 @3 &o @5 enums","0.2.3"],"intecture-auth":["Authentication @0 Intecture infrastructure. Intecture is @4 developer &E, multi-lingual $H ^A ^4.",C[4]],"swf-types":["Type $h @0 @4 SWF $0 @G",C[15]],"rtcp":["A ^X @3 @2 of RTCP","0.6.0"],"td_rredis":["redis @h @0 @3, @j cluster",C[4]],"xenforeignmemory-sys":["@3 @6 @0 xenforeignmemory @1",C[0]],"vect":["A @1 @0 ^R vectors @0 game &D @l $d a Unity-$C @x.","2.0.0"],"google-cloudbuild1":["A @q @1 to @o @7 Cloud Build (@9 v1)",C[65]],"rdf":["rdf is a @1 @0 @4 Resource Description Framework (RDF) @5 SPARQL implemented in @3.","0.1.4"],"unic-langid-macros":[C[29],"0.9.0"],"ambient-authority":["Ambient Authority","0.0.1"],"serde-encrypted-value":["A Serde Deserializer @h $i transparently decrypts encrypted ^V","0.4.3"],"tokio-io":["Core I/O $9 @0 $n I/O in @3.",C[30]],"simulacrum_@a":["^o to simplify $Z mock objects @7 Simulacrum.","0.3.1"],"iter_num_&1":["Create @d iterators &6 non integer ranges. itertools + num = iter_num_tools","0.6.1"],"neon-serde":["Easily serialize object @0 $d @7 neon",C[2]],"unic-locale-impl":[C[31],"0.9.0"],"rustspec":["BDD style ^7 @1",C[60]],"archery":["Abstract &6 @4 atomicity of reference-counting pointers",C[2]],"bastion-qutex":[C[622],"0.2.4"],"minisketch-rs":["@3 @m to Pieter Wuille's minisketch @1 @0 ^Z set reconciliation","0.1.9"],"cargo-make":["@3 task runner @5 $j ^4.","0.35.5"],"kinito":["[Alpha] Mobile @k & $j &1 @0 Android / iOS","0.1.5"],"spsc-buffer":["Single-producer single-consumer lock-free buffer","0.1.1"],"aster":["A libsyntax ast &I","0.41.0"],"lazy-regex":["lazy &k regular expressions checked at compile $z","2.2.2"],"hdf5-sys":["&M @6 to @4 HDF5 @1.",C[7]],"cocaine":["Cocaine Framework @3","0.9.2"],"dacite-winit":["Interoperability @1 @0 dacite @5 winit @0 &x Vulkan surface creation","0.7.0"],"termbox-sys":["Low @C @6 @0 @4 termbox @1","0.2.12"],"dns-lookup":["A @d dns resolving ^S, much $C rust's unstable ^S. Also includes getaddrinfo @5 getnameinfo &r @0 libc variants.","1.0.8"],"fs-err":["A drop-in replacement @0 std::fs @7 more helpful ^q &y.","2.6.0"],"cli-timer":["Program $2 to set a timer.","0.3.84"],"xhypervisor":[C[40],"0.0.12"],"boolean-enums":["Generate enums @7 Yes @5 No variants. Supports no_std @5 $6.","0.3.4"],"bigdecimal":[C[142],C[1]],"exonum_leveldb":[C[813],"0.9.1"],"instant-distance":["Fast minimal @2 of HNSW maps @0 approximate nearest neighbors searches","0.5.0"],"wasmer-wasi-fl":["Wasmer @I WASI @2 @1","0.17.1"],"spsc-bip-buffer":["A concurrent, spsc ring-buffer @7 sized reservations",C[5]],"lcat":["Another lolcat in @f! Full unicode @j, escapes @0 ANSI escape sequences, hue shift in Cubehelix.","0.7.4"],"forecast_io":["An unofficial @3 @h @0 @4 forecast.io @x.",C[2]],"mashup-impl":[C[233],C[234]],"inventory-impl":["@v of @a @0 @4 `inventory` @8",C[32]],"read-byte-slice":["An iterator &6 chunks of bytes as slices @t an underlying reader.",C[4]],"ht":["Yet another HTTPie clone","0.6.1"],"tiny-keccak":["An @2 of Keccak derived @y.","2.0.2"],"ark-api-macros":["^o @E @0 Ark @x","0.8.1"],"selinux":["Flexible Mandatory Access Control @0 &j","0.2.5"],"genevo":["genevo @s $K blocks to run simulations of optimization @5 search problems usinggenetic ^3 (GA).Execute genetic $1 (GA) simulations in a customizable @5 extensible way.","0.5.0"],"pmdk-sys":["$L @6 to pmdk","0.9.4"],"transformable_channels":["@3 channels are a convenient $F, but @0 many uses cases, they miss high-@C transformations such as `map`, `filter`, ... . @Q @8 introduces them.","0.1.1"],"hmac-drbg":["Pure @3 @2 of Hmac DRBG.",C[1]],"rendy-util":[C[127],"0.4.1"],"tmq":["ZeroMQ @6 @0 Tokio",C[1]],"preserves":["@v of @4 Preserves @M @G via $6.","2.2.0"],"nbt":["A low @C NBT (named $Q tags) encoder @5 decoder @1",C[4]],"gba":["A @8 @0 making GBA games @7 @3.",C[2]],"question":["Ask a question, what more could you want?",C[8]],"dashmap":["Blazing $I concurrent HashMap @0 @3.","4.0.2"],"rpi-mailbox":["An @m of @4 `mailbox` $i is a low @C @m of @4 RaspberryPi.",C[3]],"&V_comments":["@p to strip comments @t ^k before @R",C[3]],"stdweb-internal-test-macro":["Internal @8 of @4 `stdweb` @8","0.1.1"],"eventsource-client":["Client @0 @4 Server-Sent Events @9 (aka EventSource)","0.7.0"],"link-ippcv":["link ippcv @1 (part of ipp-@r Intel IPP @6)",C[4]],"hamcrest2":["A port of @4 Hamcrest $S @1. Fork of originalhamcrest-@f ($i is unmaintained) @7 extra matchers, better docs etc.",C[1]],"lexical-write-integer":["Efficient formatting of integers to $p.",C[7]],"$6_@7":["Custom de/@M @y @0 Rust's $6","1.11.0"],"yew-router":["A router @2 @0 @4 Yew @k",C[23]],"sc-authority-discovery":["Substrate authority discovery.","0.9.0"],"marc":["Reader @5 &I @0 MARC 21 Bibliographic @G","2.0.0"],"google-texttospeech1":["A @q @1 to @o @7 Texttospeech (@9 v1)",C[33]],"odds":["Odds @5 ends — $b miscellania. Extra $7 @0 slices (`.find()`, `RevSlice`), $p @5 other things. Things in odds may move to more appropriate $R if we find them.",C[2]],"kv-log-macro":["Log @e @0 log's kv-unstable $N.","1.0.7"],"binfarce":["Extremely minimal @i @0 ELF, Mach-O, PE @5 ar.",C[5]],"tofu":["Trust On First Use ^t @V",C[38]],"ckb-testtool":["CKB contract $S &1","0.6.1"],"cidr":["IP ^9 @5 IP host within ^9 @g",C[5]],"stronghold-runtime":["Runtime @5 allocation $9 @0 stronghold",C[1]],"specs-physics":["nphysics $T @0 @4 Specs entity component @O",C[1]],"nut":["Bolt DB Port in @3",C[0]],"alexa":["A @1 @0 $K Alexa (Amazon Echo) skills",C[4]],"boolector-sys":["Low-@C @6 @0 @4 Boolector SMT solver","0.6.3"],"substrate-frame-rpc-system":["FRAME's @O exposed &6 Substrate RPC","3.0.0"],"google-groupssettings1-cli":[C[406],C[34]],"kingslayer":["A ^D adventure dungeon crawler game $A in @3","0.5.4"],"wig":["$x Interface Generator","0.21.0"],"solana-stake-program":["Solana Stake ^U","1.8.1"],"parry3d":["3 dimensional collision detection @1 in @3.","0.7.1"],"skulpin-renderer":["A vulkan renderer @0 skia, a component of skulpin",C[24]],"git":["Use @4 git2 @X instead.",C[1]],"librpm-sys":["RPM Package Manager @1 $L @6 (librpm.so)","0.1.1"],"bit-set":["A set of bits","0.5.2"],"temp_utp":[C[554],"0.8.1"],"servo-websocket":[C[580],"0.21.1"],"simba":["SIMD algebra @0 @3","0.6.0"],"sh1106":["I2C/SPI ^j @0 @4 SH1106 OLED display controller",C[2]],"bdflib":["A @1 to parse bdf @z.","0.4.4"],"aerosol":["Dependency injection @7 compile-$z guarantees",C[1]],"async-tls":[C[1059],C[16]],"ttcore":[C[35],"0.2.35"],"slog-stdlog":["`log` @8 adapter @0 slog-rs","4.1.0"],"@f_keylock_shell":["Shell $X to @4 @f-keylock. @f-keylock is a password &F @7 goals to be Secure, @K to $d, Portable @5 Extensible.",C[24]],"drone-core-macros":["$q @a @0 drone-@F.","0.14.3"],"ucontext":["glibc's ucontext $W @0 @f","0.0.5"],"blindsign":["A @X @0 $Z blind signatures cryptography ECC","0.0.6"],"multi-consumer-stream":["@W a handle to streams, allowing &l different tasks to read @t @4 same underlying ^L.",C[2]],"huffman":["Huffman is a @1 to decode huffman-encoded @w.","0.0.3"],"screenruster-saver":["@3 @x @0 ScreenRuster.",C[8]],"termize":[C[401],"0.1.1"],"sp-npos-elections-compact":[C[374],"3.0.0"],"rust-lcm-codec":["@3 @j @0 &3 @5 $O @4 LCM @w @G",C[5]],"goauth":["Crate @0 authenticating Server to Server Apps @0 Google Cloud Engine.",C[13]],"dinghy":["Painless tests on mobile &N","0.2.16"],"amp":["A @q ^D editor @0 $r $o.","0.6.2"],"scratchpad":["Stack-$C $g ^l @7 double-ended allocation @j","1.3.1"],"sp-timestamp":["Substrate @F @g @5 inherents @0 timestamps.","3.0.0"],"spl-associated-token-account":["Solana Program @p Associated Token Account","1.0.3"],"threshold_&Q":[C[36],C[2]],"octorust":["A fully ^8 & opinionated @x @c @0 @4 GitHub @x.","0.1.33"],"$P_marketplace_entitlement":["^r ^N @0 @3 - ^r Marketplace Entitlement Service @ 2017-01-11",C[27]],"wasmtime-wast":["wast $S @j @0 wasmtime",C[53]],"ctap_hmac":["A @3 @2 of @4 FIDO2 CTAP @9, including @4 HMAC ^h","0.4.5"],"oxygengine-backend-web":["Web $N ^F @0 Oxygen Engine",C[42]],"covet":["CLI @5 &e frontend @0 scanning @7 HP Envy printer / scanners","1.2.0"],"actix-rt":["Tokio-@n single-threaded @J @I @0 @4 Actix ecosystem","2.3.0"],"git2":["@H to libgit2 @0 interoperating @7 git repositories. @Q @1 isboth threadsafe @5 $g $M @5 allows both &3 @5 $O gitrepositories.","0.13.23"],"matrix_display":["A @1 to display a matrix in @D $D @7 pretty unicode separators","1.0.0"],"cw-multi-test":["Test &w @0 multi-contract interactions",C[12]],"natsio":["Deprecated in favor of @4 nats @8","0.4.1"],"utf8-width":["To determine @4 width of a UTF-8 character by ^R its first byte.","0.1.5"],"$P_gamelift":["^r ^N @0 @3 - Amazon GameLift @ 2015-10-01",C[27]],"msoffice_pptx":["pptx $0 @G deserializer",C[5]],"rust-sqlite":["Rustic @6 @0 sqlite3",C[1]],"usbd-hid-macros":["Internal @8: contains $e @a @0 HID descriptors. Use @4 `usbd-hid` @8 instead, these @a are re-exported there.","0.5.2"],"rs-graph":["A @1 @0 graph ^3 @5 combinatorial optimization","0.20.1"],"tetsy-wasm-gc-api":[C[37],C[38]],"intl-memoizer":["A memoizer specifically tailored @0 storing lazy-initializedintl formatters.","0.5.1"],"cairo-sys":["Cairo @6 @0 @3.","0.0.2"],"rustpython-vm":["@3 Python virtual machine.",C[4]],"^E_paths":["A port of QStandardPaths class $i @s &P @0 accessing ^E paths on @4 local filesystem (config, cache, user directories @5 etc.).","0.4.6"],"nom":["A byte-oriented, zero-copy, @i combinators @1","7.0.0"],"servo-fontconfig":["@3 @6 @0 fontconfig","0.5.1"],"raven":["Raven is a @3 @c @0 Sentry (getsentry.com)",C[5]],"panic-rtt-core":["Report panic &y to @4 host @u RTT / jlink",C[5]],"prettyprint":["Print beautifully formatted @z @5 $p to $r $o","0.8.1"],"safety-guard":["#[safety] &U to ^n a corresponding doc entry @5 a debug assertion if a constraint is specified.","0.1.9"],"grin_p2p":[C[168],"5.1.0"],"fluence-sdk-main":["@3 ^N @0 @P @0 @4 Fluence ^9","0.6.9"],"meio":["A compact actors @k @0 @4 @J epoch in @3 & Tokio","0.96.0"],"byte":["A low-@C, zero-copy @5 panic-free serializer @5 deserializer @0 $Q.","0.2.6"],"^7_bin":["A @8 @0 getting @4 @8 $Q in an $T ^7.",C[1]],"naja_@J_@I":["A ^O universal @I @0 @Z.","0.5.0-deprecated.1"],"discogs":["A @p to consume Discogs @x","0.3.1"],"synapse-rpc":["RPC @w $k $2 by synapse","0.1.20"],"leonardo-heap":["Heap $V supporting $I in-place partial sorting",C[1]],"toml":["A &8 @3 encoder @5 decoder of TOML-formatted @z @5 streams. Providesimplementations of @4 ^E Serialize/Deserialize $3 @0 TOML @w tofacilitate deserializing @5 serializing @3 $k.","0.5.8"],"pallet-contracts-rpc":[C[661],"3.0.0"],"x25519-dalek-ng":["fork x25519-dalek , update rand_core","1.1.1"],"tokio-util":["Additional @E @0 ^p @7 Tokio.","0.6.8"],"$P_cognito_idp":["^r ^N @0 @3 - Amazon Cognito Identity Provider @ 2016-04-18",C[27]],"qoqo_calculator":["qoqo-calculator is @4 calculator $N of @4 qoqo quantum computing toolkit by HQS Quantum Simulations",C[1]],"myelin-geometry":["Basic linear @5 vector geometry @0 two-dimensional Euclidean geometry","2.4.2"],"alone_ee":["Small event emitter @0 rapid &D of weak &m in @P. @d. powerful. predicted","1.7.3"],"better-panic":["Pretty panic backtraces &X by Python's tracebacks.",C[3]],"hbs-common-sys":["&O $L @6 to heartbeats-@d &4",C[5]],"google-youtubeanalytics1-cli":[C[76],C[77]],"aci_ppm":["Encode @5 decode PNM image @z (TODO: so far only PPM).","0.7.0"],"rgb-core":["RGB Core @p: private & scalable @c-validated smart contracts @0 Bitcoin & Lightning",C[48]],"tracy-client-sys":["Low @C @6 to @4 @c &4 @0 @4 Tracy profiler",C[72]],"exonum_jsonrpc":["@3 @j @0 @4 ^k-RPC 1.0 @9","0.5.1"],"nickel_sqlite":["A SQLite &G @0 nickel.rs",C[2]],"autorand":["Automatic &L ^1 @0 any struct or enum. Make $r fuzzing easier!","0.2.3"],"reql":["A &8 ReQL ^j","0.10.2"],"tao-log":["Extension @a @0 &Z to @4 log @8.","1.0.1"],"obstack":["A $I, stack-@n ^l, usable @0 any object","0.1.4"],"crossbeam-utils":["^e @0 concurrent $m","0.8.5"],"capstone":["High @C @6 to capstone disassembly $a (&Y://capstone-engine.org/)",C[13]],"android-sparse":["An @2 of Android's sparse $0 @G.","0.5.0"],"mac":["A $b of great @5 ubiqutitous @a.","0.1.1"],"circular":["A ^L $F designed @0 $d @7 nom",C[1]],"sailfish":[C[317],"0.3.3"],"f128_^J":["Internal @6 to @4 gcc quadmath @1",C[8]],"cell":["A replacement of std::cell::RefCell adding advanced @j @0 mapping borrows.","0.1.8"],"libimagref":[C[39],C[1]],"shred-derive":["Custom @b @0 shred","0.6.3"],"isosurface":["Isosurface extraction ^3",C[847]],"recs":["@K, flexible, @e-free entity-component @O in ^X (stable!) @3.","2.0.1"],"tuikit":["Toolkit @0 $O TUI @P","0.4.5"],"ipext":["ip feature @0 stable @f",C[0]],"fehler":["A @1 @0 ^q-^a syntax in @3","1.0.0"],"zfs-core-sys":["@H to libzfs_core (lzc)","0.5.0"],"lightning_$5_@b":["&n @a @0 lightning ^9 peer @9 encodings","0.5.0"],"wedpr_ffi_@a":["@p of WeDPR ffi &J @a.","1.1.0"],"riker-cqrs":["@W Command Query Responsibility Separation @0 Riker @P","0.2.3"],"triomphe":["A fork of std::sync::Arc @7 some extra $7 @5 ^Y weak references (originally servo_arc)","0.1.3"],"rstar":["R*-^0 @1 @0 @4 @f ecosystem","0.9.1"],"handlebars":["Handlebars templating implemented in @3.","4.1.3"],"config_struct":["Create struct $h @t config @z at $j $z.","0.5.0"],"^D_writer":["Depreacted. Use `std::fmt::Write` instead.",C[38]],"bip_handshake":["&O handshaking @m as well as a default handshake @2","0.7.1"],"sp-authorship":[C[115],"3.0.0"],"pallet-bounties":["FRAME &v to manage bounties","3.0.0"],"signed_cookies":["Signed Cookies",C[4]],"new_$l_@b":["Combat primitive obsession by easily $Z strongly-typed &r @5 reference @g",C[8]],"hyper-tungstenite":["websockets @0 hyper servers @u tungstenite","0.4.1"],"gfx_window_sdl2":["Use gfx &S @7 SDL2 windows",C[3]],"max3010x":["Platform-&f @3 ^j @0 @4 MAX3010x high-sensitivity pulse oximeter @5 heart-rate sensor @0 wearable health.",C[0]],"fxsm":[C[938],C[3]],"cargo-arch":["@3 Arch &j @X packer","0.1.4"],"core-rpc-json":[C[583],C[23]],"kanaria":["@Q @1 @s @y such as hiragana, katakana, half-width @5 full-width mutual conversion @5 discrimination.",C[3]],"rundo_@g":["base undo redo @g @0 Rundo",C[2]],"pcx":["@p @0 &3 & $O PCX images.","0.2.3"],"$4":["A very @d @1 who's job is to return @4 $4 of $r @8 if you're $K @7 Cargo.","3.0.0"],"^f_libra_vm_@I":["Libra vm @I",C[10]],"rexcli":["Replix admin CLI ^4","0.18.4"],"glerminal":["A ^O OpenGL $o",C[1]],"solana-chacha":["Solana Chacha APIs","1.1.23"],"boringssl":[C[198],"0.0.5"],"md4":["MD4 ^z @Y","0.9.0"],"ckb-system-scripts":["CKB System Scripts","0.5.4"],"sc-tracing-proc-macro":["Helper @a @0 Substrate's @c CLI","3.0.0"],"slot":["$l-shaped chunk of $g","0.2.5"],"binread":["A @3 @8 @0 helping read &o @t $Q @w @u ✨@e magic✨","2.2.0"],"likely":["likely",C[3]],"wasi-common":[C[52],C[53]],"pearl":["Pearl is a low @C blob-@n I/O @1","0.7.1"],"hashdb":["$y @0 ^z-keyed databases.",C[1]],"amadeus-postgres":[C[179],"0.4.3"],"pdf-canvas":["Generate PDF @z in ^X Rust.Currently, @d vector ^T @5 ^D set in @4 14 built-in fonts are supported.","0.6.0"],"extended-collections":["An ^h to @4 &C in @4 ^E @1 @7 various @w $k.","0.6.0"],"tls_codec":["A ^X @3 @2 of @4 TLS (de)@M","0.1.4"],"node-resolve":["$8 Node.js ^F resolution $1","2.2.0"],"vojaq_@i":["&B of @4 Vojaq $0 @G","0.5.1"],"libp2p-kad":[C[654],"0.32.0-rc.2"],"base64ct":["Pure @3 @2 of Base64 (RFC 4648) $i avoids any usages ofdata-dependent branches/LUTs @5 thereby @s portable \"best effort\"constant-$z operation @5 ^b-&E no_std @j","1.1.1"],"human_name":["A @1 @0 @R @5 comparing human names","1.0.2"],"yamux":["Multiplexer &6 reliable, ordered connections","0.9.0"],"feattle-core":[C[544],"0.7.0"],"$P_redshift":["^r ^N @0 @3 - Amazon Redshift @ 2012-12-01",C[27]],"memory-pager":["Access $g @u &7 fixed size buffers","0.9.0"],"murmurhash32":["A @d @2 of murmurhash32_2",C[3]],"dbui-client":["WASM &e @c sources @0 dbui","0.0.64"],"tp-consensus-vrf":[C[262],"2.1.2"],"yarns":["@K lib @0 ^p @7 $p","0.4.1"],"rumblr":["Tumblr APIs Client","2.0.2"],"stdweb":["A ^E @1 @0 @4 @c-side Web","0.4.20"],"netlink-packet-route":[C[325],C[7]],"solana-genesis-programs":["Solana genesis programs","1.3.13"],"gfx-backend-vulkan":[C[423],"0.9.0"],"rusty-wam":["$8 Warren Abstract Machine in @3.","0.8.1"],"auditable-build":["Companion @8 to `auditable`, split out @0 technical reasons",C[0]],"kt":["A key ^A ^4 @0 PKI @5 similar things.","0.0.7"],"htrpc":["^s @n RPC @1","0.0.17"],"libp2p-tcp":[C[352],C[172]],"mpd":["A @c @1 @0 MPD (music player daemon), $C libmpdclient but in @3","0.0.12"],"libp2p-bitswap":["@v of @4 ipfs bitswap @9.",C[95]],"fixnum":["Fixed-point ^M @7 explicit rounding","0.6.0"],"snarkvm-curves":["Curves @0 a decentralized virtual machine","0.7.9"],"bread":["An ^b ^D formatting markup @1 @0 $o &Z",C[0]],"closure":["A @e @0 capturing variables on a per variable basis.",C[1]],"crypto-hash":["A @h @0 OS-@C ^w ^z @y","0.3.4"],"yaxpeax-arm":["arm decoders @0 @4 yaxpeax ^g","0.1.3"],"$4_check":["Tiny @8 to check @4 $4 of @4 installed/running &K.","0.9.3"],"wavefront_rs":["Typed Wavefront OBJ @i / writer.","1.0.3"],"google-plus1-cli":[C[70],C[69]],"txtdist":["A @1 @0 mesuring @4 distance $t texts.",C[5]],"displaythis-impl":["@v detail of @4 `displaythis` @8","1.0.23"],"coin_cbc":[C[295],"0.1.6"],"der-parser":["&B/encoder @0 ASN.1 BER/DER @w","6.0.0"],"twig":["Twig templating $a @0 @3; work in progress.",C[0]],"defrag":["$M @5 low overhead defragmenting $g &F @0 $s","0.1.4"],"lexer":["$Y @n lexical reader","0.1.18"],"ball-tree":["Ball-^0 @2 @0 K-nearest neighbors",C[1]],"machine-ip":["Get $r machine's local IP address.",C[5]],"wasm-rpc":["WASM rpc is a ^E @m to programs @l compile to $x","0.2.18"],"hypervisor":[C[40],"0.0.8"],"sha3":["SHA-3 (Keccak) ^z @Y","0.9.1"],"google-mirror1-cli":[C[924],"2.0.4+20190424"],"ideal":["When you need some ids.","0.7.4"],"duckduckgeo":["2d geom @1","0.4.2"],"cita-database":["Database @0 CITA.","0.1.1"],"d3ne":["@3 D3 Node Engine @2 @l works @7 retejs, still a work in progress","0.5.3"],"wfbuf":["Naive wait free buffer @0 $I interprocess @w streaming on linux.","0.1.1"],"murmurhash64":["@v of MurmurHash2 (64bit $4)","0.3.1"],"rusty-hermit":["A @3-@n @1 operting @O","0.3.53"],"dirs":["A tiny low-@C @1 @l @s @N-specific ^E locations of directories @0 config, cache @5 other @w on &j, ^6, macOS @5 Redox by leveraging @4 mechanisms defined by @4 XDG base/user directory specifications on &j, @4 Known Folder @x on ^6, @5 @4 Standard Directory guidelines on macOS.","4.0.0"],"dotext":["@K @3 @1 to extract readable ^D @t specific document @G $C Word Document (docx). Currently only @j several @G, other @G coming soon.","0.1.1"],"earcutr":["port of MapBox's earcut triangulation @V to @3 @L",C[3]],"rand_xoshiro":[C[258],"0.6.0"],"e164-phones-countries":["A &7 $w $i maps E.164 international phone ^M to ISO 3166 country codes as well as @4 ISO 3166 country codes to country phone codes.",C[4]],"rsass":["Sass @2 in ^X @f (not @q yet)","0.22.2"],"rocket-etag-if-none-match":["@Q @8 @s a request guard $2 @0 getting `if-none-match` header.",C[2]],"unsafe-any":["Traits @5 @T @0 unchecked downcasting.","0.4.2"],"graphql_query_@b":[C[491],C[13]],"caps":["A ^X-@3 @1 to work @7 &j capabilities","0.5.3"],"paseto":["An alternative token @G to JWT","2.0.2+1.0.3"],"oid-registry":["Object Identifier (OID) ^Q",C[3]],"pretty_dtoa":["Configurable floating point &a to $c conversions, @7 many options @0 controlling various aspects of displaying floats.",C[1]],"imag-view":["Part of @4 imag @F ^m: imag-view @D",C[12]],"stl":["Stereo Lithography $0 input @5 &Z.",C[5]],"^H":["@p @0 $E @3 @V","0.1.3"],"askama_@b":["$q @e @X @0 Askama","0.10.5"],"fce-wit-generator":["Fluence FCE @m $l @B",C[2]],"rafy":["@3 @1 to download YouTube content @5 retrieve metadata",C[5]],"aligned_alloc":["@W cross-@N $9 @0 aligned $g allocation","0.1.3"],"ion-c-sys":["@H to Amazon Ion C","0.4.11"],"gazetta-bin":["A &k site @B.",C[1]],"css-color":["@3 @1 @0 CSS color $p",C[3]],"futures-async-stream":["Async ^L @0 @3 @5 @4 @Z @8.","0.2.5"],"sdp":["A ^X @3 @2 of SDP",C[2]],"wonder":["An Erlang/Elixir &X actor @1 @0 @3",C[0]],"distill":["Asset @k @0 game engines & editor suites.",C[0]],"vulkan-malloc":["A general purpose device $g ^l @0 Vulkan","0.1.5"],"bevy_dylib":["Force @4 Bevy Engine to be dynamically linked @0 faster linking","0.5.0"],"tripcode":["A @1 @0 $E tripcodes on imageboards @5 textboards.",C[5]],"grin_servers":[C[157],"5.1.0"],"thruster":[C[839],"1.1.10"],"rosrust":["Pure @3 @2 of a ROS @c @1","0.9.8"],"collect-mac":["@Q @8 @s @4 `collect!` @e, $i can be $2 to easily construct arbitrary &C, including `Vec`, `String`, @5 `HashMap`. It also endeavours to construct @4 $b @7 a single allocation, where possible.",C[0]],"modular-bitfield":["Allows to easily define bitfield @g @7 modular $K blocks.","0.11.2"],"vgtk":["A declarative UI @k @0 GTK",C[1]],"parse_wiki_^D":["Parse wiki ^D @t Mediawiki ^d a ^0 of elements","0.1.5"],"statehub":["statehub CLI ^4","0.12.5"],"git-packetline":["A WIP @8 of @4 gitoxide ^g ^5 @4 pkt-$D @M @G",C[28]],"git-hive-protocol":["A @d @1 @0 managing a custom Block Exchange ^c (BEP).@Q BEP manages git repository @w @5 ensures synchronization across peers.","0.2.3"],"delta_e":["DeltaE is a ^X-@3 @2 of @4 CIEDE2000 $1",C[5]],"tp-consensus-babe":[C[56],"0.8.2"],"tldextract":["extract domain info @t a url","0.5.1"],"buffering":["A @1 primarily designed @0 ^9 packet buffer $B","0.5.0"],"pallet-ethereum":["Ethereum compatibility full block &u emulation &v @0 Substrate.","3.0.0"],"arc-interner":[C[255],"0.5.1"],"crev-data":["Scalable, social, Code REView @O @l we desperately need - @w @g @1",C[74]],"&V_flex":["Flexibly Parse a ^k $c","0.3.3"],"streamunordered":["An ^Z @J ^L multiplexer","0.5.2"],"fluvio-protocol":["Fluvio streaming @9","0.6.1"],"git-changelog":["A ^4 to automate ^g changelog ^1.","0.3.1"],"regress":["A regular expression $a targeting EcmaScript syntax","0.4.1"],"cursive-aligned-view":["A view @h @0 gyscos/cursive views $i aligns child views","0.5.0"],"ocaml":["OCaml @6 @0 @3","0.22.2"],"os-detect":["Detect an OS installed on a partition",C[8]],"portaudio-rs":["PortAudio @6 @0 @3",C[9]],"async-graphql-axum":["@J-graphql @0 axum","2.10.6"],"jws":["^k Web Signature @0 @3","0.2.5"],"ockam_node":["Ockam Node @2 @8","0.35.0"],"groonga-sys":[C[181],"0.3.1"],"cargo-udeps":["Find unused &c in Cargo.toml","0.1.24"],"trust-dns-rustls":["Trust-DNS is a $M @5 secure DNS @1. @Q is an ^h @0 @4 Trust-DNS @c to $d rustls @0 TLS.",C[41]],"conductor":["(to be renamed) Develop @5 orchestrate multi-pod docker-compose apps","0.0.15"],"razberry":["An ^s @c @1 @0 @4 Razberry Z-Wave Hub",C[1]],"polling":["Portable @m to epoll, kqueue, event ports, @5 wepoll","2.1.0"],"type-nats":["Type-@C natural ^M in @3","0.0.2"],"$P_swf":["^r ^N @0 @3 - Amazon @K Workflow Service @ 2012-01-25",C[27]],"d3dcompiler-sys":["Contains @Y $h @0 @4 ^6 @x @1 d3dcompiler. See winapi @0 @g @5 constants.",C[3]],"unsafe-io":["Non-owning unsafe I/O","0.9.1"],"nu_$Y_@t_sqlite":[C[298],"0.39.0"],"piston-button_tracker":["A Piston @1 @0 tracking key/mouse press events @t windows @0 $d in update loops",C[24]],"psocket":["@4 socket @0 @3","0.1.5"],"rlapack":["LAPACK @6 @5 &r","0.0.5"],"simdutf8":["SIMD-accelerated UTF-8 validation.","0.1.3"],"conquer-util":["@E @0 concurrent @5 lock-free $m",C[1]],"core-utils":["A reimplementation of @4 GNU @F ^u in @4 @3 $m @L",C[4]],"skia":["@3 idiomatic @6 to Google's Skia. WIP.",C[0]],"intaglio":["UTF-8 $c @5 bytestring interner @5 symbol table","1.3.0"],"quickbacktrack":["@p @0 back tracking @7 customizable search @0 moves","0.7.0"],"lapin-futures-tls-internal":["Integration of tls engines @7 lapin-@Z","0.7.1"],"rcgen":["@3 X.509 certificate @B","0.8.14"],"clearscreen":["Cross-@N $o screen clearing","1.0.7"],"state_machine_future":["Easily create $l-$M `Future`s @t state machines — ^Y @4 boilerplate.",C[3]],"tinyecs":["Tiny entity component @O","0.0.3"],"librespot-audio":["$8 audio fetching @5 &u logic @0 librespot","0.3.1"],"lignin":["A virtual DOM $V, primarily @0 &e $d.",C[0]],"ceph":[C[79],"3.2.5"],"cacache":["Content-addressable, key-&5, high-$J, on-disk cache.","9.0.0"],"wasmedge_tensorflow_@m":["A @3 @1 @l @s @3 to $x developers @7 syntax @0 @u tensorflow $7",C[8]],"http2parse":["An HTTP2 frame @i.",C[8]],"fa":["Foreign-@Y @m @h of @4 Augeas libfa Finite Automata @1","0.1.4"],"glean":["Glean ^N @3 @L @6","42.1.0"],"ion-binary-rs":["Pure @3 @i, encoder @5 hasher @0 Amazon's Ion $Q @G.","0.8.3"],"trace-macro":["@K trace @a","1.1.1"],"const_env--value":[C[191],C[4]],"pdatastructs":["@K probabilistic @w $k","0.6.0"],"chaos":["Password metadata ^x @5 xsalsa20 hasher","0.9.5"],"image_colors":["Get colors @t an image. Optionally sort by most $u.","0.5.1"],"oxygengine-audio":["Audio ^F @0 Oxygen Engine",C[42]],"cmd_lib":[C[150],"1.3.0"],"map_vec":["$8 Map @5 Set APIs backed by Vec",C[1]],"tutil":["A toolbox @0 developing @D $D @P.",C[3]],"lcms2-sys":["@H @0 liblcms2 (Little CMS) @7 @j @0 &j, macOS, @5 Windows.See lcms2 @8 @0 a $M @3 @h.","3.1.9"],"google-content2-cli":[C[166],C[34]],"cpp_$u":["@v details @8 @0 @4 `cpp` @8","0.5.6"],"tokio-socks":["&b SOCKS proxy @j @0 @3.","0.5.1"],"hbs-sys":["$L @6 to libhbs",C[5]],"graphy_^K":["@W @w about graphy to its various modules.",C[1]],"rillrate":["Real-$z UI @0 bots","0.41.0"],"bip_utracker":["Communication @7 bittorrent UDP trackers",C[2]],"mount":["Mounting &G @0 Iron.",C[2]],"usize_conversions":["Conversion $3 @0 conversions $t `usize` @5 fixed sized integers.",C[3]],"uncon":["Traits @0 unchecked conversions $t @g.","1.1.0"],"&L":["$8 @X @s sources of randomness.","0.12.2"],"luajit-src":["Sources of LuaJIT 2.1 (OpenResty's branch) @5 logic to $j it.","210.3.0+restyeced77f"],"directx-sys":["@3 $L @6 @0 @4 DirectX @x",C[0]],"fwatcher":["Auto run @D when some @z changed.","0.4.2"],"exit-future":["Future @l signals exit to many receivers",C[3]],"ocaml-boxroot-sys":["@H @0 ocaml-boxroot",C[3]],"full_moon":["A lossless Lua 5.1 @i","0.13.1"],"solana-client":["Solana Client","1.8.1"],"execute-command-macro":["Create `Command` instances @u @4 `@D!` @e or @4 `command_args!` marco.","0.1.6"],"iptrap":["A $I, stateless TCP sinkhole","1.0.7"],"lol_html":["Streaming HTML rewriter/@i @7 CSS selector-@n @x",C[1]],"spectacles-model":["Discord @g @5 $k @0 Spectacles.rs.",C[3]],"pallet-society":["FRAME society &v","3.0.0"],"trust-dns-util":["^e @l complement Trust-DNS.",C[41]],"envconfig_@b":[C[243],C[13]],"borsh-derive-internal":[C[226],"0.9.1"],"fixed-vec-deque":["A fixed-size, zero-allocation circular buffer @0 @3","0.1.9"],"syncer":["A filesystem @l pretends you have all $r @z locally while caching only @4 most recently $2","0.5.1"],"endian_$y":["A $y @0 Endianness conversions @l can be implemented on most @g","0.6.0"],"google-dfareporting2d1":[C[822],C[823]],"gob":["$6 @j @0 @4 gob $Q @G",C[0]],"pbjson-build":["Generates Serialize @5 Deserialize @T @0 prost message @g",C[3]],"lair_keystore_@c":["@c connector to secret lair private keystore","0.0.8"],"runtime-macros":[C[998],C[1]],"elfloader":["A @f @1 to load ELF @z.",C[24]],"pallet-assets":["FRAME asset ^A &v","3.0.0"],"auto":["Cross-@N UI/input event automation facilities.","0.0.8"],"hub-sdk":["Geeny &j Hub ^N","0.5.0"],"pen-ffi":["$L @1 @0 Pen $m @L","0.2.7"],"dbf":["Read (@5 &0) DBF @z","0.1.1"],"ruroonga_@D":["A tiny Groonga query &I @5 @B.","0.3.4"],"now_lambda":["@3 @6 @0 Now.sh Lambdas","0.1.3"],"typetag":["Serde serializable @5 deserializable $y objects","0.1.7"],"dbus-tree":["Framework @0 $O D-Bus method handlers (legacy)","0.9.2"],"cargo-geiger":["Detects usage of unsafe @3 in a @3 @8 @5 its &c.",C[17]],"cstr_@F":["@v of CStr @5 CString @0 no_std environments.","0.2.4"],"rustc-std-workspace-core":["Explicitly empty @8 @0 @f-lang/@f $T","1.0.0"],"rev_lines":["@3 Iterator @0 &3 @z $D by $D @7 a buffer in reverse",C[5]],"zbus":["@x @0 D-Bus communication",C[136]],"mit-commit":["For $K commit linters. @Q makes it eas.","1.33.2"],"simple-stopwatch":["Minimal stopwatch @0 @f, returns float ^V","0.1.4"],"async-utf8-decoder":["Convert AsyncRead to incremental UTF8 $c ^L","0.3.1"],"fmt2io":["A bridge $t std::io::Write @5 std::fmt::Write.",C[3]],"listpack":["@3 @h @0 @4 \"listpack\" @w $V created @5 maintained @0 Redis","0.1.6"],"drain":["A @8 @l supports graceful shutdown",C[0]],"localnative_^y":["localnative app @D $D $w","0.3.7"],"raw_sync":["Lightweight @h $G OS synchronization $9","0.1.5"],"postgres-parser":["An llvm-@n $M @h @0 PostgresSQL's query @i. Currently @n on v13","0.2.3"],"assert-json-diff":["Easily compare two ^k ^V @5 get great &Z","2.0.1"],"google-playmoviespartner1":[C[593],"2.0.8+20170919"],"gdal":["GDAL @6 @0 @3",C[13]],"libp2p-observed-address":["Observed addresses @9 @0 ^v",C[28]],"oasis-std":["@p @0 developing on @4 Oasis @N","0.4.1"],"eco":["A ^4 @0 reasoning about breaking changes in @3 ecosystems",C[74]],"google-adexchangebuyer1d3-cli":[C[91],C[63]],"gorrosion-gtp":["A best-effort strongly typed @m $t @3 @5 GTP, @4 Go Text Protocoll","0.4.1"],"libimagentryfilter":[C[39],C[12]],"javascriptcore-rs-sys":["Sys @y @0 @4 @3 @6 of @4 javacriptcore @1","0.3.1"],"finally-block":["Final block is a block @l is executed when it dropped.It helps a user to &0 @4 deferred statements @l should be executed even some statements return early.",C[3]],"custom_debug_@b":[C[131],"0.5.0"],"wayland-egl":["@H to libwayland-egl.",C[98]],"snap":["A ^X @3 @2 of @4 Snappy ^C $1. Includesstreaming ^C @5 decompression.","1.0.5"],"libmount":["$8 $l-$M @h $G mount @O call","0.1.15"],"tokio-pty-process":["Interact @7 a child ^I through a pseudo-TTY, asynchronously @u Tokio",C[2]],"concurrent-hash-map":["@Q is a @d concurrent ^z map $A in @3. It uses a design where read $B never lock against reads or writes, but writes can sometimes lock against other writes. In order to maintain concurrency on insert/removal $B, @4 map is segmented ^d several sub-maps, each of $i has its own &0 lock.This @V is currently extremely pre-alpha. Most particularly, it leaks $g on table growth @5 drop, as well as when @u keys or ^V @l (even transitively) $d custom Drop @T. It should be possible to fix this, but a clean solution will require @j @0 running destructors in crossbeam (see crossbeam issue #13).For now it may be useful @0 long lived hashmaps @7 a relatively steady size, but I don't recommend @u it @0 anything important :-).","0.0.6"],"obj-rs":["Wavefront obj @i @0 @3. It handles both 'obj' @5 'mtl' formats.","0.7.0"],"lain_@b":["&n @a @0 usage @7 lain","0.5.5"],"xyz":["&B @0 @4 RPG Maker XYZ image @G",C[5]],"bastion-utils":["^e @0 Bastion, @4 highly-available, fault-tolerant, @J communication oriented executor",C[9]],"cap-std":["Capability-@n $4 of @4 @3 ^E @1",C[42]],"crusadertest1":[C[486],C[0]],"rust-crypto":[C[855],"0.2.36"],"strfmt":["strfmt: @f @1 @0 formatting dynamic $p","0.1.6"],"luhn3":[C[1075],"1.0.4"],"dfile":["A ^U to easily collect @5 maintain $r dotfiles, @7 git $T.","1.3.6"],"bacon":["background @f ^2","1.2.2"],"keycode_@e":["A @3 @8 @0 @R Chrome's mapping of keys. Used in @4 `keycode` @8.",C[0]],"panty":["Fast gVim summoner","0.8.4"],"math_$3":["$3 to simplify vectorized mathematics",C[5]],"vtext":["NLP @7 @3",C[3]],"specit":["Spec \"it\" @0 @3 $S",C[2]],"rustler_@r":[C[208],"2.1.1"],"elastic_hyper":["Deprecated in favour of elastic_reqwest","0.5.0"],"@o_prompt":[C[106],"0.3.6"],"futures-rustls":["&b TLS/SSL streams @0 @Z @u Rustls.",C[74]],"sc-peerset":[C[908],"3.0.0"],"tokio-imap":["Tokio-@n IMAP @9 (@c, @0 now) @2","0.5.0"],"maskerad_$g_allocators":["custom allocators, @0 $g fragmentation prevention.","5.2.0"],"mdbook-latex":["An mdbook $N @0 $E LaTeX @5 PDF documents.","0.1.24"],"hlvm":["$8 HLVM @1 / &1",C[13]],"frugalos_mds":["Metadata Store @0 Frugalos","1.2.0"],"rtp":["A ^X @3 @2 of RTP","0.6.1"],"google-dfareporting2d5-cli":[C[400],C[329]],"pseudo":["A &7 mocking @1 @0 @3",C[3]],"language-reporting":["Diagnostic reporting @0 $m languages",C[2]],"num-traits":["Numeric $3 @0 ^G mathematics","0.2.14"],"spirit-tokio":["Tokio &w @0 Spirit","0.9.2"],"framebuffer":["Basic framebuffer $F. Handles @4 necessary ioctls @5 mmaps @4 framebuffer device.",C[1]],"gspell":["@3 @6 @0 gspell","0.5.0"],"fluvio-socket":["Provide TCP socket @h @0 fluvio @9","0.10.3"],"libcantal":["A @f @1 to submit statistics to cantal monitoring @U",C[9]],"groups":["Crate @0 obtaining group $f on a @O","0.1.1"],"semver":["&B @5 evaluator @0 Cargo's flavor of Semantic Versioning","1.0.4"],"gfx_window_sdl":["SDL2 window @0 gfx-rs","0.9.1"],"dbmigrate-lib":["@p to run ^Q migrations. Postgres, MySQL, Sqlite supported.","0.1.5"],"ledger":["@p to exchange APDU @7 Ledger Nano S &N","0.2.5"],"nom-bibtex":["BibTeX @i @u nom",C[1]],"solana-download-utils":["Solana Download Utils","1.8.1"],"deno_ast":["Source ^D @R, lexing, @5 AST related $7 @0 Deno","0.4.1"],"tokio-async-await":["Experimental @J/await @j @0 Tokio","0.1.7"],"qmetaobject_impl":["Custom @b @0 @4 qmetaobject @8.","0.2.4"],"ns-env-config":["An env_logger-&X one-stop $H @0 name resolution @n on abstract-ns. Reduces boilerplate @5 @s ^E way to configure DNS @0 @P via `RUST_NS` ^K variable.",C[0]],"google-appengine1_beta4-cli":[C[44],C[340]],"imag":["Part of @4 imag @F ^m: imag @D",C[12]],"po":["A @3 @x @5 @D-$D notification pusher @0 @4 Pushover notification &t","0.1.4"],"abscissa_@b":["Custom @b @j @0 @4 abscissa $U microframework",C[482]],"poglgame":["Piston OpenGL 2D Game Scaffold",C[2]],"emu":["A set of &4 @0 $O emulators in @3.","0.1.3"],"googleprojection":["Project world- or screen-space coordinates @0 $d in Google Maps tiles (WebMercator)","1.2.0"],"aparato":["A pci.ids-compliant @1 @0 getting $f about available PCI &N.","6.0.2"],"profont":["$8 ProFont monospace font @0 $d @7 @4 ^b-^T @8.","0.5.0"],"x509":["X.509 certificate @M",C[3]],"&Q_proto":["@Q @1 @s abstractions @0 ^w $9 @5 higher-@C @T @n on them",C[2]],"faster":["Explicit SIMD @0 humans","0.5.2"],"gears":["Gears @F @2","0.1.7"],"sgf-parse":["A @i @0 @4 SGF $0 @G @0 Go games","4.0.0"],"libtzfile":["@Q @1 @s low @5 high @C @R of @4 IANA @O timezone $f @z (TZIF).","2.0.4"],"feedbin_^S":["@3 @2 of @4 Feedbin REST @x","0.1.6"],"kf-protocol":["&M @3 @2 of kafka @9","3.0.0"],"cw721":["Definition @5 @g @0 @4 CosmWasm-721 NFT @m","0.10.0-soon4"],"miniz_oxide":["DEFLATE ^C @5 decompression @1 rewritten in @3 @n on miniz","0.4.4"],"ffmpeg4":[C[47],C[2]],"noise":["$q noise ^1 @1.","0.7.0"],"vonuvoli-scheme":["vonuvoli-scheme -- a Scheme interpreter focused on systems $m @5 scripting, almost R7RS compliant, featuring a large set of builtin $7, while keeping $J @5 security in mind. (Scheme is one of @4 major Lisp dialects, ^R a powerful functional $m ^K.)","0.0.6"],"libimagtimetrack":[C[39],C[12]],"ockam_channel":["Channel is an $F responsible @0 sending &y (usually &6 @4 ^9)in encrypted @5 authenticated way.","0.32.0"],"rusty-blockparser":["Blockchain &B @0 most $u Cryptocurrencies @n on Bitcoin","0.8.1"],"$P_cur":["^r ^N @0 @3 - ^r Cost @5 Usage Report Service @ 2017-01-06",C[27]],"db":["MatchDB Driver.","0.0.1"],"postgres-derive-internals":["Unstable internals @1 $2 by postgres-@b @5 postgres-@b-^H",C[8]],"rst_@i":["a reStructuredText @i",C[2]],"bolero-libfuzzer":["libfuzzer $Y @0 bolero","0.6.0"],"supports-hyperlinks":["Detects whether a $o supports &S hyperlinks.","1.2.0"],"cubeb":["@H to libcubeb @0 &2 @7 @O audio @t @f.","0.9.0"],"heim-sensors":["Cross-@N sensors $f",C[59]],"paired":["Fork of @4 'paired: Pairing-&E elliptic curve @1'",C[74]],"shellfn":["Attribute-$C ^B @e $i reduces @4 amount of @V required to call shell commands @5 parse @4 results","0.1.1"],"smaz":["Smaz is a @d ^C @1 suitable @0 compressing very short $p.",C[0]],"ngrammatic":["Character-oriented ngram @B @5 fuzzy matching @1.",C[9]],"screeps-game-api":["WASM @6 to @4 in-game Screeps @x","0.9.0"],"machine-id":["@p to get a UUID specific to @4 machine.",C[2]],"split_by":["Split anything ^5 Read $y by &l sequences of bytes",C[8]],"odht":["A @3 @8 @0 ^z tables @l can be mapped @t disk ^d $g ^Y @4 need @0 up-front ^P.",C[1]],"getopt":["A minimal, (essentially) POSIX-compliant option @i","1.1.0"],"semververfork":["Automatic verification of SemVer adhrence in @f @1 $R","0.1.64"],"ilc-ops":[C[164],C[4]],"vhdl_@i":["VHDL &B",C[15]],"bisetmap":["BisetMap is a $I @5 &d-$M two-way ^z map of sets. It is best suited where you need to associate two collumns uniquely. Each key is associated to one or more other unique ^V. $8 $V is interior mutable @5 all $B are &d $M. Each clone @s $X to @4 same underlying @w. Serialize @5 Deserialize @t $6 are also implemented.","0.1.6"],"probe-rs-cli-util":["Helper @1 @0 CLI @P @n on probe-rs.",C[16]],"proc-macro-rules-macros":[C[121],C[3]],"la":["Linear algebra @1 @0 @4 @3 $m @L.",C[3]],"pulse":["A @1 @0 @J wake signals","0.5.3"],"autollvm":["bindgens $r @O LLVM, plus some basic &w","0.0.1414213562"],"eff-attr":["Attribute @e @0 eff",C[0]],"cryptohash":["Trait abstracting &6 ^w ^z-@y","0.7.0"],"derive-com-impl":["$q @a to help implement COM interfaces @t @3.","0.1.1"],"macro-attr":["@Q @8 @s @4 `macro_attr!` @e @l enables @4 $d of custom, @e-@n attributes @5 derivations. Supercedes @4 `custom_derive` @8.",C[3]],"require_unsafe_in_body":["Make `unsafe fn` still require `unsafe` blocks in @4 function's body",C[9]],"ivf":["@K ivf muxer","0.1.1"],"unic-locale-macros":[C[31],"0.9.0"],"openapi_$l_@b":["@v detail of @4 openapi_type @8","0.2.4"],"metrics-observer-prometheus":["A &q-@F ^i observer @l outputs @4 Prometheus exposition &Z.","0.1.4"],"lazy":["Lazily evaluated @g @5 @a.","0.5.3"],"argmin_testfunctions":["Test @y @0 optimization ^3","0.1.1"],"rustpython-derive":["@3 @L &p @5 @a specific to rustpython.",C[4]],"diffus-derive":["Finds @4 difference $t two instances of any @w $V. Supports @b on &o @5 enums.",C[13]],"$P_sagemaker":["^r ^N @0 @3 - Amazon SageMaker Service @ 2017-07-24",C[27]],"dasp_rms":["RMS detection @7 configurable window @0 audio PCM DSP.",C[16]],"riker-default":["Riker's default Model @5 modules ^R @F services","0.2.4"],"wasmer-runtime-core-fl":[C[435],"0.17.1"],"corruption":["Undocumented @f &e @k",C[4]],"vint32":["$I vint u32 $5",C[1]],"euc":["A software &S @8 @l lets you &0 shaders @7 @3","0.5.3"],"tetcore-utils":[C[145],"2.1.2"],"wayland-window":["A minimalistic window-decorations @1 built on top of wayland-@c.",C[84]],"gphoto":["@3 @h @0 libgphoto2",C[4]],"glint":["a &E ^4 @0 $Z commits in @4 commitlint style","6.3.4"],"elfkit":["an elf @i @5 manipulation @1 in ^X @f","0.0.7"],"uvth":["Compact @5 ^Z threadpool @2 as an alternative to @4 threadpool @8.","4.0.1"],"skiplist":["Skiplist @2 in @f, ^R $I insertion @5 removal. A normal skiplist is implemented, as well as an ordered skiplist @5 a skipmap.",C[2]],"edn":["An EDN (Extensible Data Notation) @i.",C[1]],"json-pointer":["A @8 @0 @R @5 @u ^k pointers, as specified in RFC 6901.","0.3.4"],"opg_@b":[C[307],"0.0.34"],"wasi-worker-cli":["Tool to create @5 deploy WASM WASI-@n browser &t workers","0.6.0"],"rkv":["A @d, humane, typed key-&5 ^x solution",C[26]],"weak-table":["Weak ^z maps @5 sets",C[1]],"adhoc_@b":["&n FromStr impl @n on regex provided via &U",C[4]],"dprint-core":["Core @1 @0 dprint.","0.46.4"],"cobs":[C[256],"0.1.4"],"sfl_@i":["Lightweight @5 &x-to-$d bitmap font (.sfl) @i","1.3.1"],"rc2":["RC2 block cipher","0.7.0"],"cadence":["An extensible Statsd @c @0 @3","0.26.0"],"cortex":["A (very) ^O $V @0 subscribing to events @5 publishing them to all subscribers. Should be evolving.","0.1.5"],"ra_ap_ide_db":["TBD","0.0.79"],"stm32f042-hal":[C[569],"0.6.5"],"fixed-map-derive":["A fixed map where ^x layout is calculated by a $e macro.This @8 contains @4 $e @a.","0.7.0"],"cansi":["Catergorise ANSI - ANSI escape @V @i @5 categoriser","2.1.1"],"diesel-adapter":["Diesel adapter @0 casbin-rs","0.9.0"],"hexe":["A chess $a.","0.0.5"],"term-basics-linux":["A @d @8 @7 basic $7 @0 $o @P.","0.5.7"],"pwm-pca9685":["Platform-&f @3 ^j @0 @4 PCA9685 I2C 16-channel, 12-bit PWM/Servo/LED controller.","0.3.1"],"sophia":["A @3 toolkit @0 RDF @5 Linked Data","0.7.0"],"http-server":["@K @5 configurable @D-$D ^s @U","0.5.6"],"tokenizations":["Tokenizations alignments @1","0.4.2"],"webauthn-authenticator-rs":["Webauthn Authenticator Client @p","0.3.0-alpha.12"],"task-group":["manage groups of $v tasks",C[5]],"slacker":["Slacker @U built on top of $v.","0.1.3"],"vector2d":["$8 spoon of 2D vector &4, intended @0 @d game &D","2.2.0"],"once-nonstatic":["A clone of `std::sync::Once` @7 relaxed requirements",C[0]],"skia-safe":["Safe Skia @H @0 @3","0.43.0"],"servo-fontconfig-sys":["Font $H @5 customization @1","5.1.0"],"delegate-attr":["Attribute ^B-@e to delegate method to a field","0.2.9"],"r-cache":["r-cache is an in $g key &5 store. It is &d $M @5 ^V have expiry times","0.4.3"],"defmt-elf2table":["Reads ELF metadata @5 builds a defmt interner table",C[0]],"wasmer-types":[C[959],"2.0.0"],"^7_yank_rc_dep":["dummy @8 @0 $S -rc deps vs. old @S","0.1.3"],"google-gamesmanagement1_management-cli":[C[161],C[34]],"fsutils":["An @x @0 typical filesystem $B @n on Bash commands","0.1.7"],"birdseed":["birdseed enables you to seed a libellis ^Q @7 fake @w, clear all tables, or rebuild all tables per @4 current ^b migrations",C[3]],"take":["A cell allowing @4 inner &5 to be consumed ^Y amutable reference.",C[0]],"libR-sys":["Low @C @6 to @4 R $m @L.",C[8]],"nu_$Y_binaryview":["A $Q viewer $Y @0 Nushell","0.39.0"],"select":["A @1 to extract useful @w @t HTML documents, suitable @0 &e scraping.","0.6.0-alpha.1"],"vectorize":["Converts maps to vecs @0 @M",C[3]],"array-const-fn-init":["Initializes an array @7 constant ^V calculated by a `const fn`","0.1.1"],"google-androidenterprise1-cli":[C[51],C[147]],"bevy_mod_picking":["A 3D mouse picking @5 raycasting $Y @0 Bevy.",C[2]],"libxm":["A $W of libxm @0 @3. A &7 XM (FastTracker II Extended Module) player @1. Designed @0 &x $T in demos @5 such, @5 @s timing @y @0 &x sync against specific instruments, samples or channels.","1.0.0"],"libdw":[C[141],"0.0.6"],"hjul":["@K @5 ^Z timer $F on top of `mio-extra`.Every timer is associated @7 a callback $i is executed whenever @4 timer expires,timers can be stopped @5 reset, in $i case @4 callback might be executed &l times.The primary intended $U is one in $i timers have a bounded maximum duration (e.g. at most 10 minutes) @5 have to be cancelled @5 restarted very often.",C[8]],"cryptography":["Facade @8 @0 @4 RustCrypto project's $3","0.5.0"],"netlink":["@H @0 libnetlink","0.1.1"],"thread-id":["Get a unique &d ID","4.0.0"],"unsigned-varint":["unsigned varint $5","0.7.0"],"wren_@f":["Moved to &Y://crates.io/$R/wren",C[3]],"force-send-sync":["Unsafe &r to force Send @5 Sync.","1.0.0"],"anchor-client":["@3 @c @0 Anchor programs",C[43]],"as-result":["Traits @0 converting @g $i may be interpreted as or ^d a result.",C[5]],"afl-sys":["Wrapper $G AFL source","0.1.5"],"procinfo":["A @1 @0 accessing &j ^I @5 @O $f","0.4.2"],"may":["@3 Stackful Coroutine @p","0.3.19"],"dupe-krill":[C[581],"1.4.6"],"teko":["$8 Teko $m @L @2 in @3","0.1.9"],"stm32f0x0-hal":["HAL @0 @4 STM32F0x0 family of $s","0.1.8"],"point_^I":["A @8 @0 simulating &L point processes.",C[15]],"termtree":["Visualize ^0-$C @w on @4 @D-$D","0.2.3"],"libnv-sys":["$L @6 to libnv.","0.1.5"],"fann-sys":["Low-@C @6 to @4 Fast Artificial Neural Networks @1","0.1.7"],"block-cipher-trait":["&T: please switch to @4 `cipher` @8","0.99.0"],"recap":["Deserialize typed $k @t regex captures","0.1.1"],"sparseset":["A Sparse Set","1.0.0"],"tract-data":[C[94],"0.15.5"],"google-appengine1_beta4":[C[44],C[239]],"cargo-config":["@S-config allows you get to read $f @t a project's Cargo.toml $0 on @4 @D $D. Similar in spirit to git config.","0.1.1"],"nlopt":["Wrapper @0 @4 nlopt @1","0.5.4"],"pcre2":["High @C @h @1 @0 PCRE2.","0.2.3"],"realsense-sys":["@3 $F layer @0 @4 RealSense ^N C @1","2.47.0"],"gdk4":["@3 @6 of @4 GDK 4 @1","0.3.1"],"usb-device":["Experimental device-side USB stack @0 ^b &N.","0.2.8"],"card_deck":["A &W Deck of Cards, @7 a draw @5 discard pile","0.1.9"],"sys-info":["Get @O $f in Rust.For now it supports &j, Mac OS X, illumos, Solaris, FreeBSD, OpenBSD, @5 ^6.","0.9.1"],"substrate-wasmtime-profiling":[C[123],C[395]],"auto-image-cropper":["Removes extra white borders to correctly resize canvas","0.1.5"],"env_logger":["A &H @2 @0 `log` $i is configured via an environmentvariable.","0.9.0"],"lang_tester":["Concise @L $S @k @0 compilers @5 VMs","0.7.0"],"symbolic-minidump":["A @1 to ^I @5 inspect Minidump crash reports","8.3.2"],"ogg-sys":["$L @0 libogg, @4 media container.","0.0.9"],"releasetag":["Define releasetags eventually propagating ^d crash-@z '@F'","1.1.0"],"embedded-hal-mock":["A $b of mocked &N @l implement @4 ^b-hal $3",C[7]],"elephantry-derive":["Macro @2 of #[@b(Entity)]",C[415]],"plex":["A syntax ^h @0 $O lexers @5 parsers.","0.2.5"],"wrap-debug":["Implements debug by printing its $l name instead","0.1.1"],"basichll":[C[86],"0.3.1"],"matches":[C[45],"0.1.9"],"nan-preserving-float":["(Mostly) drop-in replacement @0 floats @l preserves @4 signalling bit in NaNs under conversions @5 unary $B",C[0]],"sgx_serialize_@b":[C[21],"1.1.1"],"tokio-zmq":["@W Futures abstractions @0 ZeroMQ on @4 Tokio event-loop",C[12]],"sp-arithmetic":["Minimal fixed point arithmetic $9 @5 @g @0 @I.","3.0.0"],"$P_inspector":["^r ^N @0 @3 - Amazon Inspector @ 2016-02-16",C[27]],"nalgebra-lapack":["Matrix decompositions @u nalgebra matrices @5 Lapack @6.",C[42]],"jpeg-decoder":["JPEG decoder","0.1.22"],"openssl-async":["Wrappers @0 @4 OpenSSL @8 to allow $d in @J @P",C[254]],"neuroflow":["$8 neural ^9 @1 implemented in @3","0.1.3"],"lde":["Length disassembler @0 x86 @5 x86_64.",C[1]],"dynasm":["A $Y @0 assembling @V at @I. Combined @7 @4 @I @8 dynasmrt it can be $2 to &0 JIT compilers easily.","1.1.0"],"fs-utils":["^e to help ^p @7 @4 filesytem","1.1.4"],"interledger-ildcp":[C[341],C[2]],"rustpython-compiler":["Compiler @0 python @V ^d bytecode @0 @4 rustpython VM.",C[4]],"cpp":["Inline C++ @V closures","0.5.6"],"bytestring":["An immutable UTF-8 encoded $c @u Bytes as ^x","1.0.0"],"cardano_ouroboros_^9":["@Q @8 implements @4 networking layer @0 @4 Ouroboros @9 $2 by Cardano blockchain.","0.2.7"],"snarkvm-fields":["Fields @0 a decentralized virtual machine","0.7.9"],"cassandra-cpp":[C[678],C[26]],"argv":["Command $D arguments by reference: `Iterator`","0.1.4"],"j":["Not in $d.","0.2.11"],"pusoy_dos2":["pusoy dos lib",C[23]],"srmw":["&b single-reader, multi-writer","0.1.1"],"truetype":["$8 @X @s a @i @0 TrueType fonts.","0.30.1"],"rustgym-util":["handy @a, @w @g @5 $3 @0 rustgym","0.2.4"],"webthing":["@v of an ^s Web Thing.",C[24]],"bytekey":["lexicographic sort-order preserving $Q $5","0.4.2"],"yewtil-macro":["^o to be re-exported @t @4 yewtil @8",C[1]],"glowygraph":["A @1 @0 drawing glowy graphs",C[7]],"rust-lzma":["@K @m @0 LZMA ^C @5 decompression.","0.5.1"],"tugger-snapcraft":["Snapcraft packaging $9","0.7.0"],"@f_icu_ucal":["&M @6 to @4 ICU4C @1 @t Unicode.ucal.h","1.0.3"],"quinn-noise":["quinn noise @2.",C[1]],"must":["assertion @1 @0 @f",C[3]],"tokio-signal":["An @2 of an $n Unix signal ^a backed @Z.",C[55]],"sharks":["Fast, &7 @5 secure Shamir's Secret Sharing @1 @8","0.5.0"],"quick-csv":["quick csv reader @5 decoder","0.1.6"],"feed-rs":["A unified feed @i @l handles Atom, RSS 2.0, RSS 1.0, RSS 0.x @5 ^k Feed","1.0.0"],"av-codec":["Multimedia @G ^P @5 $5",C[8]],"wyvern":["A @d CLI ^4 @0 installing @5 maintaining linux GOG games","1.4.1"],"sp-serializer":["Substrate customizable $6 serializer.","3.0.0"],"$M_@c":["SAFE Client @x @1",C[5]],"tetsy-libp2p-mdns":["@v of @4 tetsy-^v mDNS discovery method","0.29.0"],"ethereum-rlp":[C[128],"0.2.3"],"tinyfiledialogs":["High-@C @3 $W @0 @4 tinyfiledialogs C @1.","3.8.3"],"bui-backend":["Brower User Interfaces (BUIs) @7 Tokio",C[28]],"convert_case":["Convert $p ^d any case",C[2]],"monad_@a":[C[169],"0.0.1"],"ketos":["Lisp dialect scripting @5 ^h @L",C[28]],"drone-stm32-map":[C[46],C[24]],"watt":["Runtime @0 executing @3 $e @a compiled as $x.",C[2]],"websocket-util":["A @8 ^R an &x to consume streaming @m @0 WebSocketdata.",C[7]],"tree-sitter-cli":["CLI ^4 @0 developing, $S, @5 @u Tree-sitter parsers",C[42]],"sss-rs":["A secret sharing scheme implemented in @3","0.9.0"],"delay":["A $b of $y @5 classes to make $r &d wait (@5 timeout).","0.3.1"],"ethereum":[C[103],C[13]],"mpmc":["copy-pasted @t old @f stdlib","0.1.6"],"nanny-sys":["Exposes Node @5 V8 C++ API's @0 $d by nanny.","0.0.6"],"xshell-macros":["Private @2 detail of xshell @8","0.1.17"],"distill-downstream-lmdb-sys":[C[372],"0.8.0-windows-fix"],"gccjit_@r":["Raw @6 to libgccjit. Companion to @4 gccjit @8.","0.0.1"],"@b_setters":["@3 @e to automatically generates setter &P @0 a struct's fields.","0.1.5"],"wit-walrus":["Extension @0 @4 `walrus` @8 to work @7 $x @m @g.","0.6.0"],"fcli":["Fluence FCE @D $D ^4","0.4.1"],"toml-test-harness":["Cargo ^7 harness @0 verifying TOML parsers",C[1]],"flatzinc":["A FlatZinc @i","0.3.18"],"fsevent-sys":["@3 @6 to @4 fsevent macOS @x @0 $0 changes notifications","4.0.0"],"tower-request-modifier":["Tower &t &G to modify @4 request.",C[0]],"lexiclean":["Lexically clean paths","0.0.1"],"binread_@b":["&n @e @0 binread","2.1.0"],"ffmpeg":[C[47],C[1]],"ts-rs-macros":["@b @e @0 ts-rs","4.0.0"],"tower-ready-cache":["Caches a set of services","0.3.1"],"libcryptsetup-rs-sys":["Low @C @6 @0 libcryptsetup","0.1.5"],"libdc1394-sys":["$L @6 @0 libdc1394",C[8]],"ethcore-bytes":["Byte @E @0 Parity","0.1.1"],"piet-cairo":["Cairo $N @0 piet 2D ^T $F.",C[346]],"carboxyl":["@p @0 functional reactive $m",C[5]],"opengl32-sys":["Contains @Y $h @0 @4 ^6 @x @1 opengl32. See winapi @0 @g @5 constants.","0.1.1"],"tenacious":["[RETIRED: Will not work @7 MIR] A $Y to prevent certain @g @t being moved","0.2.3"],"saml2aws-auto":["A @d ^A ^4 @0 ^r credentials when @u Keycloak @7 SAML","1.10.1"],"tokio-resource-pool":["A ^G resource pool @0 @4 Tokio ecosystem.",C[48]],"rand_os":["OS backed Random Number Generator",C[8]],"hrpc-build":["Code ^1 @0 hRPC.","0.24.0"],"assert":["$8 @X @s assertions @0 $S.","0.7.4"],"dces":["DCES entity component @O",C[1]],"simple-log":["A @d log","1.1.0"],"connection-string":["Connection $c @R in @3 (@5 $x)",C[49]],"rls-analysis":["@p @0 &u rustc's save-analysis @w @0 @4 RLS","0.18.2"],"testdir":["Semi-persistent, scoped ^7 directories","0.5.1"],"rust-stemmers":["A @f @2 of some popular snowball stemming ^3","1.2.0"],"cargo-sysroot":["Simply @5 Easily cross-compile @4 @3 sysroot $R.",C[7]],"solana-token-program":["Solana token ^U","0.19.1"],"tauri-dialog":[C[152],"0.1.1"],"zamm_yin":["A basic, experimental knowledge-base",C[5]],"bevy_asset":["@W asset $7 @0 Bevy Engine","0.5.1"],"minimp3":[C[1061],"0.5.1"],"edn-rs":["Crate to parse @5 emit EDN","0.16.12"],"derive-com-wrapper":["$q @b @e @0 @4 `com-@h` @8, useful @0 @g $i are justa $M @h $G a `wio::com::ComPtr`.",C[0]],"kas":["KAS GUI Toolkit",C[12]],"align_&1":[C[50],"0.1.9"],"tp-tasks":[C[367],"2.0.1"],"shuteye":["shuteye @s @0 high-resolution sleep in @f. Let $r @V catch some shuteye","0.3.3"],"substrate-frame-cli":["^y @m @0 FRAME","3.0.0"],"cuid":["An ipmlementation of CUID @9 in @f","1.2.0"],"vigil":["@W a liveness checking watchdog @0 detecting deadlocks/livelocks/starvation etc.",C[3]],"enc_$0":["Encrypt / decrypt @z or calculate ^z @t @4 @D $D. Warning: Don't $d @0 anything important, $d VeraCrypt or similar instead.","0.3.28"],"radix_trie":["&W radix trie @w-$V.",C[5]],"filepath":["Get @4 filesystem path of a $0.","0.1.1"],"uid":["A @8 @0 @4 creation of unique IDs.","0.1.5"],"dusk-plonk":["A ^X-@3 @2 of @4 PLONK ZK-Proof $1","0.9.0-rc.0"],"bulls-and-cows":["A @k @0 $K bulls-@5-cows games (1A2B) @0 any @w $l.","1.0.19"],"tetsy-libp2p-core-derive":["$q @a of tetsy-^v-@F","0.21.1"],"shell2batch":["Coverts @d basic shell scripts to windows batch scripts.","0.4.2"],"rza1":["Peripheral $X @x @0 @4 Renesas RZ/A1 MPU family",C[3]],"vecmath":["A @d @5 $l &f @1 @0 vector math designed @0 reexporting","1.0.0"],"keybob":["A ^w key $w",C[2]],"executor-macros":["^o @0 executor","0.1.1"],"devise":[C[404],"0.3.1"],"sn_launch_^4":["SAFE @x","0.8.1"],"z85":["@3 @2 of ZeroMQ's Z85 $5 mechanism @7 padding.","3.0.3"],"syn-rsx":["syn-powered @i @0 JSX-$C TokenStreams",C[7]],"panini":["A @i @B. @Q @X is @4 @I @1.","0.0.0"],"google-androidenterprise1":[C[51],C[844]],"parquet-format":["Apache Parquet Format - thrift definition @5 ^8 @3 $0","4.0.0"],"localnative_@F":["localnative @F lib","0.3.7"],"hyper-websocket-lite":["WebSocket @U @2 on hyper @5 websocket-lite","0.5.0"],"blarf":["&k site @B","1.0.8"],"jsonrpc-sdk-macros":["A ^J @8 $2 by jsonrpc-sdk-prelude.","0.1.4"],"libimagentryedit":[C[39],C[12]],"flowers":["$8 Perfect Program","0.0.5"],"comet":["Local continuous $T","2.0.0"],"sqlite3":[C[1029],"0.24.0"],"nu-test-support":["Support @0 $O Nushell tests","0.39.0"],"wasm-bindgen-gc":["Support @0 removing unused items @t a &s executable","0.2.34"],"ebur128":["@v of @4 EBU R128 loudness ^E","0.1.6"],"cargo-xcode":["Make Xcode ^g @z @t Cargo projects","1.1.2"],"rustler_^H":["Compiler $Y @0 Rustler","0.22.2"],"lzma":["LZMA @G ^a.",C[8]],"diffusion":["@Q is @4 @f @2 of diffusion @1. Diffusion is an effcient message-@n @w ^m @1.","0.9.0"],"oxygengine-network-backend-native":["Network &M $N ^F @0 Oxygen Engine",C[42]],"mapped-guard":["Returnable guards @l represent @0 example a subset of @4 original borrow. Implemented @0 @4 ^E guard @g @5 easily extensible.","0.0.1"],"tp-trie":["Patricia trie stuff @u a tetsy-scale-codec node @G","2.1.2"],"rcudnn":[C[507],"1.7.0"],"rst_app":["rst: @4 requirements tracking ^4 made @0 developers","0.3.7"],"gfx_gl":["OpenGL @6 @0 gfx, @n on gl-rs","0.6.1"],"kf-protocol-transport":["Transport frame encoder @5 decoder @0 Kakfa @9","2.0.4"],"wpilib-sys":["FRC's WPILib @O @6 @0 @f.",C[2]],"enso-automata":[C[305],C[3]],"generic-bytes":["A derivable $y @0 conversion to @5 @t an array of bytes @7 a $l-@C size",C[0]],"datetime":["@p @0 date @5 $z formatting @5 arithmetic","0.5.2"],"nrf91":["Device @j @8 @0 nRF9160","0.1.1"],"packed_simd":[C[744],"0.3.3"],"all_asserts":["A @8 @0 &l @g of asserts @l don't exist in @4 ^E @1","2.3.0"],"solp":["Microsoft Visual Studio solution @R @1","0.3.6"],"gexiv2-sys":["@Q @1 @s @3 $L declarations @0 @4 gexiv2 @1, whichis a GObject-@n @h $G @4 Exiv2 @1, $i @s readand &0 $X to @4 Exif, XMP, @5 IPTC metadata in media @z. OnlyFFI declarations are provided here; @0 a usable @3 @1, considerthe `rexiv2` @8.","1.1.2"],"wasmtime-wasi":[C[52],C[53]],"knrs":["^e @0 ^p @7 @4 Kilts Nielsen retail scanner (KNRS) @w",C[5]],"fabric-system":["FABRIC @O ^F","2.0.0"],"termcolor":["A @d cross @N @1 @0 $O colored ^D to a $o.","1.1.2"],"nature_$u":["&O defines $i $2 by Nature",C[23]],"tracing-subscriber":["^e @0 ^5 @5 composing `&g` subscribers.","0.3.1"],"google-fitness1-cli":[C[344],C[54]],"interfacer-http":["A magic ^s @c, $C retrofit in Java",C[8]],"webgl_@B":["Code generators @0 $Z @6 to @4 WebGL APIs.",C[3]],"iota-constants":["Constants $2 by Iota",C[2]],"vm-fdt":["Crate @0 $O Flattened Devicetree blobs",C[0]],"x1b":["State tracker @0 0x1b $o escape codes. Also gives &L characters names.",C[7]],"endian_codec_@b":["^o @2 @0 endian_codec @8","0.1.1"],"cw0":["&O &w @0 other cw specs",C[12]],"git-latest-commit":["Add @w about @4 latest git commit @0 a ^g at $j $z, @0 run-$z reporting.","0.1.3"],"nfd-sys":["Low-@C @3 @6 to nativefiledialog","0.1.5"],"google-dialogflow2_beta1-cli":[C[170],C[130]],"hum":["A music notation @L @5 synthesizer $A in @3.","0.5.0"],"esplugin-ffi":["A @h @1 ^R a C $L @0 esplugin.","2.1.2"],"gbm-rs":["@3 @6 to libgbm",C[3]],"$P_iot":["^r ^N @0 @3 - ^r IoT @ 2015-05-28",C[27]],"rust-releases-rust-changelog":["RustChangelog source @2 @0 @f-releasess",C[72]],"rustcode":["Code formatting @5 autocompletion @j @0 @3.","0.0.1"],"shareable":["Thread shareable objects @u @4 minimal amount of synchronization.","0.1.1"],"callpass":["Generate APRS passcodes","1.0.3"],"pdb":["A @i @0 Microsoft PDB (Program Database) debugging $f","0.7.0"],"fuzzywuzzy":["A ^X-@3 clone of @4 incredibly useful fuzzy $c matching python @X, FuzzyWuzzy.","0.0.2"],"geos-sys":["GEOS C @x @6","2.0.1"],"hamst":["Hash Array Mapped Shareable Trie",C[0]],"cedict":["&B @0 @4 CC-CEDICT Chinese-English Dictionary","0.2.3"],"bollard":["An $n Docker daemon @x",C[16]],"universal_wallet":["@3 @2 of @4 Universal Wallet 2020 Specification","0.5.0"],"librados-sys":["@3 @6 @0 @4 Ceph Rados @x",C[0]],"salvo_extra":[C[83],C[84]],"signedsource":["Utility @0 signing @5 verifying ^8 @z.",C[3]],"$g_map":["Memory mapped @z.","0.0.3"],"php-literal-parser":["@i @0 php literals",C[1]],"async-lock":["Async synchronization $9","2.4.0"],"nasm":[C[114],"0.0.1"],"near-bindgen":[C[756],"0.6.0"],"luhn2":["Luhn $1 check.",C[4]],"wasp":["a &e assembly lisp $m @L","0.5.1"],"userror":["User-facing ^q &y @0 @D-$D programs.",C[0]],"logdna-client":["@h $G LogDNA's Ingest @x",C[8]],"mongo_^j":["Mongo @3 ^j built on top of @4 Mongo C ^j","0.13.6"],"nix-test":["Testing &w @0 Nix","0.0.1"],"ink_^x_@b":["[ink!] &n @a @0 $u ink_storage defined $3.",C[107]],"ntapi":["$L @6 @0 &M @x","0.3.6"],"tower-layer":["Decorates a `Service` to allow &x composition $t `Service`s.","0.3.1"],"ai-graph":["Ai Graph is a new ^4 @0 $Z machine learning @l runs blazingly $I when learning has finished.","0.0.18"],"toy-rpc":["An @J RPC @l mimics golang net/rpc's usage @5 supports both @J-std @5 $v","0.8.3"],"sp-finality-tracker":["FRAME ^F @l tracks @4 last finalized block, as perceived by block authors.","2.0.1"],"raylib-sys":["Raw $L @6 @0 Raylib","3.5.0"],"serde-transcode":["Transcode @t one Serde @G to another","1.1.1"],"serde-reflection":["Extract representations of Serde @w formats","0.3.5"],"ruduino":["Reusable components @0 AVR $s",C[9]],"shogi":["Bitboard @n Shogi @1. Board representation, move handlings @5 various $z control @E.",C[16]],"node2object":["Convert $t XML nodes @5 ^k objects.",C[4]],"sel4-start":["Crate defining @4 entry point to @4 initial &d on seL4","0.0.28"],"shannon":["Shannon cipher @2",C[3]],"random-trait":["@3 @1 @0 a &L $y meant to produce &L ^G @g","0.1.1"],"sgx_trts":[C[21],"1.1.1"],"punkt":["An @2 of a Punkt sentence tokenizer","1.0.5"],"binance":["@3 @p @0 @4 Binance @x","0.17.1"],"persia-rpc":["high $J rpc @k on http2","0.6.1"],"@J":[N,"0.0.2"],"android_glue":["Glue @0 @4 Android JNI","0.2.3"],"parse-display-derive":[C[319],"0.5.3"],"fuse3":["FUSE user-space @1 @J $4 @2.",C[5]],"aes":["Pure @3 @2 of @4 Advanced Encryption Standard (a.k.a. Rijndael)including @j @0 AES in counter mode (a.k.a. AES-CTR)","0.7.5"],"uniffi_@a":["a multi-@L @6 @B @0 @f (convenience @a)",C[24]],"median":["An @2 of an ^Z O(n) median filter.",C[9]],"foreign-types-shared":[C[505],C[1]],"reikna":["A work in progress math @1","0.12.3"],"zip":["@p to @j @4 &3 @5 $O of zip @z.","0.5.13"],"ulog":["A &7 &H @1 (not only) @0 hard real-$z &H.",C[1]],"fool":["Traits @0 interoperation of Boolean @5 sum @g.","0.0.4"],"nix-netconfig":["A @3 @1 @0 manipulating ^9 $H of *nix systems",C[4]],"WebFoolKit":["CGI @5 Cookies in @3","0.1.1"],"lockchain-files":["Filesystem ^x $N @0 lockchain vaults","0.9.0"],"openblas_ffi":["$L @6 to sequential @5 parallel OpenBLAS.","0.1.1"],"lettre":["Email @c","0.10.0-rc.3"],"capabilities":["@3 @6 to libcap. Allows you work @7 &j Capabilities @t @3.",C[1]],"libz-sys":["Low-@C @6 to @4 @O libz @1 (also known as zlib).","1.1.3"],"grpc-protobuf":["Protobuf marshaller @0 gRPC","0.8.3"],"finder":["Recursive find @z in folders @7 filtering","0.1.6"],"clipboard":["@f-clipboard is a cross-@N @1 @0 getting @5 setting @4 contents of @4 OS-@C clipboard.","0.5.0"],"mwmatching":["Maximum-Weight Matching: Compute a maximum-weighted matching in @4 general undirected weighted graph given by 'edges'.","0.1.1"],"nextcloud_appsignature":["@p to sign Nextcloud apps","0.7.1"],"racer-interner":["&d-local $c interner @0 racer-@f",C[0]],"dropbox-sdk":["@3 @6 to @4 Dropbox APIv2, ^8 by Stone @t @4 official spec.",C[84]],"x11-clipboard":["x11 clipboard @j @0 @3.","0.5.3"],"evalchroma":["Guess @4 best chroma subsampling mode @0 a given image","1.0.0"],"lrpc":["local rpc","1.1.0"],"$6_bser":["Implements @4 Watchman BSER $5 @0 $6. &Y://facebook.github.io/watchman/docs/bser.html","0.3.1"],"parity-snappy-sys":["&M @6 to libsnappy",C[4]],"oars":["A @1 ^R construction &P @5 $w @y @0 orthogonal arrays @5 strong orthogonal arrays","3.0.1"],"bitness":["@3 @1 @0 detecting OS bitness independently of @4 executable's bitness. ^6, GNU/&j @5 FreeBSD currently supported.",C[2]],"oas3":["Structures @5 &1 to parse, navigate @5 validate OpenAPI v3 specifications.",C[5]],"minimal-id":["A @1 @l implements $E short, unique ids @7 minimal collisions @5 good locality",C[7]],"metrics-runtime":[C[981],"0.13.1"],"extrahop":["Client @1 @0 @4 ExtraHop @N.",C[55]],"hertz":["useful @y @0 ^p @7 frame-rates, sample-rates other rates, $z durations, frequencies, etc @5 @0 keeping a constant framerate",C[1]],"blas-sys":["$8 @X @s @6 to BLAS (Fortran).","0.7.1"],"duplex":["$8 Duplex $y: interactive streams","0.7.0"],"electrsd":["Utility to run a regtest electrs ^I, useful in $T $S ^K",C[16]],"mtl":["Matrix template @1. Dense2D matrix, SparseMatrix.","0.1.5"],"$P_neptune":["^r ^N @0 @3 - Amazon Neptune @ 2014-10-31",C[27]],"pgx-tests":["Test @k @0 'pgx'-@n Postgres &p",C[57]],"serializers":["Easily create &l serializers @0 @4 same $l","0.2.3"],"sp-consensus-babe":[C[56],"0.9.0"],"vertree":["A persistent trie where each node is typed @5 versioned",C[8]],"rdrand":["An @2 of &L &a @B @n on rdrand @5 rdseed instructions","0.8.1"],"fluence":[C[261],"0.6.9"],"snarkvm-profiler":["Profiler @0 a decentralized virtual machine","0.7.9"],"gaffer_udp":["A @9 on top of udp ^R some reliability. Not ready @0 public consumption.","0.1.4"],"pqcrypto-internals":["@6 to $u cryptography",C[8]],"$P_appconfig":["^r ^N @0 @3 - Amazon AppConfig @ 2019-10-09",C[27]],"strcursor":["@W a $c cursor $l @0 seeking through a $c whilst respecting grapheme cluster @5 @V point boundaries.","0.2.5"],"litcrypt":["Let's encrypt $r $c statically during compile $z",C[1]],"glutin_wgl_@r":["$8 wgl @6 @0 glutin","0.1.5"],"alloc_counter_@e":["$8 #[no_alloc] @e @0 @4 alloc_counter @8.","0.0.2"],"pgx":["pgx: A @3 @k @0 $Z Postgres &p",C[57]],"file-sniffer":["Command-$D ^4 to find $j artifacts @5 junk on $r computer.","3.0.1"],"bm-le":["Little endian 256-bit layer @0 $Q merkle trie @7 ssz compatibility @5 &p",C[16]],"loupe":["Profiling ^4 @0 @3","0.1.3"],"google-iam1-cli":[C[570],C[34]],"contrail-derive":["Custom @b @0 contrail.",C[3]],"lambda_@I":[C[156],"0.4.1"],"cosmwasm-schema":["A dev-&m @0 CosmWasm contracts to ^n ^k Schema @z.",C[97]],"raui":[C[235],"0.38.2"],"glit":["A $w @0 pretty-printing git stats",C[1]],"tetsy-trie-db":["tetsy merkle-patricia trie ^G &6 key hasher @5 node $5","0.22.3"],"lolapi":["Rate limited League of Legends @x @h (WIP)","0.5.0"],"libedgegrid":["@Q @1 implements an Authentication handler @0 theAkamai OPEN EdgeGrid Authentication scheme in @3","0.1.1"],"cross":["Zero setup cross compilation @5 cross $S",C[5]],"atm-async-utils":["^e @0 ^5 @5 $S @Z::Sink @5 @Z::Stream related @V.",C[5]],"raw-window-metal":["Interop @1 $t Metal @5 raw-window-handle",C[4]],"^Z_enum":["Space-^Z enum ^V","0.3.1"],"mut_&k":["@W a struct to help create mutable statics @7 lazy_static.","5.0.0"],"text-to-polly-ssml":["Converts ^D to polly SSML. Using a bad @G.",C[2]],"reset-router":["A RegexSet @n path router @0 Hyper","0.8.3"],"etc":["It's $z to bundle etc @0 $r awesome ^g!",C[60]],"impl-num-traits":["num-$3 @2 @0 uint.","0.1.1"],"rust-bio-tools":["A set of $I @5 robust @D $D @E @0 bioinformatics tasks @n on @3-Bio.","0.30.1"],"worker":["A @3 ^N @0 $O Cloudflare Workers.","1.0.0"],"solana-watchtower":[C[58],"1.8.1"],"cargo-chef":["A @S sub-@D to $j ^g &c @0 optimal Docker layer caching.","0.1.31"],"unicode_names2":[C[433],C[2]],"mli_mep":["Multi Expression Program @2 @0 mli","0.10.3"],"pokerhandrange":["Texas Hold'em hand ranges. Tells you if two cards are in them @5 can be $2 to ^n card combinations.","0.1.1"],"accessors":["(WIP) Getters @5 setters @0 @3 @u @a 1.1","0.0.3"],"nohash-hasher":[C[104],C[3]],"contracts":["Design-by-contract attributes","0.6.2"],"tab":["$8 intuitive, config-driven $o multiplexer","0.5.7"],"dbui-assets":["Embedded &e assets @0 dbui","0.0.64"],"ruma-state-res":["An $F @0 Matrix state resolution.","0.4.1"],"redis-async":["An $n @Z @n Redis @c @0 @3 @u Tokio",C[28]],"wayland-commons":["&O @g @5 $k $2 by wayland-@c @5 wayland-@U.",C[98]],"temp-dir":["@K temporary directory @7 cleanup",C[38]],"basalt":["A window/ui @k built upon vulkan.",C[28]],"chess-move-gen":["Fast chess move ^1 @1. Uses SIMD @0 $I sliding piece move ^1","0.8.2"],"forest_actor":["Actors @0 @4 Filecoin @9","3.0.0"],"nthash":["ntHash is a rolling ^z @Y @0 hashing all possible k-mers in a DNA sequence.","0.5.0"],"rsfs":["A ^G filesystem @7 disk @5 in-$g @T.","0.4.1"],"cbor-diag":["A @8 @0 @R @w encoded in [Concise Binary Object Representation(CBOR)](&Y://cbor.io) (in any of raw $Q, hex encoded (@7 comments) ordiagnostic notation) then printing it out in either annotated hex form ordiagnostic notation.","0.1.8"],"rosalind-cli":["CLI @0 `rosalind` @8","0.0.15"],"webview-official-sys":["Official Webview-org raw ffi @6",C[4]],"ns-router":["A configurable name resolver @0 abstract-ns","0.1.6"],"solana-ramp-tps":["Solana Tour de SOL - TPS ramp up","1.6.28"],"tikv-jemallocator":[C[175],"0.4.1"],"syscalls":["A list of &j @O calls.","0.5.0"],"ethers-providers":["Provider @T @0 @4 ethers-rs @8","0.5.5"],"muta-codec-derive":["Muta fixed codec @b $e @a.",C[8]],"anchor-syn":["Anchor syntax @R @5 @V ^1 &1",C[43]],"groestl":["Grøstl ^z @Y","0.9.0"],"hamming":["Count ones, $I (aka popcount, hamming weight). @Q @s aperformant popcount @5 bitwise hamming distance @0 a slice of bytes.","0.1.3"],"cpufeatures":["Lightweight @5 ^Z no-std ^i alternative to theis_x86_feature_detected! @e",C[5]],"oxygengine-input":["Input ^F @0 Oxygen Engine",C[42]],"chemfiles-sys":["@3 $L declaration @0 @4 chemfiles @1",C[12]],"rfind_url":["&B to search $p @0 URLs in reverse order","0.4.4"],"cstree":[C[93],C[13]],"futures-threadpool":["An @2 of &d pools @u @Z",C[0]],"heron_@F":["Core components @5 resources to $d Heron","0.12.1"],"proconio":["Easy IO @1 @0 competitive $m","0.4.3"],"dcpu16":["DCPU-16 assembler, disassembler @5 emulator",C[2]],"jsonrpsee-http-client":["^s @c @0 ^k-RPC","0.4.1"],"humanesort":["A @8 @0 sorting @4 way humans would.","0.1.0-alpha"],"ckb-librocksdb-sys":[C[321],"6.20.4"],"mccs-db":["MCCS specification VCP ^Q",C[4]],"sctpx":["A @d @5 &E SCTP @h.","0.1.622"],"mtbl-sys":["$L @H to @4 MTBL C @1 (&Y://github.com/farsightsec/mtbl)",C[3]],"$v_schedule":["@Q @8 helps schedule tasks in $v @I",C[1]],"color-thief":["Grabs @4 dominant color or a representative color palette @t an image.",C[5]],"savefile":["@K, convenient, $I, versioned, $Q @M/&9 @1. Works on stable @f, but @s much better $J @7 nightly.","0.8.3"],"elsa":["Append-only &C @0 @3 where borrows to entries can outlive insertions","1.4.0"],"liar":["Flexible, stand-alone benchmarking.","0.5.0"],"controlled-option":["Custom Option $l @7 explicit control &6 niches @5 $g layout","0.4.1"],"fsm":["A @d Finite State Machine @1, provide State @5 Event @g, then create a machine @7 an initial state, give it some transition behaviours @5 you have $r state machine!",C[8]],"sp-offchain":["Substrate offchain workers $9","3.0.0"],"meowhash":["Meow ^z @Y",C[1]],"imgui-glfw-rs":["ImGui input ^a @0 GLFW","0.4.1"],"rrun":["minimalistic @D launcher in @f similar to gmrun","0.2.3"],"tape":["$8 @1 @s basic $B @7 tape archives (tar).","0.5.1"],"ra_ap_completion":["TBD","0.0.38"],"sonnerie":["An &x timeseries ^Q","0.6.1"],"cbor-tag-index":["Tag index",C[5]],"@d_parallel":["Straight-forward @y @5 @g @0 basic @w paralleloperations, including parallel maps, @0 loops @5 &d pools.",C[1]],"ockam_vault":["A software-only Ockam Vault @2.",C[53]],"rain_@F":["Distributed computational @k @0 large-scale task-@n pipelines. &O @F @1.",C[2]],"secp256kfun":["A mid-@C secp256k1 @1 optimized @0 fun!","0.6.2"],"xcb":["@3 @6 @5 &r @0 XCB",C[12]],"net-literals-impl":["Internal @2 of @4 net-literals @8",C[4]],"runt":["A ^O @5 parallel snapshot $S @k.",C[9]],"diffus":["Finds @4 difference $t two instances of any @w $V. Supports: &C, Strings, Maps etc. Uses LCS where applicable. Also supports @b via `diffus-@b`.",C[13]],"stderrlog":["Logger @l logs to stderr @n on verbosity specified","0.5.1"],"bytemuck":["A @8 @0 mucking $G @7 piles of bytes.","1.7.2"],"float_extras":["Extra floating-point math @y @t C math @1.","0.1.6"],"fastlog":["A high $J $n logger",C[5]],"openexr":["High-@C @6 to OpenEXR 3.0.5",C[16]],"polonius":[C[865],C[1]],"jane-eyre":["By Currer Bell",C[1]],"gpiochip":["Package to $d &j /dev/gpiochip &N","0.1.1"],"ethabi":[C[563],"15.0.0"],"cool_faces":["Generates cool faces @0 $r ^g.( ͡° ͜ʖ ͡°)","0.1.4"],"rog":["A @3 logger","0.1.9"],"financial":["A $b of finance calculations mimicking some of Excel Financial Functions @m","1.1.3"],"piston-texture":["A ^G @1 @0 textures",C[7]],"find-winsdk":["@W @j @0 detecting ^6 ^N installations.",C[3]],"wasm3":["@3 @6 @0 wasm3","0.3.1"],"av-stream-info-rust":["Analyze a &z/&Y internet address @5 display $f if an audio or video ^L has been found. All $f is extracted @t metainformation.","0.10.2"],"factorial":["Convenient &P to compute @4 factorial, optionally checked.",C[5]],"kurobako":["A black-box optimization benchmarking @k","0.2.9"],"tp-chain-spec":["Tetcore chain configurations @g.","2.1.2"],"tokio-uds-proto":["Unix Domain sockets ^p @7 $v-proto","0.1.1"],"azure_sdk_^x_@F":["@3 &r $G Microsoft Azure REST APIs - Core ^x @8","0.44.4"],"procedurals":["Collection of ^B-@a","0.3.1"],"marine-it-interfaces":["Fluence Marine @m @g ^t @8","0.4.1"],"stakker_mio":["Mio I/O polling $T @0 @4 Stakker @8",C[8]],"leaf":[C[260],C[5]],"interledger-http":["^s @c @5 @U services @0 Interledger.rs",C[2]],"branca":["Authenticated encrypted @x tokens @0 @3. A secure alternative to JWT.",C[13]],"walrus":["A @1 @0 performing $x transformations",C[95]],"miscreant":["&T: please switch to @4 `aes-siv` or `aes-gcm-siv` $R","0.99.0"],"tauri-macros":["^o @0 @4 tauri @8.",C[96]],"rog_fan_curve":["A @1 @5 ^y @0 setting fan curves on some asus laptops.",C[38]],"tar":["A @3 @2 of a TAR $0 reader @5 writer. @Q @1 does notcurrently handle ^C, but it is abstract &6 all I/O readers andwriters. Additionally, great lengths are taken to ensure @l @4 entirecontents are never required to be entirely resident in $g all at once.","0.4.37"],"reverse_geocoder":["Offline reverse geocoder @1.","2.0.1"],"azure_sdk_^x_blob":["@3 &r $G Microsoft Azure REST APIs - Blob ^x @8","0.45.3"],"xor-distance-exercise":["Xor distances exercise including xor @5 bit $B.","0.3.6"],"codegame":["CodeGame @k",C[387]],"orca":["A Reddit @x @c @0 @3","0.7.0"],"local-encoding":["@3 @1 @0 $5/^P $c @7 local charset. It usefull @0 work @7 ANSI $p on ^6.",C[3]],"tracetree":["Trace @4 execution of an entire ^I ^0.","0.1.5"],"oxygengine-ignite-derive":["Ignite @b ^F @0 Oxygen Engine",C[42]],"cosmos-sdk-proto":["Protobuf stuct defintions @0 &2 Cosmos ^N powered blockchains","0.7.0"],"selinux-sys":["Flexible Mandatory Access Control (MAC) @0 &j","0.5.1"],"data-encoding":["Efficient @5 customizable @w-$5 @y $C base64, base32, @5 hex","2.3.2"],"bimap":["Bijective maps","0.6.1"],"cxx":["Safe interop $t @3 @5 C++","1.0.56"],"transaction-pool":["&W transaction pool.","2.0.3"],"patricia-trie-ethereum":["Merkle-Patricia Trie (Ethereum Style)",C[0]],"kiro-editor":["kiro is a simplistic $o ^D editor.","0.4.3"],"tinybmp":["No-std, low $g footprint BMP image loader","0.3.1"],"highwayhash":["@H to AVX-2-optimized SIP-$C ^z @y","0.0.14"],"vk-parse":["Vulkan specification @i","0.6.0"],"solana-banks-client":["Solana banks @c","1.8.1"],"cql_ffi":["A mostly $M @h of @4 DataStax C++ CQL driver.Works @7 both stable @5 nightly",C[5]],"soup":["Inspired by @4 python @1 BeautifulSoup, this is a layer on top of html5ever @l adds a different @x @0 querying @5 manipulating HTML","0.5.1"],"event-listener-primitives":["Low-@C primitive @0 $K Node.js-$C event listeners","2.0.1"],"irust_^S":["IRust @x","0.27.0"],"objc-encode":["Objective-C $l $5 creation @5 @R in @3.","1.1.0"],"atomic_ref":["Atomic &'a T @g @7 @j @0 &k allocation",C[5]],"wmidi":["Midi @R @1.","4.0.6"],"syn-next":[C[380],C[82]],"google-content2_sandbox":[C[851],"2.0.8+20181009"],"rustc-ap-rustc_feature":["^W published $4 of @4 @X `rustc_feature` in @4 @f-lang/@f repository @t commit 9a27044f42ace9eb652781b53f598e25d4e7e918 $8 publishing script @0 this @8 lives at: &Y://github.com/alexcrichton/&K-auto-publish",C[215]],"lpsolve":["High-@C lpsolve @h",C[0]],"yada":["Yada is a yet another double-array trie @1 aiming @0 $I search @5 compact @w representation.",C[2]],"cargo-wipe":["recursively wipe target @5 node_modules folders","0.3.1"],"lcd":["Hitachi HD44780-^i LCD screen @j @0 ^b &D",C[448]],"sim":["Sim is a discrete event simulation @X @l facilitates @3- @5 npm-@n simulation products @5 projects",C[13]],"veml6075":["Platform-&f @3 ^j @0 @4 VEML6075 UVA @5 UVB light sensor.",C[5]],"futures-await-quote":["Temporary fork of @4 `quote` @8 @0 @Z-await",C[2]],"wasm-logger":["A logger @l sends a message @7 its @3 source's $D @5 filename to @4 browser console",C[3]],"nmap-analyze":["Analyzes nmap xml &Z @5 compares results @7 expected specification","1.0.0"],"lense":["High $J by-ref, transmute backed reader.",C[4]],"lindera-ipadic-builder":["A Japanese morphological dictionary &I @0 IPADIC.",C[7]],"ironrdp":["A @3 @2 of @4 Microsoft Remote Desktop ^c","0.4.2"],"ndk-macro":["Helper @a @0 android ndk",C[3]],"const-cstr-fork":["Create &k C-^i $p @t @3 $c literals. Fork of &Y://github.com/abonander/const-cstr",C[8]],"$P_ecr":["^r ^N @0 @3 - Amazon EC2 Container Registry @ 2015-09-21",C[27]],"tokio-postgres-native-tls":[C[284],C[59]],"prometheus-hyper":["&7 Tokio/Hyper @U to run Prometheus &q",C[4]],"libstrophe":["@3 ergonomic @h @0 libstrophe",C[72]],"josekit":["JOSE (Javascript Object Signing @5 Encryption) @1 @0 @3.","0.7.3"],"tokio-nsq":["A @3 NSQ @c built on Tokio. Tokio NSQ aims to be a feature @q NSQ @c @2.",C[28]],"minidom":["A &7, @d DOM @2 on top of quick-xml",C[15]],"lib3h_zombie_actor":["lib3h actor request tracking ^F","0.0.42"],"ya-service-bus":["Golem Service Bus","0.4.10"],"rusty_tarantool":["Tarantul @J @c @n on $v @k","0.2.10"],"censor":["A @d ^D profanity filter",C[3]],"enum_dispatch":["Near drop-in replacement @0 dynamic-dispatched method calls @7 up to 10x @4 speed","0.3.7"],"hrpc":["&O @V @0 hRPC.","0.24.0"],"oha":["Ohayou(おはよう), ^s load @B, &X by rakyll/hey @7 tui animation.","0.4.7"],"motivations":["a $b of motivating &y","1.1.2"],"google-dlp2_beta1":[C[502],"2.0.8+20171205"],"test-logger":["@K ^t to initialize env_logger before unit @5 $T tests. Works on stable @f.",C[0]],"inline-python":["Inline Python @V directly in $r @3 @V","0.7.1"],"theban_interval_^0":["A @d Interval Tree @2","0.7.1"],"git_hooks":["A @d @S $j script to copy a hooks folder ^d .git/hooks so @l $r developers are all running @4 same git hooks","0.1.3"],"fabric-support":[C[921],"2.0.0"],"tauri_includedir_^H":[C[64],"0.6.3"],"project-cleanup":["CLI ^4 to clean up @5 remove old ^8 @V in $r @3, Javascript @5 Java projects","1.0.0"],"swc_ecma_^u":["^e @0 swc ecmascript ast nodes","0.49.0"],"dwmapi-sys":["Contains @Y $h @0 @4 ^6 @x @1 dwmapi. See winapi @0 @g @5 constants.","0.1.1"],"frugalos_config":["Configuration Management Layer of Frugalos","1.2.0"],"vec-2-10-10-10":["A 32-bit vector, where 2 bits are dedicated @0 alpha, @5 30 bits are dedicated @0 color. Compatible @7 GL_UNSIGNED_INT_2_10_10_10_REV vertex &U @G.",C[4]],"screenruster":["X11 screen saver @5 locker.",C[5]],"crude-profiler":["@d @1 @0 crude manual profiling","0.1.7"],"zeit-rs":["A CLI $z tracking ^4 in @3",C[4]],"graphplan":["@v of @4 Graphplan planning $1 @t Avrim L. Blum @5 Merrick L. Furst in @3","0.6.1"],"image-interlacer":["It helps you interlace an image or &l images @0 &e-page usage.",C[60]],"backtrace-sys":["@H to @4 libbacktrace gcc @1","0.1.37"],"holochain_net":["holochain net",C[18]],"tdengine":["game @U @0 @3",C[4]],"thunderdome":["Fast arena ^l @7 compact generational indices","0.5.0"],"signalo_$3":["A $b of $3 $2 in 'signalo' umbrella @8.","0.5.0"],"cntr-fuse":["@3 @1 @0 filesystems in userspace (FUSE) (fork @7 $7 needed @0 @4 cntr ^g)","0.4.1"],"&k_assertions":["Compile-$z assertions to ensure @l invariants are met.","1.1.0"],"quale":["A @3 port of @4 `$i` $w. Locates an executable in @4 user’s path.","1.0.0"],"linfa-clustering":["A $b of clustering ^3","0.5.0"],"www-authenticate":["missing ^s WWW-Authenticate header @i/printer @0 hyper 0.11.x. 0.1.x @0 hyper 0.10.y, 0.2.x @0 hyper 0.11.y @5 0.3.x @0 hyperx",C[1]],"websocket-lite":["A $I, low-overhead WebSocket @c","0.5.0"],"base91":["Encoding $Q @w as ASCII characters. Similar to base64, but more ^Z.",C[0]],"websession":["Web Session Support @0 @3","0.12.1"],"pocketsphinx-sys":["$L @6 to libpocketsphinx","0.5.0"],"rangl":[C[61],C[62]],"sigma":["Sigma σ is a @K, Safe @5 Fast Template @L","0.1.1"],"@J_&5":["@K, persistent, $n ^V","0.2.7"],"$P_cognito_sync":["^r ^N @0 @3 - Amazon Cognito Sync @ 2014-06-30",C[27]],"toml-test-data":["TOML ^7 cases","1.0.0"],"emit":["A structured logger in @4 style of Serilog.",C[13]],"google-youtube3-cli":[C[240],C[63]],"cap-async-std":["Capability-@n $4 of @J-std",C[42]],"tiff":["TIFF ^P @5 $5 @1 in ^X @3","0.7.1"],"html_@i":["A @d @5 general purpose html/xhtml @i","0.6.2"],"dicom-transfer-syntax-registry":["A registry of DICOM transfer syntaxes",C[2]],"sentencepiece-sys":[C[318],"0.7.1"],"ldap3":["Pure-@3 LDAP Client","0.9.3"],"owning_ref":["A @1 @0 $Z references @l carry their owner @7 them.","0.4.1"],"cpp_$j":["Cargo $j script @0 @4 `cpp` @8","0.5.6"],"postcard":[C[642],"0.7.2"],"bitcoin_rpc_@c":["@3 @c @1 @0 talking to Bitcoin Core nodes @u JsonRPC.","0.6.1"],"clockpro-cache":["CLOCK-Pro cache replacement policy",C[32]],"google-tpu1_alpha1-cli":[C[945],"2.0.4+20210217"],"google-plusdomains1":[C[68],C[71]],"crc16":["A CRC16 @2",C[2]],"khronos_^S":["$8 Khronos XML @x Registry, exposed as byte $c constants.","3.1.0"],"git-series":["Track patch series in git","0.9.1"],"futures-test-preview":[C[695],C[19]],"oxilangtag":["@K @5 $I @2 of @L tag normalization @5 validation",C[4]],"webgl_stdweb":["WebGL @6 (stdweb)",C[1]],"tauri_includedir":[C[64],"0.6.1"],"opencl3":[C[993],"0.6.0"],"res":["Res is a $j-script &m @0 managing $r project's resources.","0.6.1"],"solana-vest-program":["Solana Vest ^U","1.6.28"],"cargo-manifest":["Helper @8 to parse @5 manipulate manifests - `Cargo.toml` @z.","0.2.6"],"tectonic_errors":["A boxed ^q $l @0 Tectonic, @7 supporting @E.",C[3]],"fluent-templates":["Templating @0 @4 Fluent localization @k","0.6.1"],"poison":["^e @0 $O poisoned @g.",C[0]],"sdr":["@3 SDR DSP $7","0.7.0"],"ruwren":["Rusty @6 to Wren $m @L","0.4.1"],"webview2-sys":["Low Level @H @0 WebView2 ^N","0.1.1"],"mumble-link":["Connector @0 Mumble Link positional audio",C[0]],"git-trim":["^W trims $r tracking branches whose upstream branches are merged or stray","0.4.2"],"google-firebasedynamiclinks1":[C[1054],C[65]],"c2rust-ast-builder":["@3 AST &I @j @8 @0 @4 C2Rust ^g",C[23]],"imag-grep":["Part of @4 imag @F ^m: imag-grep @D",C[12]],"noble-collective":[C[601],"2.0.0"],"google-prediction1d6-cli":[C[66],"2.0.4+20160511"],"google-vault1":[C[67],C[101]],"rustc-ap-rustc_index":["^W published $4 of @4 @X `rustc_index` in @4 @f-lang/@f repository @t commit 9a27044f42ace9eb652781b53f598e25d4e7e918 $8 publishing script @0 this @8 lives at: &Y://github.com/alexcrichton/&K-auto-publish",C[215]],"deno_^y":["A secure JavaScript/TypeScript @I built @7 V8, @3, @5 Tokio","0.23.3"],"@t_variants_impl":["Internal ^t @8 @0 from_variants @8.","0.6.0"],"oorandom":["A tiny, robust PRNG @2.","11.1.3"],"transit_model":["Transit @w ^A","0.41.3"],"assert-cmp":["Convenient assertion @a @l print @4 failed expressions @5 their evaluated ^V",C[3]],"taken":["^o @0 taking ownership, _staring Liam Neeson_","0.1.1"],"sgf":["SGF @i","0.1.5"],"quadratic":["Computes @4 Legendre @5 Jacobi symbols @0 integers @u @4 quadratic reciprocity law","0.3.1"],"artifactory-web-api":["An @x @c @0 JFrog Artifactory.","0.0.1"],"mit-prepare-commit-msg":["@Q hook is invoked by git-commit right after preparing @4 default log message, @5 before @4 editor is started.","5.11.6"],"substrate-wasmtime":[C[1032],C[95]],"flatbuffers":["Official FlatBuffers @3 @I @1.","2.0.0"],"$P_discovery":["^r ^N @0 @3 - ^r Application Discovery Service @ 2015-11-01",C[27]],"stratum-hns-types":["$8 Stratum @g specifically implemented @0 HNS","0.9.15"],"rayon-cond":["Experimental iterator @h @l is conditionally parallel or serial.",C[3]],"diesel_derives":["You should not $d this @8 directly, it is ^J to Diesel.","1.4.1"],"luftpost":["Watches luftdaten.info particulates sensors @5 sends E-Mails if measurements exceed thresholds","1.0.0"],"gfx_window_glutin":["Glutin window @0 gfx-rs","0.31.0"],"google-identitytoolkit3":[C[576],"2.0.8+20180723"],"adi_gpu_vulkan":["Vulkan @2 @0 adi_gpu",C[16]],"better_any":["Type id @5 Any @0 non &k @g","0.2.0-dev.1"],"estree":["A deserializer @0 @4 ESTree @G.","0.0.5"],"tiny-bip39":["A fork of @4 bip39 @8 @7 fixes to v0.6. @3 @2 of BIP-0039","0.8.2"],"$6_prometheus":["$6-@n serializer @0 prometheus' ^D-@n exposition @G","0.1.6"],"mailin-embedded":["An SMTP @U @l can be ^b in other programs","0.6.1"],"weighted-rs":["A libray @0 weighted balancing $1.","0.1.3"],"image":[C[676],"0.23.14"],"thruster-app":["$8 App portion of @4 thruster &e @k",C[78]],"cranelift-faerie":["Emit Cranelift &Z to &8 object @z @7 Faerie","0.66.0"],"dotenv_^H_@2":[C[25],C[23]],"sensehat-screen":["A @1 @0 @u @4 8x8-LED matrix, @7 RGB565 coloring, on @4 Raspberry Pi Sense HAT device.","0.2.6"],"quote-next":[C[861],"1.0.0-rc3"],"la-arena":[C[263],C[5]],"cargo-travis":["Run coverage, upload docs, @5 more on travis.","0.0.11"],"tap-reader":["Wraps an existing reader @5 copies @4 read bytes ^d it's own buffer","1.0.1"],"slippy_map_tilenames":["Converts lon/lat coordinates to slippy map tile @G (OpenStreetMap/Google Map @G).",C[3]],"website-icon-extract":["extract favicon link paths @t a html page @t different standards","0.5.0"],"der-oid-macro":["Macro to encode DER oids at compile $z","0.5.0"],"tantivy-common":["$u $3 @5 $w @y $2 by &l tantivy subcrates",C[0]],"tiny-multihash-derive":[C[442],"0.5.0"],"ibmfloat":["IBM floating point &a @g","0.1.1"],"proxyconf":["^6 proxy $H @t @4 @D $D.",C[5]],"sloth":["@W a ^G @h struct @0 lazy initialization.",C[3]],"redarrow":["Execute commands on remote servers.","0.16.1"],"cld2":["Detect natural @L $2 in ^D @u @4 cld2 @1","1.0.2"],"aspect":[C[201],C[1]],"sn_routing":[C[213],"0.77.10"],"tirse":["$6 frontent @0 $Q @G","0.6.0"],"enum-set":["A $V @0 holding a set of enum variants","0.0.8"],"strscan":["@K @f @1 @0 matching ^D against regular expressions @0 $d in lexers or other software.","0.1.1"],"buttplug_@b":["Trait &n ^o @0 Buttplug Intimate Hardware Control @p","0.6.2"],"bitcoin":["General purpose @1 @0 @u @5 interoperating @7 Bitcoin @5 other cryptocurrencies.","0.27.1"],"sdio-host":["SD host @9 @1","0.5.0"],"readmouse":["A very &7 @1 @0 &3 @4 mouse location @5 mouse button presses on macOS.",C[5]],"github-templates":["Generate GitHub issue templates",C[3]],"utf8-decode":["UTF-8 incremental ^P iterators.","1.0.1"],"spirv-tools":[C[800],"0.7.1"],"comde":["Compression/decompression akin to $6","0.2.3"],"noble-scheduler":["FABRIC example noble","2.0.0"],"ra_ap_^D_edit":["TBD","0.0.79"],"mould-nfd":["&M $0 dialogs @0 Mould @k.","0.0.8"],"gnuplot":["@3 gnuplot controller","0.0.37"],"tbe":["Truncated Binary Encoding","0.3.3"],"index-pool":["A pool $i manages allocation of unique indices. Acts $C a psuedo-$g ^l.","1.0.11"],"httimple":["@K HTTP2 @X 😃","0.1.7"],"solana-bpf-loader-api":[C[436],"0.20.5"],"kync":["KyNc – a ^G @x @0 key encapsulation @5 a @3 @m to KyNc-plugins",C[3]],"strong-xml-derive":["&n marco of strong-xml.","0.6.3"],"nipper-trunk":[C[357],"0.1.9"],"trust-dns-resolver":["Trust-DNS is a $M @5 secure DNS @1. @Q Resolver @1 uses @4 Client @1 to perform all DNS queries. $8 Resolver is intended to be a high-@C @1 @0 any DNS record resolution see Resolver @5 AsyncResolver @0 supported resolution @g. $8 Client can be $2 @0 other queries.",C[41]],"authz":["Permission-@n authorization @1","0.1.5"],"ark-nonnative-field":["Constraints @0 nonnative field gadgets",C[1]],"memcache":["memcached @c @0 @f","0.15.2"],"krb5-sys":["@H to @4 krb5 @1, incomplete state",C[1]],"futures-core-preview":[C[741],C[19]],"croaring-sys":[C[854],"0.5.1"],"$6_variant":["Retrieve $6 provided variant names @0 enum objects.","0.1.1"],"integral-exponential-polynomial":["Integral exponential polynomial",C[3]],"arguments":["$8 @X @s a @i @0 @D-$D arguments.","0.6.2"],"example_dylib":["Example dynamic link @1 @0 executing tests of &4 @l load @5 operate on dynamic link &4",C[0]],"slack_^S":["Interface @0 @4 Slack Web @x","0.23.1"],"runes":["No-std NES emulator @1 @5 minimal emulator $A purely in @3.","0.2.5"],"pipes":["Stream-@n $m @7 compositional pipelines in @3","0.0.1"],"rbatis-macro-driver":["rbatis @e ^j 高性能@3 orM框架 宏系统支持","2.1.0"],"rwcell":["rwcell - &5 container $i allow to simultaneously read @5 modify &5 @t two separate threads",C[4]],"pcre2-sys":["Low @C @6 to PCRE2.","0.2.5"],"slicer":["A $w @l slices $c slices ^d smaller $c slices.","0.1.1"],"iaq-core":["Platform-&f @3 ^j @0 @4 iAQ-Core indoor air quality sensor. Compatible @7 iAQ-Core-C @5 iAQ-Core-P.",C[0]],"entropy":["Calculates @4 Shannon entropy of arrays of bytes @5 $p","0.4.1"],"ncollide_testbed2d":["2D testbed @0 ncollide.","0.5.0"],"tcmalloc-sys":[C[907],C[1]],"cute-log":["@K @5 cute logger @0 log @8","2.0.7"],"vorbis-sys":["$L @0 @4 libvorbis @1","0.1.1"],"sd":["An intuitive find & replace CLI","0.7.6"],"item":["Nom @i @0 @3 items",C[9]],"imag-diary":["Part of @4 imag @F ^m: imag-diary @D",C[12]],"unic-emoji":["UNIC — &h Emoji","0.9.0"],"doapi":["A @h @1 @0 @4 DigitalOcean @x v2","0.1.3"],"bevy_ecs_@a":["Bevy ECS ^o","0.5.0"],"simdty":["Definitions of many SIMD @g.","0.0.6"],"google-plusdomains1-cli":[C[68],C[69]],"tint":["Color creation @5 manipulation","1.0.1"],"good_lp":["Linear Programming @0 @3, @7 an user-&E @x. @Q @8 allows modeling LP problems, @5 lets you solve them @7 various solvers.","1.2.0"],"google-plus1":[C[70],C[71]],"random-names":["@K &L names @l can be $2 to name components @0 log @z etc.","0.1.3"],"ignore-result":["Adds a `Result<_, _>.ignore()` method to ignore @4 return &5 of a @Y call ^Y panicking in case of ^q.",C[3]],"apt-pkg-native":["@H @0 libapt-pkg",C[9]],"tensorflow-sys":[C[194],C[42]],"dusk-hades":["@v of Hades252 permutation $1 &6 @4 Bls12-381 Scalar field.",C[72]],"wireguard-vanity-address":["Find Wireguard VPN keypairs @7 a specific readable $c",C[2]],"umio":["Message Based Readiness @x In @3",C[1]],"stm32f7xx-hal":["HAL @0 @4 STM32F7xx family of $s","0.5.0"],"rust-releases-io":["I/O ^t @8 @0 @f-releases",C[72]],"djb33":["DJB33 ^z $1 &0 in @3.",C[1]],"libknox":["secret vault encrypted @7 GPG",C[2]],"rusty-x":["A snippet &F in @3","0.1.75"],"rs-ecs":["reasonably @d entity component @O","0.3.8"],"rendy-resource":["Rendy's resource &F","0.5.1"],"tokio-net":[C[137],C[30]],"$6_mcf":["Serde deserializer @0 Modular Crypt Format (MCF)","0.1.3"],"x64_asm":["x86_64 assembler","0.1.45"],"ppbert":["@K pretty printer @0 Erlang's External Term Format","0.12.1"],"iron-sessionstorage":["Session &G @0 Iron.","0.6.6"],"openssl-src":["Source of OpenSSL @5 logic to $j it.","300.0.2+3.0.0"],"nanorand":["A tiny, $I, zero-dep @1 @0 &L &a ^1.","0.6.1"],"smithy_@g":["@g related to Smithy","0.0.7"],"hecate":["OpenStreetMap Inspired Data Storage Backend Focused on Performance @5 GeoJSON Interchange","0.62.0"],"serde-tuple-vec-map":["Deserialize a serialized map to a Vec<(K, V)> in $6","1.0.0"],"acme-lib":["@p @0 requesting certificates @t an ACME provider.","0.8.2"],"kailua":["🌴 Type Checker @5 IDE Support @0 Lua","1.1.0"],"google-classroom1-cli":[C[378],C[54]],"sc-executor":[C[176],"0.9.0"],"snake_case":["SnakeCase is a String-$C $l @l can only contain valid non-empty snake_case","0.3.1"],"imag-notes":["Part of @4 imag @F ^m: imag-notes @D",C[12]],"cgl":["@3 @6 @0 CGL on Mac",C[9]],"yy-boss":[C[73],"0.5.10"],"khalzam":["@K audio recognition @1, port of khalzam-go","0.3.9"],"screenprints":["reprints @0 $r $o screen","0.1.1"],"apa102-spi":["SPI-@n Driver @0 apa102 leds",C[9]],"sgxs":["@p @0 ^p @7 @4 SGX ^L @G.","0.7.2"],"isbn":["A @1 @0 ^a ISBNs.",C[3]],"serde-mappable-seq":["Unnoficial third-party $6 (de)serializers @0 mappable sequences",C[0]],"swc_atoms":["Atoms @0 @4 swc ^g.","0.2.9"],"w5500":["W5500 IoT Controller @2. Currently UDP sending @5 receiving is ^p. WIP",C[1]],"gpu-descriptor-types":["Core @g of gpu-descriptor @8","0.1.1"],"python-parser":["A @q Python @i @n on nom.",C[3]],"inet2_@b":["Derivation @a @0 Internet2-@n $R",C[48]],"human-hash":["Generate human readable ^z digests",C[1]],"imgref":["A trivial struct @0 interchange of 2d-dimensional pixel buffers @7 width, height & stride","1.9.1"],"statsd":["A basic statsd @c @0 @f.","0.14.1"],"afl":["Fuzzing @3 @V @7 american-fuzzy-lop",C[16]],"crates-index-diff":["Learn what's changed in @4 crates.io index","8.0.0"],"const-tweaker-attribute":[C[512],"0.5.0"],"expat-sys":["XML @i @1 $A in C","2.1.6"],"cfg":["@p @0 manipulating context-free grammars.","0.5.0"],"rmp":["Pure @3 MessagePack @M @2","0.8.10"],"google-licensing1":[C[129],C[65]],"^f_libra_nextgen_&Q":["Solana Libra nextgen_crypto","0.0.0"],"async-stripe":[C[140],"0.13.0-rc3"],"diceware":["A @D $D diceware, sans dice.",C[1]],"clipper-sys":["Boolean $B on polygons (Clipper @h)","0.5.0"],"crates-io-cli":["Interact @7 crates.io @t @4 @D-$D","4.0.0"],"urlparse":["@Q is a URL @R @1 $C urllib.parse in Python3.x.","0.7.3"],"probe":["Static instrumentation probes",C[5]],"tangle":["Future @2 @0 @3",C[2]],"enum_@b":["@Q @8 @s @a @0 deriving additional $7 @0 enums.","0.1.7"],"relay":["A ^O oneshot Future channel.","0.1.1"],"etcommon-hexutil":[C[445],"0.2.4"],"cargo-all-features":["A Cargo &i to $j @5 ^7 all feature flag combinations","1.6.0"],"crc-core":["@F @y &J $t source @5 $j script of crc @8",C[4]],"md2tex":["A &7 $w to convert markdown @z to pdf exploiting tectonic. @Q is a forked $4 @n off of tforgione's awesome @1 (&Y://gitea.tforgione.fr/tforgione/md2pdf/).","0.1.3"],"lrpc-macros":["lrpc's ^B @a","1.0.0"],"curs":["Hyper ^s @c lib, feels more $C curl. Supports $0 Uploads.","0.1.3"],"ethcontract-common":["&O @g @0 ethcontract-rs @I @5 ^B @e.",C[99]],"cdb":["Pure @3 @1 to read @5 &0 CDB @z","0.6.0"],"warp-sessions":["&W session &G @0 @4 warp ^s @k","1.0.15"],"xz-decom":["XZ decompression @u xz-^b",C[3]],"risq":["Re-@2 of Bisq (&Y://github.com/bisq-^9/bisq) in @f","0.4.1"],"differ":["Differ is a @1 @0 finding @4 differences $t two sequences.","1.0.1"],"partition":["partition slices in-place by a predicate",C[4]],"mackerel_@c":["An @x @c @1 @0 Mackerel",C[2]],"tick":["An event loop @u mio @5 eventual","0.0.1"],"webrtc-media":["A ^X @3 @2 of WebRTC Media @x",C[2]],"cargo-whatfeatures":["display features, versions @5 &c of $R","0.9.7"],"grust":["GObjectIntrospection @6 @0 Rust.This is @4 @F @1 ^R basic $7 to allgenerated $R.",C[9]],"concurrent":["[deprecated] see `conc` instead.",C[8]],"solana-crate-features":["Solana Crate Features","1.8.1"],"&V_schema_^7_suite_^B_@e":[C[552],C[1]],"feed":["Deprecated. @Q ^g has been merged @7 @4 rss @8.","2.1.0"],"rustop":["A @d @D $D @i.","1.1.1"],"httpmock":["^s mocking @1 @0 @3","0.6.2"],"movingai":["MovingAI Benchmark Map/Scen File &B","1.2.0"],"dxgcap":["Screen capturing @7 DXGI @0 ^6 in @3","0.2.4"],"utf8-ranges":["&T. Use regex-syntax::utf8 submodule instead.","1.0.4"],"relm-derive":["Custom @b required by @4 relm @8.",C[74]],"job_scheduler":["A @d cron-$C job scheduling @1 @0 @3.","1.2.1"],"fdstream":["@T of ::std::io::Read @5 ::std::io::Write @0 posix $0 descriptors","0.0.5"],"font-atlas-image":["An image @n loader @0 font-atlas.",C[4]],"git-tempfile":["A tempfile @2 @7 a global registry to assure cleanup","1.0.3"],"pistoncore-glfw_window":["A GLFW window back-end @0 @4 Piston game $a","0.73.0"],"apodize":["@d iterators @l yield generalized cosine, hanning, hamming, blackman, nuttall @5 triangular windows","1.0.0"],"random-access-memory":["Continuously read,&0 to $g @u &L offsets @5 lengths","2.0.0"],"io-providers":["Enables &m injection @0 many I/O $B","0.2.0-beta.3"],"ovgu-canteen":["A canteen @i @1 @0 @4 Otto-von-Guericke University Magdeburg.","0.4.2"],"hoi4save":["Ergonomically work @7 HOI4 saves","0.1.6"],"google-dfareporting2d4":[C[116],C[117]],"combine-language":["Extra @i combinators, useful @0 @R $m languages.","4.0.0"],"online":["📶 @p to check $r Internet connectivity","3.0.1"],"hyparview":["A @3 @2 of HyParView $1","0.1.3"],"tc-consensus-babe":["BABE &A $1 @0 tetcore",C[7]],"mediawiki":["A MediaWiki @c @1","0.2.7"],"rsure":["Rsure captures hashes @5 metadata about a ^0 of @z, @5 canlater verify these hashes @5 metadata to determine if @4 @z havechanged. It supports incremental updates, @5 includes an standaloneexecutable @0 scanning @5 checking trees.","0.9.3"],"codeviz_java":[C[75],C[8]],"tolk-sys":["Raw ffi @6 to Tolk.dll",C[8]],"envoption":["Functions @0 @R ^K variables @7 @j @0 required, optional, @5 default ^V",C[5]],"convert-base":["convert @4 radix (base) of digits stored in a vector","1.1.2"],"typenum_loops":["A @1 @l @s loops $i are fully or partially unrolled at compile $z.",C[1]],"txtpic":["Generate &h art @t images","1.2.4"],"hmac-sha1":["Minimal @2 of HMAC-SHA1 in @3.","0.1.3"],"google-youtubeanalytics1":[C[76],C[77]],"self-meter":["A tiny @1 to measure resource usage of @4 ^I it's $2 in.","0.6.0"],"wlc":["Safe @H @0 Cloudef's wlc (Wayland Compositor C-@p)","2.0.1"],"rsat":["SAT Solver","0.1.12"],"rtfm-core":["Core abstractions of @4 Real Time For @4 Masses @k",C[1]],"jservice":["A jService @x @h.","0.1.4"],"rust-cate":["cat in @3 - cate, concatenate FILE(s), or ^E input, to ^E &Z. Very naive @2.","0.1.3"],"fastobo-graphs":["OBO Graphs @w model, decoder @5 encoder in @3.","0.4.3"],"dbl":["Double operation in Galois Field (GF)","0.3.1"],"fastcdc":["FastCDC (content defined chunking) in ^X @3.","1.0.5"],"symphonia-metadata":["Project Symphonia multimedia tag @5 metadata readers.",C[2]],"cervus":["Reserved @0 @4 Cervus subsystem to reach v0.5.0","0.4.99"],"simple-hex":["A @d ASCII hex-to-bytes-@5-back @1",C[0]],"beam_$0":["@p @0 &u Erlang BEAM $0",C[1]],"gl_@B":["Code generators @0 $Z @6 to @4 Khronos OpenGL APIs.",C[24]],"perfcnt":["@p to configure @5 read hardware $J counters in @f.","0.7.1"],"igd":["Internet Gateway ^c @c",C[28]],"sound_^L":["@W a @d @m to @4 default audio input @5 &Z device streams on a user's @O.","0.6.0"],"thruster-middleware":["$8 &G @0 @4 thruster &e @k",C[78]],"speexdsp-resampler":["Pure @f port of @4 speexdsp resampler",C[0]],"actix-web-macros":["Actix &e ^B @a",C[0]],"bismuth":["A 3D game world represented as cubes in an oct-^0 @l can be manipulated in real $z.","0.0.4"],"basic_dsp_vector":[C[281],"0.9.4"],"iana-time-zone":["get @4 IANA $z zone @0 @4 current @O","0.1.19"],"$P_kinesis_video_media":["^r ^N @0 @3 - Amazon Kinesis Video Streams Media @ 2017-09-30",C[27]],"objc":["Objective-C Runtime @6 @5 @h @0 @3.","0.2.7"],"flep":[C[696],C[3]],"prototty_^D":["Prototty ^D &S","0.29.0"],"chimper":["A graphical image viewer",C[2]],"miniquad":["Cross-@N window context @5 &S @1.","0.3.0-alpha.37"],"fui":["Add CLI & form @m to $r ^U.","2.0.0"],"netlify_headers":["Netlify Headers is a @i @0 Netlify _headers $0","0.1.1"],"l3gd20":["A @N &f ^j to @m @4 L3GD20 (gyroscope)",C[1]],"nzsc_single_player":["A @q @2 of NZSC $A in @3.","0.5.1"],"quickbooks":["An @x @c @0 @4 QuickBooks @x",C[49]],"byte_struct":["Pack @5 unpack $V as raw bytes @7 packed or bit field layout.","0.7.1"],"kib":["Formatting bytes to KiB, MiB...","4.0.0"],"wham":["An @2 of @4 weighted histogram analysis method","1.1.3"],"noble-babe":["Consensus ^h ^F @0 Tetcore BABE &A. Collects on-chain randomness @t VRF outputs @5 manages epoch transitions.","2.0.1"],"unicode-linebreak":["@v of @4 &h Line Breaking Algorithm",C[4]],"google-adexchangebuyer1d4":[C[228],C[92]],"fixed":["Fixed-point ^M","1.10.0"],"bb8-redis":["Full-featured @J ($v-@n) redis connection pool ($C r2d2)",C[12]],"parenchyma":["A high-$J computing (HPC) @k","0.0.33"],"stm32_i2s_v12x":["Driver @0 I2S communication (@u SPI peripherals) @0 some STM32 $s",C[3]],"ceph-rust":[C[79],"0.1.17"],"conrod_winit":[C[214],"0.75.0"],"acme-micro":["@p @0 requesting certificates @t an ACME provider (acme-lib fork).",C[28]],"stellar_vanity":["A @d CLI @0 $E Stellar vanity addresses",C[7]],"@f_hawktracer_^B_@e":[C[668],"0.4.1"],"conc":["Hazard-pointer-@n concurrent $g reclamation.","0.5.0"],"fenwick":["Fenwick ^0: @w $V @l efficiently calculates prefix sums in a changing array of ^M.","1.0.0"],"async-trait":[C[831],"0.1.51"],"iocp":["A ^6 IOCP @1 @0 @3","0.0.6"],"enumflags2":["Enum-@n bit flags","0.7.1"],"dmenv":["@K @5 practical virtualenv &F @0 Python",C[42]],"uvm_@F":[C[467],"0.9.0"],"self-meter-http":["A &z renderer @0 self-meter @8, easily pluggable ^d $v-@n, or tk-&z-@n. May be plugged in any other $U @u separate &d.","0.4.1"],"gsgdt":["&W Stringly Typed Graph Datatype","0.1.3"],"isilon":["Isilon rest ^S @6","5.0.1"],"npm_rs":["@W @d @3 to npm @6 to $d in $r $j scripts.",C[5]],"behold":["A @d @1 enabling contextual debugging","0.1.3"],"extension-trait":["Macro to declare ^h $3","1.0.0"],"juniper-from-schema":["Generate Juniper @V @t you GraphQL schema","0.5.2"],"nitrokey-sys":["Low-@C @6 to libnitrokey @0 communication @7 Nitrokey &N","3.6.0"],"mop":["Flexible @5 modular single or multi-objective solver @0 contiguous @5 discrete problems","0.5.0"],"ed25519-bip32":["Ed25519 BIP32",C[2]],"conduit-middleware":["^s Middleware @m @u @4 conduit @m",C[428]],"cuneiform-fields":["Field @C [no_std] cache optimizations @0 @3.","0.1.1"],"power-assert":["Power Assert in @3. @W better assertion message.","0.3.9"],"graphy_$Y":[C[80],C[3]],"markdown":["&M @3 @1 @0 @R Markdown @5 (outputting HTML)",C[1]],"ftp":[C[820],"3.0.1"],"zeropool-bn":[C[81],"0.5.9"],"goto_^g":["Easy @5 $I ^g switching in $r shell!",C[5]],"&V_@a":["Convenience @a @0 constructing ^k objects @t literals.",C[9]],"realm":["@3 / Elm base full stack &e @k.","0.1.23"],"sortrs":["An introspective sort @2.","0.0.5"],"numas":["numas @1 is @2 of multidimensional array @0 ^Z computing","0.2.7"],"ubiquity":["n-directional $0 synchronization $w",C[3]],"bolero-honggfuzz":["honggfuzz $Y @0 bolero","0.6.0"],"ldap-parser":["&B @0 @4 LDAP @9 (RFC 4511)",C[3]],"trash":["A @1 @0 moving @z @5 folders to @4 Recycle Bin","2.0.2"],"const-random":["@W compile $z &L &a ^1.",C[49]],"guid-macro-impl":["@v @8 @0 @4 $e guid! @e.",C[0]],"symbol":["@K globally interned $p.","0.1.7"],"bchannel":["A better channel @x","0.0.10"],"minimp3_ex-sys":["Raw $L @6 to @4 minimp3_ex @1","0.1.1"],"labhub":["Bot @0 running builds against GitHub @7 GitLab CI",C[32]],"proc-macro2-next":["A stable @2 of @4 upcoming new `proc_macro` @x. Comes @7 anoption, off by default, to also reimplement itself in terms of @4 upstreamunstable @x.",C[82]],"light_arena":["A ^O, placement @n $g arena @0 @g $i are Sized + Copy. @Q @8 requires nightly.","1.0.1"],"irc_message":["A &7 @1 @0 @R irc &y.","1.0.0"],"owned-alloc":["A @8 to help reducing manual $g ^A errors.",C[3]],"salvo":[C[83],C[84]],"fs-swap":["Cross-@N @2 of path swap","0.2.6"],"numext-fixed-uint":["Fixed-size uint @g.","0.1.6"],"epaste":["Tool to easily encrypt & encode encrypted @w as base64.","2.0.0"],"ichwh":["An @J @2 of `$i`","0.3.4"],"domain_patterns":["Domain patterns holds patterns @t @4 world of Domain Driven Design.","0.2.141"],"vasp-poscar":["read @5 &0 VASP POSCAR @z",C[9]],"phant":["A @1 @0 manipulating @w on a &z://phant.io @U.","0.1.5"],"easy-logging":["An &x way to get &H ^p in $r CLI ^4",C[4]],"ethkey":["Ethereum keys ^A supporting keystores, signing @5 verification","0.3.1"],"twitch_api2":["@p @0 talking @7 @4 new Twitch @x aka. \"Helix\", TMI @5 more!","0.6.0-rc.3"],"kube-core":["Kube &J @g, $3 @5 @c-less behavior","0.63.1"],"cmudict":["@p @0 @u @4 CMUSphinx pronunciation dictionary",C[9]],"typemap_rev":["A hashmap, but stores @g as keys","0.1.5"],"tensile":["A ^7 @k capable of dynamic @5 parallel ^7 execution","0.7.0"],"c2rust-ast-exporter":["Clang AST extraction @x @0 $d in @4 C2Rust ^g",C[23]],"susanoo_contrib":["Contributed &4 @0 Susanoo","0.0.6"],"ethereum-bigint":[C[637],"0.2.9"],"google-gamesconfiguration1_$H":[C[1067],C[85]],"metrics-observer-yaml":["A &q-@F ^i observer @l outputs YAML.","0.1.1"],"compile-time-run":["run a @D at compile $z @5 capture @4 &Z","0.2.12"],"socksv5":["SOCKS v4a @5 v5 basic $K blocks to $j $r own @J SOCKS $U",C[1]],"extendr-api":[C[154],C[3]],"midir":["A cross-@N, realtime MIDI &u @1, &X by RtMidi.","0.7.0"],"geo-clipper":["Boolean $B on polygons","0.7.0"],"webrtc-audio-processing":[C[623],"0.3.3"],"urlocator":["Locate URLs in character streams","0.1.4"],"cw-storage":[C[216],C[8]],"basic-hll":[C[86],"0.0.6"],"redbpf-macros":["$q @a @0 redbpf","2.0.2"],"rustacuda":[C[353],"0.1.3"],"cargo-ec":["Cargo $Y @0 $K @5 deploying smart contracts to @4 Ellipticoin ^9","0.1.19"],"$S":["Testing @E @0 @4 swc ^g.","0.15.1"],"diverge":["Extension injection site specification through a @d @e","0.0.4"],"onnx-pb":["ONNX @9 buffers &y.","0.1.4"],"peggler":["&B ^1 @u a PEG-$C syntax via @a",C[0]],"yamakan":["A $b of Black-Box Optimization ^3",C[3]],"js-intern-core":[C[90],"0.3.1"],"future-parking_lot":["An \"as @d as possible\" Future @2 @0 parking_lot","0.3.3"],"redro":[C[61],C[62]],"cart-tmp-gdesc":[C[247],C[0]],"tarpc-bincode-transport":["A bincode-@n transport @0 tarpc services.","0.7.0"],"throttler":["@K throttler $A in @3","0.1.3"],"replace-map":["Perform by-&5 $B through an &mut reference.","0.0.7"],"swc_@a_$u":["&O @E @0 swc @a.","0.3.3"],"s32k144evb":["Board @j @8 @0 s32k144evb",C[7]],"qadapt":["$8 Quick And Dirty Allocation Profiling Tool","1.0.4"],"pallet-contracts-proc-macro":["$q @a $2 in pallet_contracts","3.0.0"],"termbook":["$8 @1 behind @4 `termbook-^y`.","1.4.2"],"parity-bn":[C[81],"0.4.4"],"rstack-self":["Stack traces of all threads of a ^I",C[1]],"obfstr-impl":["$q @e @2 @0 obfstr","0.1.1"],"tristate":["A three-valued $l equivalent to Option.","0.1.1"],"proxy-wasm":[C[287],"0.1.4"],"wheel_timer":["A @d hashed wheel timer.","0.3.1"],"laz":["@3 port of Laszip ^C. of @4 LAS @G","0.6.0"],"makima_spline":["An @2 of @4 modified akima spline interpolation","1.1.3"],"liquid":[C[87],C[88]],"internment":["Easy interning of @w","0.5.4"],"rrule":["A ^X @3 @2 of recurrence rules as defined in @4 iCalendar RFC.","0.6.0"],"version-sync":["Crate @0 ensuring @l $4 ^M in README @z @5 other @z are kept in sync @7 @4 @8 $4.","0.9.3"],"colorparse":["Parse color $H $p (in Git syntax) ^d ansi_term::Style objects.","2.0.1"],"adskalman":["Kalman filter @5 Rauch-Tung-Striebel smoothing @2 @u nalgebra, no_std",C[28]],"dual_quaternion":["A $l-&f dual-quaternion math @1",C[0]],"libfa-sys":["&M @6 to @4 Augeas libfa Finite Automata @1","0.1.3"],"coercible_errors":["Zero-cost ^q ^a @0 ^G $3","0.1.4"],"lta":["🚍 Singapore LTA Datamall @3 Client $A in ^X @f @7 @j @0 $n requests","0.5.1"],"fon":["@3 audio @g, resampling, &u @5 mixing @1.","0.5.0"],"logger":["Logging &G @0 @4 Iron @k.",C[2]],"fabric-metadata":["Decodable variant of @4 RuntimeMetadata.","12.0.0"],"pcb":["Pink Compiler Backend: &R &f ^2 $N - @3 @p",C[3]],"mac_address":["Cross-@N retrieval of a ^9 @m MAC address.","1.1.2"],"fluence-fork-libp2p-gossipsub":[C[738],C[98]],"maskerad_object_pool":["A $b of object pools, @0 more ^Z dynamic $g allocation",C[1]],"rapier2d":["2-dimensional physics $a in @3.",C[17]],"reproto-manifest":[C[89],"0.3.36"],"tauri-winit":[C[158],"0.24.1"],"memmem":["Substring searching","0.1.1"],"sc-rpc":["Substrate Client RPC","3.0.0"],"econf-derive":[C[361],C[4]],"kmer_lookup":[C[50],"0.1.3"],"^z":["Use @4 md5 @X instead.",C[1]],"@t_$0_@b":["Enable #[@b(FromFile)]","0.1.3"],"cargo-clone-crate":["Cargo &i to clone a repo @t @4 registry.","0.1.6"],"gfx_debug_draw":["Debug &S @1 @0 gfx-rs","0.28.0"],"enum_primitive":["Macro to ^n num::FromPrimitive instances @0 enum @l works in @3 1.0","0.1.1"],"qr2term":["Stupidly @d @3 @8 to render a QR @V in @4 $o.",C[8]],"mdbook-linkcheck":["A $N @0 `mdbook` $i will check $r links @0 you.","0.7.5"],"syscall":[C[456],C[5]],"hiredis-sys":["$8 @X @s @6 to Hiredis.","0.4.1"],"ms-converter":["Fast $F @0 converting human-$C times ^d milliseconds.","1.4.0"],"bodhi":["bodhi REST @x @c","1.1.0"],"edcert-letter":["@Q @8 @s an $F &6 Edcert. You can $d @4 Letter $l to sign @5 verify content @u Edcert Certificates.","2.0.0"],"constmuck_^J":["^J @2 detail of constmuck, all of this is unstable",C[1]],"kalk_^y":["A calculator @l supports user-defined @y, variables @5 units, @5 can handle fairly ambiguous syntax.","0.5.4"],"oauth-credentials":["Types @0 representing @4 credential pairs of OAuth 1.0.",C[1]],"scabbard":["Scabbard is a Splinter &t @l runs @4 Sawtooth Sabre smart contract $a @u Hyperledger Transact @0 state ^A. Scabbard uses two-phase &A to reach agreement on transactions.","0.5.22"],"ice-age":["@K &H kit @0 @U programs",C[72]],"mould-auth":["Authorization services @0 Mould @k.","0.0.11"],"mogwai":["$8 minimal, obvious, graphical, &e $U @m.",C[2]],"streamlink":["@3 @x (kinda) @0 @4 streamlink $w.","0.3.1"],"secure-session":["Signed, encrypted session cookies @0 Iron",C[2]],"krecik":["&b, parallel external &t checker (@5 reporter), @u industry ^E &4: Curl, ngHTTP2 @5 OpenSSL.","0.10.11"],"bcc":["Idiomatic @3 @6 @0 BPF Compiler Collection (BCC)","0.0.31"],"build-info-common":["Part of @4 $j-info @5 $j-info-$j $R: @Q @8 @s @4 @g @l are serialized by $j-info-$j @5 $2 by $j-info.","0.0.24"],"rocket_prometheus":["Prometheus instrumentation @0 Rocket @P.","0.9.0"],"windows_reader":[C[773],C[74]],"bastion":["Fault-tolerant Runtime @0 @3 @P","0.4.4"],"cloud-pubsub":["Google Cloud PubSub Client","0.7.0"],"$u_@a":["@W $u @a $C `hash_map!` or `hash_set!` (WIP)","0.1.1"],"consistent_^z":["An @2 of Consistent hashing $1","0.1.4"],"google-urlshortener1":[C[869],"2.0.8+20150519"],"parity-ws":[C[332],C[16]],"is_ci":["Super ^O CI ^K checker. Just tells you if you're in CI or not ^Y much fuss.","1.1.1"],"^f_libra_&Q":["Libra &Q",C[10]],"cocoa":["@H to Cocoa @0 macOS","0.24.0"],"parity-scale-codec-derive":["Serialization @5 &9 @b @e @0 Parity SCALE Codec","2.3.1"],"cxxbridge-flags":["Compiler $H of @4 `cxx` @8 (@2 detail)","1.0.56"],"write-json":["@K {&m,$y,@e}-less ^k @M",C[4]],"js-intern-proc-macro":[C[90],"0.3.1"],"torut":["torut is reasonable tor controller $A in @f utilizing $v @0 @J communication",C[3]],"m4ri-rust":["M4RI-@n boolean linear algebra",C[2]],"include-flate-codegen":[C[506],"0.1.3"],"ra_ap_arena":["TBD","0.0.33"],"paho-mqtt-sys":["@3 @h @0 @4 Paho MQTT C Client Library.This is part of @4 official Eclipse Paho @3 Client @p.","0.5.0"],"google-adexchangebuyer1d3":[C[91],C[92]],"unstringify":["$q @e implemention of @4 reverse operation of `stringify!`","0.1.1"],"sc-network-gossip":["Gossiping @0 @4 Substrate ^9 @9","0.9.0"],"libhoney-rust":["@3 @1 @0 sending @w to Honeycomb","0.1.6"],"lyon_tess2":["An additional path tessellator @0 lyon @u libtess2.","0.17.1"],"sgx_rand_@b":[C[21],"1.1.1"],"rowan":[C[93],"0.14.1"],"elrond-wasm-module-features":["Elrond $x smart contract ^F @0 adding feature flags","0.21.2"],"tracing-attributes":["$q @e attributes @0 automatically instrumenting @y.","0.1.18"],"glium_@a":[N,"0.0.1"],"defer":["Utility to defer excecution of @V, &X by go's defer statement.",C[0]],"speculate":["An RSpec &X minimal $S @k @0 @3.",C[4]],"hammersbald":["Hammersbald - $I persistent store @0 a blockchain","3.0.1"],"ctest2":[C[493],"0.4.2"],"cssselect":["CSS Selectors?","0.0.1"],"gaunt":[C[232],C[0]],"async-attributes":["Experimental @L-@C polyfills @0 Async @3.","1.1.2"],"cloudflare-rs":["@3 @1 @6 @0 Cloudflares v4 @x","0.7.0"],"iryna":["A ^O ^9 @1 @n on mio(work-in-progress)","0.1.4"],"cargo-pack":["an infrastructure @1 @0 '@S-pack'ers","0.6.0"],"parity-tokio-ipc":["Interprocess communication @1 @0 $v.","0.9.0"],"fancy-regex":["An @2 of regexes, supporting a relatively rich set of features, including backreferences @5 look-$G.","0.7.1"],"&x_^I":["Easy to $d ^I runner",C[3]],"rusty_sword_arena":["@p/repository @0 @4 half-day @3 tutorial teaching you how to make a game @c in @3.","2.0.0"],"serde-bench":["Minimal @M @G @0 benchmarking Serde","0.0.7"],"openvr_@r":["Raw unsafe @O $W @0 openvr","2.0.3"],"og_fmt":["$8 original `@G!`","1.0.4"],"monitor":["Monitor synchronization construct",C[0]],"diesel_infer_schema":["@W $7 to infer @4 schema of a ^Q. Deprecated.","1.4.0"],"google-admin1_reports":[C[791],C[792]],"rustfmt-nightly":[C[975],"1.4.21"],"systemfd":["A convenient ^t @0 passing sockets ^d another ^I. Best to be combined @7 listenfd @5 @S-watch.",C[1]],"cargo-wix":["Build ^6 installers @u @4 WiX Toolset","0.3.1"],"rusterizer":["A 3D ^T @1 $A in @3.","0.1.6"],"whitespace_^D_steganography":["A steganography strategy @l uses whitespace to hide ^D in other ^D",C[5]],"tc-executor-common":[C[628],C[7]],"marsoc":[C[50],"0.1.3"],"rust-cryptoauthlib":["@3 &r @0 CryptoAuthentication @p @6.","0.4.3"],"vm-info":["Inspect &j virtual $g $V",C[3]],"fix-hidden-lifetime-bug-proc_@a":[C[165],"0.2.4"],"stable-pattern":["Stable port of std::str::Pattern @5 friends.",C[0]],"win_key_codes":["All windows virtual key codes translated in @3",C[4]],"skein-hash":["Skein ^z @y","0.3.1"],"limiter":["Request size limiting @0 @4 Iron @k",C[2]],"symphonia-format-ogg":["Pure @3 OGG demuxer (a part of ^g Symphonia).",C[2]],"urbandictionary":["Unofficial @3 @h @0 @4 UrbanDictionary @x",C[594]],"bigint":["&T: $d uint instead","4.4.3"],"recaptcha":["recaptcha response verification","0.5.0"],"libparted-sys":["libparted @6","0.3.1"],"hypospray":["Lightweight &m injection @1",C[4]],"adxl343":["Platform-&f ADXL343 accelerometer ^j $i uses I2C via ^b-hal",C[7]],"bip39":["@p @0 BIP-39 Bitcoin mnemonic codes","1.0.1"],"tablefy":["An &x way to display any struct as a table!","0.1.3"],"wkb":["Convert geo-@g @t georust to/@t Well Known Binary","0.7.1"],"mozdevice":["Client @1 @0 @4 Android Debug Bridge (adb)",C[2]],"fluence-fork-libp2p-swarm-derive":[C[579],"0.22.1"],"polyio":["A create @0 &2 @7 @4 Polygon @x at polygon.io.",C[16]],"google-customsearch1":[C[193],C[92]],"pvoc":["A phase vocoder @0 making audio effects","0.1.7"],"stronghold-utils":["Utils @0 @4 iota_stronghold @1",C[1]],"osmpbfreader":["Read OpenStreetMap PBF @z in @f.",C[23]],"nginx-config-mod":["A graphql @D-$D ^4","0.2.9"],"ureq":["@K, $M ^s @c","2.3.0"],"markings":["a very @d $c (template) replacement @8",C[2]],"little-skeptic":[C[555],"0.15.2"],"dir-diff":["Do two directories have different contents?",C[9]],"fly":["Convergent Replicated Data Types in @3",C[3]],"sphere":["Function @0 calculating volume @5 surface area of n-sphere.",C[1]],"octavo-crypto":["Octavo - Cryptosystems. WARNING!!! Not suitable @0 production","0.1.1"],"byte-unit":["A @1 @0 interaction @7 units of bytes.","4.0.13"],"sawtooth-xo":["Sawtooth XO is a Sawtooth transaction handler @0 executing tic-tac-toe (or noughts @5 crosses) transactions as part of Hyperledger Sawtooth","0.5.0"],"tract-hir":[C[94],"0.15.5"],"i18n-embed-impl":["Macro @T @0 i18n-embed",C[7]],"crest":["A REST @c @1.","0.3.4"],"uint":["Large fixed-size integer arithmetic","0.9.1"],"console_^q_panic_hook":["A panic hook @0 `wasm32-unknown-unknown` @l logs panics to `console.error`","0.1.7"],"unic-ucd-hangul":["UNIC — &h Character Database — Hangul Syllable Composition & Decomposition","0.9.0"],"allegro_ttf":["Allegro 5 ttf addon @3 @h","0.0.41"],"quick-error2":[C[203],"2.1.0"],"doug":["A $z tracking @D-$D $w","1.10.0"],"simplet2s":["A @d traditional Chinese to simplified Chinese converter",C[3]],"clipboard-win":["@W @d way to @o @7 ^6 clipboard.","4.2.2"],"prost-build":[C[231],"0.9.0"],"jsonc-parser":["JSONC @i.",C[26]],"rocket-download-response":["@Q @8 @s a response struct $2 @0 @c downloading.","0.5.0"],"noc":["Nereon NOC syntax checker @5 playground @U","0.6.0"],"tauri-runtime-wry":["Wry @6 to @4 Tauri @I",C[5]],"envoy-sdk":["@3 ^N @0 $x-@n Envoy &p",C[138]],"evm-runtime":[C[271],"0.31.0"],"sophon-wasm":["$x $Q @G @M/&9/interpreter",C[95]],"libunftp":["Extensible, @J, cloud orientated FTP(S) @U @1.","0.18.1"],"$6_dynamo":["$6 serializer/deserializer @0 DynamoDB items","2.4.0"],"pagan":["Data analysis @1.",C[5]],"$P_autoscaling_plans":["^r ^N @0 @3 - ^r Auto Scaling Plans @ 2018-01-06",C[27]],"specs-hierarchy":["Scene graph $l hierarchy $F @0 $d @7 specs","0.6.0"],"libimagentrymarkdown":[C[39],C[12]],"av-format":["Multimedia @G demuxing @5 muxing","0.3.1"],"tauri-build":["$j $z @V to pair @7 &Y://crates.io/$R/tauri",C[96]],"winspool-sys":["$L @6 to winspool. @Q @8 is a placeholder @0 @4 future. If you are interested in this @1 feel free to get in touch @7 me: &z://www.rustaceans.org/retep998","0.0.1"],"async-dup":["Duplicate an @J I/O handle","1.2.2"],"embedded-graphics-core":["Core $3 @5 $7 @0 ^b-^T","0.3.3"],"andrew":["$8 andrew @8 @s convenient drawing of objects such as shapes, lines @5 ^D to buffers","0.3.1"],"procspawn":["&d::spawn just @7 processes",C[13]],"cosmwasm-derive":["A @X @0 auto-^8 @V $2 @0 CosmWasm contract &D. @Q is shipped as part of cosmwasm-std. Do not $d directly.",C[97]],"shuffling-allocator":["A shuffling ^l, randomizing heap object locations; useful @0 avoiding accidental cache locality during benchmarking, $i can obscure $J evaluation.","1.1.2"],"preferences":["Read @5 &0 user-specific $U @w (in stable @3)","1.1.0"],"delaunator":["A very $I 2D Delaunay triangulation @1.","1.0.0"],"rhizome_proc-macro-definitions":["$q @e $h @0 rhizome.","0.0.1"],"oxygengine-network-backend-desktop":["Network Desktop $N ^F @0 Oxygen Engine",C[42]],"vndb":["Kawaii VNDB @x",C[28]],"wiringpi":["An @x @h @0 WiringPi, ^5 @4 most important @y @5 @s a bit of $l @O convenience. See README.md @0 Raspberry Pi $j instructions.","0.2.4"],"timeit":["Timing @a @0 @3 modelled after Python's timeit",C[4]],"nx":["A high $J @3 @1 $2 to read NX @z @7 minimal $g usage.",C[1]],"terminator":["A &7 @1 to have `Display` &Z @0 `fn main() -> Result<(), E>`",C[0]],"enso-shapely":[C[603],C[3]],"sprite":["Procedurally ^n pixel sprites @5 save them in different formats","0.2.4"],"combine":["Fast @i combinators on arbitrary streams @7 zero-copy @j.","4.6.1"],"rustache-lists":["Mustache templating $a @0 @f @7 a bugfix @0 lists",C[4]],"hyper_cgi":["Run CGI scripts @7 hyper",C[5]],"cargo-cake":["A cake @0 celebrating Rust's birthday","1.0.6"],"unicode-width":["Determine displayed width of `char` @5 `str` typesaccording to &h Standard Annex #11 rules.","0.1.9"],"algo":["Algorithms & Data Structure @T","0.1.9"],"rustracing":["OpenTracing @x @0 @3","0.5.1"],"hjson":[C[595],"0.8.2"],"purescript-corefn":["A @i @0 PureScript's corefn ^k representation.",C[1]],"tc-block-builder":["Tetcore block &I",C[7]],"scale_std":["datastructures @5 ^3 to be run on @4 SCALE $a",C[4]],"elfx86exts":["Decode x86 binaries (ELF or MachO) @5 print out $i instruction set &p they $d.","0.5.0"],"jsonrpc-sdk-prelude":["&O &o @5 $3 @0 jsonrpc-sdk.","0.1.4"],"hex2d":["Helper @1 @0 ^p @7 2d hex-grid maps","1.1.0"],"wirefilter-engine":["An execution $a @0 Wireshark-$C filters","0.6.1"],"google-signin":["@x @6 @0 Google Sign-In",C[1]],"succinct_rs":["Succinct Data Structures @1 @0 @3.","0.6.1"],"timsort":["@3 @2 of @4 modified MergeSort $2 in Python @5 Java",C[4]],"@f_gpiozero":["A @1 &X by gpiozero $A in @3.",C[5]],"router":["A router @0 @4 Iron @k.","0.6.0"],"sea-orm-macros":["&n @a @0 SeaORM","0.3.1"],"pam-auth":["[MOVED TO `pam`] Safe @3 @h @0 PAM authentification","0.6.0"],"twiggy-parser":[C[331],"0.7.0"],"bn-plus":[C[81],"0.4.4"],"codeviz_$u":[C[75],C[8]],"point":["Core point @g @0 various laser projection &4 to $d.","0.3.1"],"cursive-async-view":["A loading-screen @h @0 gyscos/cursive views","0.5.0"],"wayland-client":["@H to @4 ^E C @2 of @4 wayland @9, @c side.",C[98]],"piston3d-cam":["A @1 @0 3D camera @5 navigation",C[2]],"tmplgen":["Void &j template @B @0 @L-specific @X managers","1.3.1"],"mnemonic":["Encode any @w ^d a sequence of English words","1.0.1"],"Gen_Prime":["A way to transform a ^z to a prime &a","1.1.9"],"tinyset":["Size-optimized sets","0.4.6"],"webrtc-util":["^e @0 WebRTC.rs stack","0.5.1"],"async-tar":[C[850],"0.4.2"],"spotifyd":["A Spotify daemon",C[9]],"ddh":["Compare @5 contrast directories","0.11.3"],"cts":["Converts CSV @w ^d SQL INSERT statements.","0.5.0"],"pico-args":["An ultra @d CLI arguments @i.","0.4.2"],"tyname":["Retrieve $l names during ^U execution on stable @3.",C[0]],"interval-heap":["A double-ended priority queue implemented @7 an interval heap","0.0.5"],"sfnt":["A zero-allocation SFNT @i.",C[28]],"snarkos-errors":["Errors @0 a decentralized operating @O","1.1.4"],"waltz_^y":[C[629],"0.1.4"],"cargo-vcpkg":["A @S &i to $j a vcpkg ^0 @t metadata entries in Cargo.toml fora top @C @8 @5 @4 $R @l it depends on.","0.1.6"],"evcxr_input":["Support @0 &3 input @t @4 user in Evcxr","1.0.0"],"wasmer-compiler-llvm":["LLVM ^2 @0 Wasmer $x @I","2.0.0"],"if_@f_$4":["Macro to enable or disable @V depending on @4 @f $4","1.0.0"],"amethyst_gltf":["GLTF asset loading",C[99]],"szip":["A $I @D $D ^4 @0 snappy ^C @5 decompression.","1.0.0"],"pwasm-libc":["Parity $x ^E @1 libc @6",C[5]],"ethers-signers":["Signer @T @0 @4 ethers-rs @8","0.5.4"],"automod":["Pull in every source $0 in a directory as a ^F.","1.0.2"],"ckb-vm-definitions":["&O definition @z @0 CKB VM",C[734]],"osascript":["@W simplified $X to JavaScript via OSA on macOS.",C[1]],"actyxos_sdk_@a":[C[202],C[8]],"mdbook-graphviz":["mdbook preprocessor to add graphviz @j",C[4]],"orbtk-proc-macros":["$q @a $2 by OrbTk.",C[204]],"x86intrin":["x86intrin @2","0.4.5"],"$P_elasticache":["^r ^N @0 @3 - Amazon ElastiCache @ 2015-02-02",C[27]],"sdl":["SDL @6","0.3.6"],"i2c_@i":["I2C &B @n on pigpio's I2C Sniffer Example","0.1.6"],"range-set":["Smallvec-backed containers of sorted integer ranges","0.0.8"],"sycamore-macro":[C[355],"0.6.3"],"pseudotcp":["pseudo-TCP @6 @0 libnice",C[3]],"bitstream_reader":[C[393],"0.7.1"],"heck-but-macros":["A ^B @e @h $G @4 heck @8, so @l its casing @y can be applied to identifiers. Also contains a workaround @0 (limited) stringification.","0.0.1"],"sandstorm":["Sandstorm Cap'n Proto interfaces","0.0.15"],"reqwest":[C[501],"0.11.6"],"binn-ir":["An @2 of Binn - &Y://github.com/liteserver/binn",C[23]],"near-contract-standards":["NEAR smart contracts ^E @1.",C[100]],"optick":["Super Lightweight Performance Profiler","1.3.4"],"unic-ucd-case":["UNIC — &h Character Database — Case Properties","0.9.0"],"edcert":["A @8 $i can be $2 to sign @5 verify content @n on Ed25519.","9.0.1"],"exonum-keys":["Exonum node keys ^A.","1.0.0"],"debian":["Helper @1 @0 everything related to Debian, $C @R changelog orcontrol @z @0 packaging, comparing versions (@4 Debian way) orinteracting @7 apt.","0.1.1"],"pkg-config":["A @1 to run @4 pkg-config @O ^4 at $j $z in order to be $2 inCargo $j scripts.","0.3.22"],"almost":["A @8 @0 comparing floating point ^M",C[3]],"objekt-clonable":[C[794],C[8]],"physics2d":["Yet another 2D physics $a, but @7 Iron power.","0.6.0"],"genelf":["A @d @1 @0 $E elf-$Q","0.2.4"],"svc-agent":["An agent @1.","0.19.4"],"resiter":["Helper @8 @0 ^a iterators &6 result",C[2]],"rust-releases-core":["Base $3 @5 $h @0 @f-releases",C[72]],"ed25519-dalek":[C[816],"1.0.1"],"lignin-html":["HTML renderer @0 lignin VDOM Nodes. @Q @8 is primarily @0 &k @5 @U-side &S. For @c-side $d, see lignin-dom.","0.0.5"],"nlprule":["A $I, low-resource Natural &R Processing @5 Error Correction @1.","0.6.4"],"router-rs-macro":["A @e @0 @c side &e $U routing","0.1.1"],"bytify-impl":["Internal @2 of @4 bytify @8.","0.3.1"],"sc-consensus-slots":[C[324],"0.9.0"],"bytecodec":["A tiny @k @0 ^5 encoders/decoders of byte-oriented protocols","0.4.15"],"hamlet":["Html token $h @0 ^L &u",C[5]],"late-static":["Initialize &k variables at @I",C[2]],"obj-pool":[C[772],"0.4.4"],"obj":["A @X @0 loading Wavefront .obj @z","0.10.2"],"json-codec":["^k Codec @2","0.5.0"],"cita-logger":["Logger @0 CITA.","0.1.1"],"@Y_name-proc-macro":[C[376],C[3]],"unindent":["Remove a column of leading whitespace @t a $c","0.1.7"],"directories-next":["A tiny mid-@C @1 @l @s @N-specific ^E locations ofdirectories @0 config, cache @5 other @w on &j, ^6 @5 macOS byleveraging @4 mechanisms defined by @4 XDG base/user directory specificationson &j, @4 Known Folder @x on ^6, @5 @4 Standard Directory guidelineson macOS.","2.0.0"],"varisat-dimacs":["DIMCAS CNF @i @5 writer @0 @4 Varisat SAT solver",C[8]],"proc-mounts":["Fetch active mounts @5 swaps on a &j @O","0.2.4"],"loop-forever":["Program $i loops forever.","1.0.2"],"core-foundation-sys":[C[614],"0.8.3"],"concrete-commons":["&O &1 @0 @4 concrete FHE @1.","0.1.1"],"calm_io":[C[124],"0.1.1"],"resolve":["DNS communication @9",C[3]],"tink-signature":["Signature $7 @0 @3 port of Google's Tink cryptography @1",C[5]],"operational":["Operational Monad","0.0.5"],"google-oslogin1_beta":[C[762],C[101]],"sorter":["@K @f @2 of all existing sorts",C[2]],"syntaxext_lint":["&O lints @0 $Z syntax &p","0.1.6"],"umash":["Idiomatic @x @0 @4 umash ^z/fingerprint @Y","0.4.1"],"kairos":["A @1 on top of chrono to calculate times @5 dates ergonomically",C[1]],"google-container1_beta1":["A @q @1 to @o @7 container (@9 v1beta1)","0.1.11+20151005"],"auditable-serde":["Serialize/deserialize @w encoded by `auditable` @8",C[0]],"lambda_@I_@F":["@3 @I @0 ^r Lambda",C[4]],"falcon":["A Binary Analysis Framework in @3","0.5.2"],"subprocess":["Execution of child processes @5 pipelines, &X by Python's subprocessmodule, @7 @3-specific &p.","0.2.8"],"embedded-ccs811":["Platform-&f @3 ^j @0 @4 CCS811 ultra-low power digital gas sensor @0 monitoring indoor air quality.",C[3]],"cargo-msrv":["Find $r minimum supported @3 $4 (MSRV)!",C[13]],"kailua_workspace":["Workspace @j @0 Kailua","1.1.0"],"unicode-bom":["&h byte-order mark detection @0 @z @5 byte arrays.","1.1.4"],"smoltcp":["A TCP/IP stack designed @0 bare-metal, real-$z systems ^Y a heap.","0.7.5"],"pin-project-internal":["@v detail of @4 `pin-^g` @8.","1.0.8"],"fuser":["Filesystem in Userspace (FUSE) @0 @3","0.9.1"],"reductive":["Optimized vector quantization @0 dense vectors","0.7.0"],"openblas-provider":["$8 @X @s BLAS @5 LAPACK @u @4 OpenBLAS @2.","0.4.1"],"bracket-random":["Random &a @B (xorshift @n), focused on dice rolling. Optionally includes @R of RPG-style dice $p (e.g. \"3d6+12\"). Part of @4 bracket-lib family.","0.8.2"],"ibverbs":["@H @0 RDMA ibverbs through rdma-@F","0.6.1"],"watch":["A synchronous message passing channel @l only retains @4 most recent &5.",C[3]],"synopsys-usb-otg":["'usb-device' @2 @0 Synopsys USB OTG IP cores","0.2.4"],"actix-multipart-rfc7578":["An @2 of multipart/form-@w (RFC7578) @0 Actix","0.6.0"],"cargo-outdated":["Cargo &i @0 displaying when &c are out of date","0.9.17"],"$j_const":["@1 @0 $Z importable constants @t build.rs or a script",C[8]],"braintree":["An unofficial Braintree @c @0 @3.","0.0.6"],"pkcs8":["Pure @3 @2 of Public-Key Cryptography Standards (PKCS) #8:Private-Key Information Syntax Specification (RFC 5208), @7 additionalsupport @0 PKCS#8v2 asymmetric key packages (RFC 5958)","0.7.6"],"rweb":[C[391],"0.14.1"],"dw-sys":["$L @6 to libdw",C[0]],"crossterm_style":["A cross-@N @1 styling @4 $o &Z.","0.5.2"],"subslice":["Fast subslice search","0.2.3"],"gdb-server":["A gdb stub @2 @0 on chip debugging @5 flashing of ARM chips.",C[16]],"spng-sys":["&M @6 to libspng",C[320]],"vtparse":["Low @C escape sequence @i","0.5.0"],"unique-type-id":["A unique id ^B-@e @B @0 @g.","1.0.0"],"path-slash":["Conversion to/@t a $0 path @t/to slash path","0.1.4"],"coins-core":["Abstract UTXO transactions to enable @V reuse across chains",C[1]],"raui-binary-renderer":["RAUI renderer @0 $Q @w @G","0.38.2"],"utime":["A missing utime @Y @0 @3.","0.3.1"],"bastion-executor":["Cache affine NUMA-aware executor @0 @3","0.4.1"],"libunicorn-sys":[C[740],"0.9.1"],"google-clouduseraccountsvm_beta-cli":[C[588],"2.0.4+20160316"],"proximity-sort":["@K @D-$D $w @0 sorting inputs by proximity to a path argument","1.0.7"],"pallet-im-online":["FRAME's I'm online &v","3.0.0"],"win_etw_metadata":["@W metadata $h @0 @4 win_etw_provider @5 win_etw_macros $R.","0.1.1"],"jsonrpc":[C[102],C[28]],"toml-parse":["Set of modules @0 @R, sorting @5 formating toml.","0.2.11"],"cargo-next":["A @S &i to set @4 next @8 $4",C[8]],"jddf":["^k Data Definition Format validator @5 @E.","0.3.3"],"concrete-core":[C[573],C[32]],"unix_socket2":["Unix domain socket @6, @7 bug fixes @5 enhancements.","0.5.4"],"glsl-to-spirv":["Deprecated. Use shaderc-rs instead.","0.1.7"],"bitio":["Basic bitwise IO @0 @3.","0.0.4"],"opusfile-rs":["@3 @h @0 libopusfile","0.1.4"],"slag":["@3 ^Y braces or semicolons","0.1.1"],"voile":["Voile, a dependently-typed row-polymorphic $m @L","0.2.6"],"git-testament":["Record git ^p ^0 status when compiling $r @8",C[3]],"dots":["A ^y @0 managing all $r dot($0)s",C[5]],"linya":["@K concurrent progress bars.",C[5]],"transit":["Send @5 receive @g &6 UDP packets. A feature-@n @M story, this @8 must be compiled @7 a @M feature to inform @4 @8 what $l of @M is wanted.",C[1]],"holochain":["Holochain, a @k @0 distributed @P","0.0.112"],"drunken_bishop":["An @2 of OpenSSL's randomart $1",C[4]],"gdi32-sys":["Contains @Y $h @0 @4 ^6 @x @1 gdi32. See winapi @0 @g @5 constants.",C[3]],"ntex":["Framework @0 composable ^9 services","0.4.5"],"allehanda":["Miscellaneous @w $k @5 ^3","0.1.4"],"gleam_finder":["A very &7 @8 you can $d to get gleam.io links.","0.5.3"],"coreutils_&V":["Json &t.","0.5.1"],"ndarray_einsum_beta":["@v of @4 einsum @Y @0 @4 @3 ndarray @8. As popularized in numpy, einsum (Einstein summation) implements general multidimensional tensor contraction. Many linear algebra $B @5 generalizations of those $B can be expressed as special cases of tensor contraction.","0.7.0"],"proc-graph":["Convert a ^I graph ^d a set of communicating processes",C[0]],"tc-tracing-proc-macro":["Helper @a @0 Tetcore's @c CLI","2.0.0"],"rogue":["^3 @0 fov, los, etc @0 $K a roguelike","0.0.2"],"rsa":["Pure @3 RSA @2","0.5.0"],"lenient_semver_@i":["Lenient @i @0 Semantic Version ^M.","0.4.2"],"event-brust":["Excessively @d event @O.","0.2.3"],"hwloc2":["@3 @6 @0 @4 hwloc hardware locality @1 2.x.","2.2.0"],"$6_at":["$6 serializer/deserializer @0 AT commands","0.13.1"],"shuffled-iter":["Iterate through a set of ^V in &L order ^Y allocating them all",C[3]],"pangocairo":["@3 @6 @0 @4 PangoCairo @1",C[24]],"signalo_pipes":["A $b of pipes $2 in 'signalo' umbrella @8.","0.5.1"],"x3":["A CPU ^Z audio encoder/decoder @u @4 X3 codec.",C[1]],"virtual-node":["A standalone Virtual DOM","0.2.16"],"grabbag_@a":["A &L grab-bag of $7. (@e @X)",C[4]],"graphene":["A general purpose, extensible Graph Theory @w $l @5 $1 @1 @0 @3.","0.1.5"],"secrets":["Protected-$X $g @0 ^w secrets","1.1.0"],"async-ringbuffer":["A nonblocking spsc ring buffer @7 fixed capacity.","0.5.5"],"mio-more":[C[750],C[0]],"clap-log-flag":["Add a logger to CLIs @u structopt",C[5]],"$P_mediaconvert":["^r ^N @0 @3 - ^r Elemental MediaConvert @ 2017-08-29",C[27]],"const-default":["A const Default $y","0.3.1"],"stm32f0":["Device @j $R @0 STM32F0 &N",C[24]],"mws":["Client @1 @0 Amazon Marketplace Web Service (Amazon MWS)",C[28]],"hunspell":[C[134],C[4]],"dcc-lsystem-derive":["Macro @2 of #[@b(TurtleContainer)]",C[4]],"nu_$Y_@r":["A @O info $Y @0 Nushell","0.36.0"],"fuzzyhash":["Pure @3 fuzzy ^z @2",C[5]],"epochs":["Convert various epoch times to chrono::NaiveDateTime times.","0.2.4"],"mathf":["Math @8 @0 Godi Game Engine",C[60]],"fastdivide":["Fastdivide is a partial port of libdivide. It makes it possible to reduce @4 cost of divisions.",C[1]],"oxipng":["A lossless PNG ^C optimizer","5.0.0"],"&J_$g_@b":["Support @8 @l @s @a @0 @4 shared_memory @8.",C[13]],"dbui-controllers":["^s controllers @0 @4 dbui @U","0.0.64"],"entity_store_^t":["@p to simplify @u @V ^8 by entity_store_code_gen",C[26]],"k8s-csi":["@H @0 Kubernetes CSI",C[2]],"steg":["Command $D steganography ^4","0.1.6"],"yarte_&w":["Helper $b @0 yarte",C[99]],"svc-authn":["An authentication @1.","0.7.0"],"postmill":["@x @0 interfacing @7 Postmill forums","0.2.7"],"userstyles":["@x @6 @0 userstyles.org.","0.1.4"],"megaui":["@K, zero-&c, immediate mode UI @1","0.2.18"],"signrel":["Trait expressing relationship $t integers of different signedness","2.0.0"],"macro-machines":["State machine @a @7 &H @5 graphviz DOT $0 ^1",C[12]],"prost-amino-derive":["A ^c Buffers @2 @0 @4 @3 &R modified to enable amino (de)@M.","0.6.1"],"mime_guess":["A @d @8 @0 detection of a file's MIME $l by its ^h.","2.0.3"],"alloc-cortex-m":["A heap ^l @0 Cortex-M processors","0.4.1"],"cask":["A $I key-&5 store backed by a log-structured ^z table","0.7.1"],"google-translate2-cli":[C[1018],"2.0.4+20170525"],"snowflake-multi-threaded":["$8 @f-lang @2 of Twitter's id @B $1 snowflake, it &d safety | Twitter 的id生成器算法snowflake的@f-lang 实现","0.1.4"],"etcommon-block-core":[C[103],"0.3.1"],"nohash":[C[104],C[3]],"rebind":["A @1 @0 $W input keys to actions, @5 modifying mouse behaviour. Keys can be boundto actions, @5 then translated during @I.",C[5]],"binary-reader":["A $Q reader @0 @f-lang. @0 step by step. It's a minimal `byteorder` @h @0 read bytes.","0.4.3"],"$P_sts":["^r ^N @0 @3 - ^r Security Token Service @ 2011-06-15",C[27]],"c2rust":["C to @3 translation, refactoring, @5 cross-checking","0.15.1"],"joinlines":["CLI util @0 joining lines of a ^D $0","0.3.1"],"jsonm":["jsonm @2 port @0 Rust.jsonm is a $I @5 $M way to compress ^k &y @u memoization. jsonm makes &y up to several orders of magnitude smaller by getting rid of repeated names @5 ^V.","0.1.4"],"pprof":["An ^J perf &1 @0 @f programs.","0.6.0"],"clap":[C[472],C[225]],"bflog":["Very tiny &H @k made @0 microservices.","0.3.1"],"introspection-derive":[C[105],C[0]],"system-configuration-sys":["Low @C @6 to SystemConfiguration @k @0 macOS","0.4.1"],"pihash":["A @d @1 @0 $E perceptual hashes @0 images @5 comparing images @n on their perceptual hashes.","0.5.0"],"lf-sll":["A lock-free singly-linked list","0.0.3"],"sequencefile":["&M @3 @1 @0 ^p @7 Hadoop sequence @z. Only handles &3 currently.","0.1.4"],"amethyst_^q":["Internal ^q ^a @0 Amethyst.",C[99]],"btc-transaction-utils":["A $b of &w @0 signing bitcoin transactions @7 segwit.","0.9.0"],"cmudict_@F":["Core @R logic @0 @4 cmudict @8",C[8]],"cuda-oxide":["cuda-oxide @s a high-@C, rusty @h &6 CUDA. It @s @4 best safety one can get when ^p @7 hardware.",C[2]],"aof":["Redis appendonly $0 filter","0.3.1"],"maildir":["A @d @1 @0 maildir manipulation","0.5.0"],"csound":["Raw @6 to CsoundHigh @C @3 @6 are available in @4 `csound` @8","0.1.8"],"jsonrpsee-ws-server":["WebSocket @U @0 ^k-RPC","0.4.1"],"platform-dirs":["A @1 @0 obtaining @N dependant directory paths @0 $U @5 user directories",C[1]],"compacts":["compact @w $k","0.9.0"],"dumb-crypto":["Dumb, but easily verifiable @T of &Q ^3","3.1.0"],"lockchain-http":["&W ^s @m @8 @0 @4 lockchain ecosystem. Can serve both encrypted @5 cleartext records",C[2]],"rsrl":["A $I, extensible reinforcement learning @k in @3","0.8.1"],"eventific":["Eventific is a ^4 @l gives you @4 needed $K blocks @0 event sourcing","0.1.18"],"ecvrf":["A curve25519+SHA3 verifiable &L @Y","0.4.3"],"aead":["Traits @0 Authenticated Encryption @7 Associated Data (AEAD) ^3,such as AES-GCM as ChaCha20Poly1305, $i provide a high-@C @x","0.4.3"],"pleco_$a":["A blazingly-$I Chess AI.","0.1.6"],"langtag":["&R tags @2 following RFC 5646",C[3]],"netcdf-sys":["$L @6 to NetCDF","0.3.5"],"sounding-bufkit":["@p to parse @5 load Bufkit sounding @z.",C[72]],"escape_$c":["Very efficiently parse backslash-escaped $p","0.1.1"],"load-dotenv":["@Q is a &7 $e @e to load $r .env $0 at compile $z",C[4]],"rchunks":["Iterator @0 slices similar to .chunks() but starting @t @4 backof @4 slice @5 moving towards @4 front. Differs @t .chunks().rev() inhandling cases where @4 slice is not a &l of chunk size.","0.1.4"],"atomic-shim":["Atomic @g @0 unsupported platforms",C[3]],"fsevent":["@3 @6 to @4 fsevent-@r macOS @x @0 $0 changes notifications","2.1.1"],"wasm-bindgen-webidl":["Support @0 @R WebIDL specific to &s-bindgen","0.2.75"],"$P_elb":["^r ^N @0 @3 - Elastic Load Balancing @ 2012-06-01",C[27]],"libvpx-native-sys":[C[110],"5.0.6"],"stats-cli":["A @D $D statistics $Q @5 @X","3.0.0"],"no_@V_download_counter":["Does nothing. Contains no @V whatsoever. Exists only to give a background measurement @0 download statistics so @l one can remove downloads @t crater runs @5 @4 sort.","1.0.0"],"@o_@b":[C[106],"0.3.6"],"cache-padded":["Prevent false sharing by padding @5 aligning to @4 length of a cache $D","1.1.1"],"rusty-machine":["A machine learning @1.","0.5.4"],"heim":["Cross-@N @k @0 @O $f",C[59]],"sha-1":["SHA-1 ^z @Y","0.9.8"],"tokio-cron-scheduler":["Schedule tasks on $v @u cron-$C annotation. Also schedule tasks at an instant or repeat them at a fixed duration.","0.2.3"],"conserve":["A robust backup ^4.","0.6.14"],"docx":["A @3 @1 @0 @R @5 $E docx @z.","1.1.2"],"ketos_@b":["&n $3 @0 Ketos scripting @L",C[28]],"oak_@I":["&B ^8 by Oak depends on this @1. Please consult @4 @X Oak @0 more informations.","0.6.0"],"thread-control":["@3 @1 to control threads' execution/status.",C[4]],"ruspiro-gpio":["@Q $R @s a GPIO peripheral $F of @4 Raspberry Pi","0.4.3"],"redox_event":["A @3 @1 to $d Redox I/O events",C[0]],"silver":["A cross-shell customizable powerline-$C prompt @7 icons","2.0.0"],"wascc-codec":["(Deprecated) &J $9 $2 by @4 wasmCloud host @I @5 capability providers","0.9.1"],"lamedh_&z":[C[522],C[1]],"opentracingrust":["opentracing.io @1 @0 @f",C[2]],"yogurt-yaml":["Get ^b yaml @t yogurt @z",C[3]],"serial-unit-testing":["Serial unit $S ^U @5 @1","0.2.4"],"twapi-oauth":["A @d Twitter OAuth @1.","0.1.4"],"dencode":["^e @0 ^P @5 $5 frames @t readers @5 writers.",C[1]],"@d_gaussian":["Some quick @5 &x @y @0 $E gaussian noise, mappable to specific bounds. Useful @0 artistic purposes.","0.6.0"],"preroll":["Easy boilerplate @E @0 @3 &z services $i $d @J-std, Tide, Surf, @5 friends.","0.8.5"],"trx":["a modern @2 of @4 `^0` @D","0.2.6"],"dynomite-derive":["Derives ^r DynamoDB dynomite @g @t &8 @3 struct @g",C[13]],"defmt-decoder":["Decodes defmt log frames",C[8]],"@f_cascade":["A @d mmh3 @n bloom filter cascade @2 in @3.","0.6.0"],"mouscache_@b":["A $w @8 implement $y to store object either in redis or in $g",C[2]],"billboard":["Display informational boxes in @4 $o.",C[0]],"stayalive":["A $b of resilience patterns","0.5.1"],"sliding_windows":["a non-copying @2 of a sliding windows iterator adaptor","3.0.0"],"eureka":["CLI ^4 to input @5 store $r ideas ^Y leaving @4 $o","1.8.1"],"typescript-definitions-derive-ufo-patch":[C[313],C[38]],"comm":["...",C[0]],"cff":["A zero-allocation CFF @i.","0.5.0"],"nemo157":["@Q is a ^7 repository/@X @0 me to try out crates.io features andintegrations ^Y publishing any of my real $R.","0.3.1-pre.3"],"p12":["^X @f pkcs12 ^4","0.3.3"],"postgres_query":[C[275],"0.3.3"],"mime_$6_shim":[C[612],C[8]],"futures-v02x":["A mirror of @Z v0.2.x",C[0]],"dubp-block":["Handle DUBP block (DUBP: DUniter Blockhain ^c).","0.58.0"],"walkdir":["Recursively walk a directory.","2.3.2"],"zalgo":["A @8 @0 $E Zalgo ^D @7 defined parameters.",C[3]],"honggfuzz":["Fuzz $r @3 @V @7 Google-developped Honggfuzz !","0.5.54"],"tantivy-bitpacker":["Tantivy-sub @8: bitpacking","0.1.1"],"ravif":["rav1e-@n ^X @3 @1 @0 $5 images in AVIF @G (powers @4 `cavif` ^4)","0.8.7"],"fallible-streaming-iterator":["Fallible streaming iteration","0.1.9"],"logos-derive":[C[269],C[28]],"vek":["&W 2D-3D math swiss army knife @0 game engines, @7 SIMD @j @5 focus on convenience.","0.15.1"],"cargo-clippy":["A &i @0 @S to perform linting on @S projects. Can be $2 as a substitution @0 @S-check.",C[8]],"$l_val":["Type-@C ^V.","0.3.3"],"algorithm-problem-client":["^s Client @0 $1 problems","0.6.0"],"java-locator":["Locates a Java installation in @4 host.",C[4]],"cosmwasm-std":[C[126],C[97]],"drone-stm32-map-periph-i2c":[C[46],C[24]],"$P_apigatewaymanagementapi":["^r ^N @0 @3 - AmazonApiGatewayManagementApi @ 2018-11-29",C[27]],"rocket-client-addr":["@Q @8 @s two request guards $2 @0 getting an IP address @t a @c.","0.5.0"],"sea-canal":["Identifies patterns in sequences of integers.",C[1]],"discv5":["@v of @4 p2p discv5 discovery @9","0.1.0-beta.11"],"cairo":["Cairo @6","0.0.4"],"diesel_migrations":["Migration ^A @0 diesel","1.4.0"],"papyrus":["A @f repl @5 script runner","0.17.2"],"$6_jcs":["^k Canonicalization Scheme (JCS) @0 Serde",C[0]],"@f_util":["Hatter's @3 Util","0.6.41"],"nu-serde":["Turn any &5 ^d a nu-@9::Value @7 $6","0.39.0"],"specs-blit":["2D sprite &S ^h @0 @4 Specs ECS @O.","0.5.1"],"block-padding":["Padding @5 unpadding of &y divided ^d blocks.","0.3.0-pre"],"maidsafe_@E":["@3 $w @y provided by MaidSafe.",C[95]],"varlink_@B":["@3 @V @B @0 @4 varlink @9.","10.0.0"],"specs_sprite":["sprite component @0 specs","0.4.3"],"radio-sx128x":["Driver @0 @4 Semtec sx1280 2.4GHz RF IC","0.17.2"],"fff":[C[624],"0.3.1"],"const-field-offset-macro":["$q @e to ^n constant field offset @t repr(c) struct","0.1.1"],"c2rust-ast-printer":["Customized $4 of libsyntax @f pretty-printer",C[23]],"migrations_internals":["Internal @2 of diesels migration mechanism","1.4.1"],"treeline":["a @1 @0 visualizing ^0 structured @w",C[0]],"allan":["allan variance @5 deviation","0.2.4"],"qt_3d_logic":["@H @0 Qt3DLogic C++ @1","0.5.0"],"phf_mac":["Compiler $Y @0 perfect ^z @Y @w $k","0.5.0"],"annie":["love :)","0.0.1"],"symbolic-common":["&O @g @5 @E @0 symbolic, a @1 to symbolicate @5 processstack traces @t &8 @P, minidumps, minified JavaScripts orProGuard optimized Android apps.","8.3.2"],"wkhtmltopdf":["High-@C @6 to wkhtmltopdf",C[2]],"windows_dpi":["@W an @x @0 marking a ^I as DPI-aware on windows systems. Works forWindows 7+, @u @4 newer @x when available. Also @s a method @0 gettingthe DPI appropriate @0 an HWND.Methods are currently stubs @0 other platforms, if anybody would $C to contributeto @j other platforms I'm happy to help!",C[1]],"fil-ocl":[C[556],"0.19.6"],"xml_dom":["A @3 @8 ^R a reasonably faithful @2 of @4 W3C DOM Core","0.2.5"],"valgrind_request":["@h @0 Valgrind @c requests","1.1.0"],"pgx-pg-sys":["Generated @3 @6 @0 Postgres internals, @0 $d @7 'pgx'",C[57]],"debug-rs":["A debug @8 @0 @f &X by NodeJS debug ^F, colored, including @8 name, $0 name @5 $D, filtered by glob patterns.","0.1.3"],"zmq-ffi":["zmq-rs ^J @1 (low-@C $W to zeromq)","0.1.3"],"symmetric-interaction-calculus":["A $m @L @5 model of computation @l matches @4 abstract $1 perfectly.","0.1.8"],"czkawka_@F":["Core of Czkawka app","3.2.0"],"fruitbasket":["Framework @0 running @3 programs in a Mac 'app bundle' ^K.","0.9.1"],"windows_gen_@a":["Macro &w @0 @4 windows_gen @8","0.6.0"],"opentracingrust_zipkin":["Zipkin tracer @0 OpenTracingRust","0.3.1"],"sheldon":["Fast, configurable, shell $Y &F.","0.6.4"],"gnutls-sys":["GnuTLS bindngs @0 @3!",C[4]],"sesstype":["An @2 of Multiparty Session Types","0.2.4"],"geometry":["A $V @0 storing @5 look up 3D geometry",C[3]],"jh-ffi":["@3 JH ^z @Y (via ffi $W)","0.5.0"],"cbor-smol":["Streamlined $6 serializer/deserializer @0 CBOR",C[2]],"holochain_serialized_bytes_@b":["@W @b @a @0 holochain serialized bytes.","0.0.51"],"ritz":["Virtual HTML DOM @1 @0 @3 @7 JSX-$C syntax powered by Snax",C[0]],"fps_counter":["A Frames Per Second (FPS) counter","2.0.0"],"apint":["Arbitrary precision integers @1.",C[3]],"nalgebra-macros":["$q @a @0 nalgebra",C[0]],"^X_decimal":["A decimal $l @7 no NaN @5 Infinity","0.0.7"],"wit-validator":["Validator @0 @4 $x Interface Types $Q @G.",C[5]],"id-set":["A bitset @2 @l stores @w on @4 stack @0 &7 sizes.",C[8]],"robust":["Robust adaptive floating-point predicates @0 computational geometry","0.2.3"],"savefile-derive":["Custom @b @a @0 savefile @8 - @d, convenient, $I, versioned, $Q @M/&9 @1.","0.8.3"],"gmp-mpfr-sys":["@3 $L @6 @0 GMP, MPFR @5 MPC","1.4.7"],"wlambda":["WLambda is an embeddable scripting @L @0 @3",C[7]],"mode":["A behavioral state machine @1 $A in @3","0.4.1"],"hauptbuch-parser":["&B @0 journal @G of hauptbuch",C[2]],"route-recognizer":["Recognizes URL patterns @7 @j @0 dynamic @5 wildcard segments","0.3.1"],"bracket-pathfinding":["Pathfinding @5 field-of view @E. A Star, Dijkstra. Part of @4 bracket-lib family.","0.8.4"],"json5format":["Customizable JSON5 document formatter @l preserves comments",C[3]],"sysctl":["Simplified @m to libc::sysctl","0.4.2"],"auto_correct":["A @1 to provide auto correct suggestions. Currently supporting EN-US.","0.1.9"],"sp-state-machine":["Substrate State Machine","0.9.0"],"bins":["A ^4 @0 pasting @t @4 $o","2.0.0"],"whereami":["whereami @0 @3","1.1.1"],"rlua_$6":["Serde (De)serializer @2 @0 rlua Value",C[2]],"commonregex":["@3 port @0 CommonRegex. Find all times, dates, links, phone ^M, emails, ip addresses, prices, hex colors, @5 credit card ^M in a $c. We did @4 hard work so you don't have to.",C[3]],"rocket-file-cache":["An in-$g $0 cache @0 @4 Rocket &e @k.","1.0.0"],"vulkano":["Safe @h @0 @4 Vulkan ^T @x","0.26.0"],"$P_importexport":["^r ^N @0 @3 - ^r Import/Export @ 2010-06-01",C[27]],"sqlx-rt":["Runtime $F $2 by SQLx, @4 @3 SQL toolkit. Not intended to be $2 directly.","0.5.9"],"ck3save":["Ergonomically work @7 all CK3 saves (regular @5 ironman)","0.2.11"],"ink_lang":[C[1069],C[107]],"fg-uds":["&b unix domain socket running on @4 @Z-glib main loop",C[1]],"tab-websocket":["@4 websocket $w ^F @0 @4 tab $o multiplexer","0.5.0"],"num-rational":["Rational ^M @2 @0 @3",C[2]],"chinese-num":["Convert a decimal &a to its Chinese form",C[4]],"silverknife-fontconfig-sys":["fontconfig @6 @0 silverknife",C[0]],"drs-0x01":["Easily communicate @7 Dongbu Robot servomotors Herkulex DRS 0101 @5 DRS 0201",C[1]],"wait-for-me":["Async CountDownLatch",C[3]],"eventbus":["Safe, $I @5 concurrent event @O, &X by @4 MinecraftForge event bus.","0.5.1"],"permutator":["Get a lexicographic cartesian product @5 lexicographic permutation at any specific index @t @w. Generate @q lexicographic cartesian product @t single or &l set of @w. Generate @q lexicographic combination @t @w. Generate non-lexicographic permutation @5 k-permutation.",C[2]],"google-partners2-cli":[C[108],"2.0.4+20180925"],"uhttp_&V_^S":["^e @0 ^k requests","0.6.1"],"tabwriter":["Elastic tabstops.","1.2.1"],"impl-rlp":["RLP @M @j @0 uint @5 fixed ^z.",C[1]],"sorted-list":["@K SortedList @w $V $i allows mapping an Ord key to &l distinct PartialEq ^V",C[3]],"plumber":["plumber is a shim @l adds pluggable &t discovery to legacy systems ^Y modifying their @V.","0.0.7"],"line-col":["Convert $c slice indices ^d $D/column ^M",C[5]],"ckb-std":["@Q @1 contains serveral modules help you &0 CKB contract @7 @3","0.9.0"],"tokio-serde-json":["^e needed to easily implement a Tokio ^k transport @u Serde forJSON @M @5 &9 of frame ^V.",C[1]],"pdqsort":["Pattern-defeating quicksort","1.0.3"],"ptr_meta":["A radioactive stabilization of @4 ptr_meta rfc","0.1.4"],"embedded-crc-macros":["^o ^5 portable CRC calculation ^3 @0 $d in no_std.","1.0.0"],"intl_pluralrules":["&h Plural Rules categorizer @0 numeric input.","7.0.1"],"davincibot":["A @D-$D $w @0 managing absurdly eclectic interests.","0.0.19"],"rudolfs":["A high-$J, caching Git LFS @U @7 an ^r S3 back-end.","0.3.5"],"privdrop":["A @d @8 to drop privileges","0.5.1"],"oneshot":["Oneshot spsc channel @7 lock-free non-blocking send @5 a receiver supporting both threadblocking receive $B as well as Future @n @J polling.",C[4]],"dict":["Exercise @8 ^5 real associative arrays, also known as dictionaries","0.1.5"],"ipgen":["A @1 @0 $E unique @5 reproducible IP addresses","1.0.1"],"bcrypt":["Easily ^z @5 verify passwords @u bcrypt",C[12]],"modtype":[C[109],"0.7.0"],"fluvio-protocol-codec":["Frame encoder @5 decoder @0 fluvio @9",C[9]],"mqtt":["MQTT @9 v3 @2","0.1.4"],"boolean_expression":["A @1 @0 manipulating @5 evaluating Boolean expressions @5 BDDs","0.4.4"],"google-deploymentmanager2_beta2":[C[311],"2.0.8+20160201"],"libvpx-sys":[C[110],"1.4.2"],"bip_lpd":["@v of @4 bittorrent Local Peer/Service Discovery mechanism","0.0.0"],"judy-wrap":["Judy arrays $L mid-@C $W","0.0.7"],"azul-simplecss":["A very @d CSS 2.1 tokenizer.","0.1.1"],"dense_mats":["A strided dense tensor @2",C[2]],"cavity":["Create @z padded @7 zeros. Alternatinve to macOS's mkfile.","1.1.0"],"float":["Lightweight &r $G primitive floating point @g.",C[4]],"ncollide_transformation":[C[111],"0.9.1"],"jep106":["A pollable $b of all JEP106 manufacturer codes.","0.2.5"],"sqlx":["🧰 $8 @3 SQL Toolkit. An @J, ^X @3 SQL @8 featuring compile-$z checked queries ^Y a DSL. Supports PostgreSQL, MySQL, @5 SQLite.","0.5.9"],"stripe":["@6 to @4 stripe ^S","0.0.5"],"wfd":["A @d to $d $F &6 @4 Open @5 Save dialogs in @4 ^6 @x","0.1.7"],"cbuf":["Non-&d-shareable, @d @5 ^Z Circular Buffer @2 @l can store N elements when full (typical circular buffer @T store N-1) ^Y @u separate flags.","0.1.1"],"alphavantage":["Alpha Vantage @x @c","0.7.0"],"nummap":["Defines a @h $G a `HashMap` of &a ^V $i behaves as if **ALL** keys are mapped but `0` ^V are not stored.","0.5.1"],"mirai-annotations":["^o @l provide source @V annotations @0 MIRAI","1.12.0"],"substrate-wasm-builder-runner":["Runner @0 substrate-&s-&I","3.0.0"],"anymap":[C[766],"0.12.1"],"pbd":["A software &D kit @0 Privacy by Design (PbD).",C[2]],"stringer":["An &x way to turn an Unsafe *const c_char ^d a @3 String $l @5 return a pointer.","0.1.6"],"@J_zmq":["Async $4 @0 ZeroMQ @6",C[9]],"hyper-tls":["Default TLS @2 @0 $d @7 hyper","0.5.0"],"httpdate":["^s date @R @5 formatting","1.0.1"],"dirs-sys-next":["@O-@C ^t @y @0 @4 dirs @5 directories $R",C[4]],"mpd_@9":["@v of MPD @c @9","0.12.1"],"dining_philosophers":["$8 classic concurrency problem, in @3.","0.11.2"],"uhttp_request_target":["&B @0 classifying ^s request target","0.6.0"],"matchit":["A blazing $I URL router @5 path matcher.","0.4.4"],"lmdb-zero":["An almost-$M, near-zero-cost, feature-@q, unabashedly non-abstractwrapper $G LMDB.","0.4.4"],"libpijul":["Core @1 of Pijul, a distributed $4 control @O @n on a sound theory of collaborative work.","1.0.0-alpha.49"],"enum-display-derive":["Display trait's custom @b @0 @d enums.","0.1.1"],"approvals":["A @d @1 allowing to compare $p in unit-tests. Currently in &D stage @5 not usable.","0.0.7"],"libpulse-simple-binding":["A @3 @L $W @0 @4 PulseAudio libpulse-@d @1.","2.24.1"],"xmc4400":["XMC peripheral @1 @0 XMC4400 ^8 @t SVD",C[2]],"dinotree_alg":["Dinotree ^3","0.9.0"],"ntex-codec":["^e @0 $5 @5 ^P frames","0.5.1"],"pkix":["TLS Certificate $5 @5 ^P &w.","0.1.1"],"spin_on":["A @d, inefficient Future executor","0.1.1"],"imagepipe":["An image &u pipeline",C[2]],"avrd":["Device-specific constants @5 $f @0 all AVR $s","1.0.0"],"consul":["@3 @c libray @0 Consul ^s @x","0.4.2"],"fixed_ring_buffer":["An $n SPSC fixed-capacity look-free ring buffer, $i can be $2 to transfer @w $t two threads or $t two $n tasks",C[0]],"winmm-sys":["Contains @Y $h @0 @4 ^6 @x @1 winmm. See winapi @0 @g @5 constants.",C[3]],"kay_^H":["Code ^1 @0 ^5 kay actors","0.3.10"],"flowc":["A ^2 @5 @1 @0 compiling 'flow' programs","0.40.0"],"guid":["A @e @0 $O ^6 GUID ^V as convenient literals.",C[0]],"easyfibers":["easyfibers is a closure-less couroutine @1 @0 executing $n tasks as painlessly as possible.","0.7.0"],"pallet-scheduler":["FRAME example &v","3.0.0"],"metfor":["Meteorological formulas @5 constants.","0.9.0"],"futures-async-runtime":[C[859],C[5]],"awsm_&e":[C[887],C[53]],"libkatatsuki-sys":["@3 @6 @0 @4 Track @m of katatsuki","1.0.11"],"skulpin-renderer-sdl2":["Support @0 sdl2 in skulpin","0.5.1"],"zoom-api":["A fully ^8 & opinionated @x @c @0 @4 Zoom @x.","0.2.3"],"quixutils":["&O &w @5 ^u","0.13.2"],"jsonwebtokens":["A Json Web Token @2 @0 @3","1.1.0"],"ein-ffi":["$L @1 @0 Ein $m @L","0.6.0"],"slr_config":["A @d $H @G","0.0.20"],"volatile-register":["Volatile $X to $g mapped hardware registers",C[5]],"lnpbp":["LNP/BP Core @p ^5 LNPBP specifications & standards",C[591]],"typenum":["Typenum is a @3 @1 @0 $l-@C ^M evaluated at compile $z. It currently supports bits, unsigned integers, @5 signed integers. It also @s a $l-@C array of $l-@C ^M, but its @2 is incomplete.","1.14.0"],"sawp-flags":["SAWP BitFlags Handling @5 Storage","0.6.0"],"logging-allocator":["Global ^l @l logs on allocation @0 debug purposes.","0.1.1"],"ipnet":["@W @g @5 useful &P @0 ^p @7 IPv4 @5 IPv6 ^9 addresses, commonly called IP prefixes. $8 new `IpNet`, `Ipv4Net`, @5 `Ipv6Net` @g $j on @4 existing `IpAddr`, `Ipv4Addr`, @5 `Ipv6Addr` @g already provided in Rust's ^E @1 @5 align to their design to stay consistent. $8 ^F also @s useful $3 @l extend `Ipv4Addr` @5 `Ipv6Addr` @7 &P @0 `Add`, `Sub`, `BitAnd`, @5 `BitOr` $B. $8 ^F only uses stable feature so it is guaranteed to compile @u @4 stable toolchain.","2.3.1"],"hierarchical_^z_wheel_timer":["A low-@C timer implementantion @u a hierarchical four-@C ^z wheel @7 overflow.","1.1.0"],"nbconf":["@K $H $0 reader/writer","1.0.0"],"twisty":["Example WebSocket Echo @c implemented @7 twist","0.3.1"],"$I_inv_sqrt":["Fast inverse square root $1 @2.","1.0.1"],"wasm-bindgen-backend":["Backend @V ^1 of @4 &s-bindgen ^4","0.2.78"],"$5":["Character $5 @j @0 @3","0.2.33"],"oasis-cbor-derive":["$q @a @0 oasis-cbor.",C[5]],"llvmint":["@H to (almost) all LLVM intrinsics, @0 all platforms.","0.0.3"],"$P_alexaforbusiness":["^r ^N @0 @3 - Alexa For Business @ 2017-11-09",C[27]],"vigil-server":["Microservices Status Page. Monitors a distributed infrastructure @5 sends alerts (Slack, SMS, etc.).","1.22.2"],"tinf":["A @1 @0 @u terminfo capabilities.",C[24]],"serde-diff":["A &7 ^t to serialize @4 diff of two &o of @4 same $l @5 apply those differences to other &o.","0.4.1"],"google-clouderrorreporting1_beta1":["A @q @1 to @o @7 Clouderrorreporting (@9 v1beta1)",C[112]],"inline-c-macro":["$8 @a @0 @4 `inline-c` @8, @l allows to &0 @5 execute C @V inside @3","0.1.5"],"reqwasm":["^s requests @1 @0 WASM Apps",C[5]],"frankenstein":["Telegram bot @x @c @0 @3","0.6.0"],"bollard-stubs":["Stubs $2 @0 @4 Bollard @f @J Docker @c @x","1.41.0"],"medea-reactive":["Reactive mutable @w containers","0.1.1"],"parse_cfg":["Parse Rust's `cfg(not(any(target)))` &U syntax","2.0.0"],"olio":["Miscellaneous I/O @E","1.4.0"],"wcwidth":["Fast @T of wcwidth @5 wcswidth.","1.12.1"],"xoroshiro":["Xoroshiro128+, xorshift1024*φ @5 splitmix64 &L &a generators",C[1]],"prefixtree":["Hash-table-@n prefix ^0 @1","0.1.3"],"cosmogony":["@W geographical zones @7 a structured hierarchy","0.10.3"],"pretty-exec-lib":[C[701],"0.0.37"],"tp-rpc":["Tetcore RPC $9 @5 @E.","2.0.2"],"celery-codegen":["^o @0 rusty-celery",C[754]],"tracing-test-macro":["A $e @e @l allow @0 easier $S of $R @l $d `&g`.Internal @8, should only be $2 through @4 `&g-^7` @8.",C[0]],"srtparse":["A @1 @0 @R SRT Subtitles",C[3]],"@J_cell":["A Cell> @l you can await on.",C[3]],"grep":[C[561],"0.2.8"],"wasm-nm":["Print @4 symbols @l are imported in @5 exported @t a &s $0.",C[5]],"vcgencmd":["@H @0 Raspberry Pi's vcgencmd $w","0.3.1"],"startuppong":["startuppong.com @x @c",C[8]],"tectonic_docmodel":["$8 Tectonic document model @5 its @M ^d `Tectonic.toml`.","0.1.1"],"dubp":["Set of &4 ^5 @4 DUBP @9.","0.58.0"],"oping":["@3 @6 @0 liboping, a @d ICMP ping @1",C[2]],"libavif-sys":["Unsafe @h $G libavif, @4 image codec",C[16]],"reustmann":["Reustmann is a Von Neumann architecture",C[5]],"caribon":["A repetition detector ^U @5 @1","0.8.1"],"libzmq":["A strict subset of ØMQ @7 a high @C @x.","0.2.5"],"bbggez":["Utility @y by @4 Brooks Builds community @0 @4 @3 game $a GGEZ","1.1.0"],"actix-web-prom":["Actix-&e &G to expose Prometheus &q","0.5.1"],"mm":["Multimedia @1 intended to fill @4 role of SDL @5 GDK.","0.0.2"],"milstian-internet-framework":["My first experiment @7 a ^O @5 dynamic internet $U @k in @3","0.3.1"],"rpa_@a":["^o Module @0 RPA.","0.5.1"],"mat2":["matrix 2x2",C[5]],"jch":["Jump Consistent Hash @0 @3.","1.0.0"],"snapshot-proc-macro":["$q @e @0 $E snapshot tests.",C[0]],"lyon_geom":["2D quadratic @5 cubic bézier arcs @5 $D segment math on top of euclid.","0.17.5"],"sp-storage":["Storage related $9","3.0.0"],"wast":["Customizable @3 parsers @0 @4 $x Text formats WAT @5 WAST","38.0.1"],"libipld":[C[286],C[28]],"cache_2q":["A 2Q Cache $i maps keys to ^V",C[12]],"haybale":["Symbolic execution of LLVM IR, $A in @3","0.7.1"],"geng-derive":["Game Engine (@b @a)","0.8.0-alpha.1"],"programinduction":["A @1 @0 ^U induction @5 learning representations.",C[7]],"acme-client":["Easy to $d ACME @c @1 to issue, renew @5 revoke TLS certificates","0.5.3"],"slackbot":["Slack bots made &x",C[3]],"confy":["Boilerplate-free $H ^A",C[2]],"alpm-utils":["Helper @y @0 ^p @7 alpm","1.1.2"],"bitcoinconsensus":["Bitcoin's libbitcoinconsensus @7 @3 $W.","0.19.0-3"],"microamp-macros":["μAMP's `#[&J]` &U",C[288]],"gettext-sys":["Raw $L @6 @0 gettext","0.21.2"],"rtic-syntax":["$8 Real-Time Interrupt-driven Concurrency (RTIC) meta @L",C[113]],"atomic_refcell":["Threadsafe RefCell","0.1.8"],"nasm-rs":[C[114],C[5]],"glow":["GL on Whatever: a set of @6 to run GL (Open GL, OpenGL ES, @5 WebGL) anywhere, @5 avoid target-specific @V.",C[16]],"wayland-protocols":["Generated @x @0 @4 officials wayland @9 &p",C[98]],"integer_set":["A @1 ^R a high-$J integer set.","0.0.2"],"@f_asio":["&b I/O @1","0.6.0"],"brownstone":["^e @0 $K fixed-size arrays","1.0.1"],"triable":["Extends @4 `try!` @e to @g other than `std::result::Result` by introducing a `Triable` $y.",C[4]],"unic-char-range":["UNIC — &h Character Tools — Character Range @5 Iteration","0.9.0"],"compile-time-crc32":[C[273],C[4]],"intel-spi":["@p @0 accessing Intel PCH SPI","0.1.3"],"dlpack":["@3 @L $W @0 DLPack.",C[3]],"specs_guided_join":["specs guided join @0 ordered join iter",C[5]],"pubgrub":["PubGrub $4 solving $1",C[5]],"ecdh_@h":["ECDH @h @1","0.0.9"],"tree-index":["Index a flat-^0","0.6.1"],"actix-web-middleware-opa":["actix-&e &G @0 Open Policy Agent (OPA) verification","0.1.1"],"wasmtime-wiggle-macro":["Macro @0 integrating Wiggle @V @B @7 Wasmtime","0.27.0"],"widestring":["A wide $c @3 @1 @0 converting to @5 @t wide $p, such as those often $2 in ^6 @x or other $L libaries. Both `u16` @5 `u32` $c @g are provided, including @j @0 UTF-16 @5 UTF-32, malformed $5, C-style $p, etc.","0.5.1"],"log_settings":["a tiny @8 allowing &4 to change logger settings",C[4]],"wasm-bindgen-threads-xform":["Support @0 threading-related transformations in &s-bindgen","0.2.78"],"xlsx2csv":["Excel-$C sheets to CSV converter","0.4.2"],"hdpath":["Hierarchical Deterministic Path (BIP32, BIP43, BIP44, BIP49, BIP84)","0.6.0"],"rstat":["Probability distributions @5 statistics in @3 @7 integrated fitting routines, convolution @j @5 mixtures","0.6.0"],"hexlit":["A zero-allocation no_std-^i zero-cost way to convert hex-$p to byte-arrays at compile $z.","0.5.3"],"konst":["Const equivalents of std @y, compile-$z comparison, @5 @R","0.2.13"],"cap":["An ^l @l can track @5 limit $g usage.This @8 @s a ^G ^l @l wraps another ^l, tracking $g usage @5 enabling limits to be set.",C[0]],"pubsub":["Local publish / subscribe","0.2.3"],"ipfsapi":["Crate @0 interfacing @7 @4 IPFS ^S",C[1]],"bls_dkg":["@v of a DKG","0.7.0"],"hkt":["Simulated higher-kinded @g @0 @3","0.0.3"],"conjure-runtime-config":["Configuration @g @0 conjure-@I","1.2.0"],"intel-pstate":["Fetch @5 modify Intel pstate kernel parameters",C[8]],"nfqueue":["Netfilter NFQUEUE high-@C @6","0.9.1"],"elements":["@p @7 @j @0 de/@M, @R @5 executing on @w $k @5 ^9 &y related to Elements",C[43]],"fixedbitset":["FixedBitSet is a @d bitset $b",C[2]],"cetkaik_@F":["See &Y://sites.google.com/view/cet2kaik/@4-standardized-rule-in-english @0 context.","0.3.8"],"passgen":["An incrdibly @d @D $D password @B.",C[9]],"auto-args-derive":[C[251],"0.1.5"],"chariot_io_&1":["Chariot ^t @8 @0 frequent I/O $B such as &3 a byte","0.1.4"],"google-dns1-cli":[C[1004],C[675]],"ndarray-stats":["Statistical routines @0 ArrayBase, @4 n-dimensional array @w $V provided by ndarray.","0.5.0"],"swc_ecma_transforms_proposal":[C[151],"0.53.0"],"ibig":["A big integer @1 @7 good $J",C[9]],"twasmi":[C[135],"0.6.2"],"lockchain-core":["@W $u abstractions @0 @4 lockchain @8 ecoystem","0.9.0"],"findr":["expression-oriented $4 of Unix find @D","0.1.5"],"c_str":["$8 old c_str @y","1.0.8"],"tp-authorship":[C[115],"2.1.2"],"dudect-bencher":["An @2 of @4 DudeCT constant-$z @Y tester","0.4.1"],"sparse-bitfield":["Bitfield @l allocates a series of &7 buffers",C[16]],"google-dfareporting2d4-cli":[C[116],C[117]],"libremarkable":["$8 only publicly available Framework @0 developing @P @0 @4 Remarkable Paper Tablet w/ Low Latency Partial Refresh Support","0.5.0"],"herbie-lint":["A &K $Y to check @0 numerical instability","1.0.7"],"nyx-space":["A high-fidelity space mission toolkit, @7 orbit propagation, estimation @5 some systems engineering","1.0.0-beta.1"],"pkgsrc":["@p @0 &2 @7 a pkgsrc installation","0.1.15"],"cidrr":["CLI ^4 @0 expanding CIDR blocks ^d lists of IP addresses","0.1.1"],"chemfiles":["Modern @1 @0 chemistry trajectories &3 @5 $O",C[12]],"bevy_^u":["A $b of ^u @0 Bevy Engine","0.5.0"],"mp4ameta_^B":["$q @a to ^n $u accessors @0 @4 mp4ameta @8.","0.6.0"],"leetcode-cli":["Leet $r @V in @D-$D.","0.3.9"],"v4l2-sys-mit":["Raw v4l2 @6 (MIT licensed)",C[3]],"rusty-hook":["git hook $w","0.11.2"],"pulse-simple":["@K Pulseaudio @8 @0 @4 @3 @L","1.0.1"],"wasmer-engine":[C[365],"2.0.0"],"anyhow":["Flexible concrete Error $l built on std::^q::Error","1.0.44"],"failsafe":["A circuit breaker @2","1.1.0"],"tauri-libappindicator-sys":[C[835],C[4]],"lz-fear":["A $I ^X-@f no-unsafe @2 of LZ4 ^C @5 decompression","0.1.1"],"linebased":["Add a TCP query port to any ^U","0.5.0"],"bdk-macros":["Supporting @a @0 `bdk`","0.6.0"],"ann":["A @X @0 A, N, @5 N.","0.0.2"],"aes-soft":[C[118],C[979]],"easy-hasher":["Easy hashing @1","2.2.1"],"security-framework":["Security.framework @6 @0 macOS @5 iOS","2.4.2"],"ion-shell":["$8 Ion Shell","1.0.5"],"tokio-process":["An @2 of an $n ^I ^A backed @Z.",C[119]],"ruma-client-api":["Types @0 @4 endpoints in @4 Matrix @c-@U @x.","0.12.3"],"lyon_path_&I":[C[185],"0.9.0"],"concread":["Concurrently Readable Data-Structures @0 @3","0.2.19"],"iron-tera":["@Q is an Iron &G @0 @4 Tera templating @1","0.5.0"],"kyansel":["Cancellable future. Provide a future as argument @5 @4 current future will cancel if @4 provided future resolves first","0.3.1"],"lru_$z_cache":["@v of a Least Recently Used caching $1 in a container $i may be limited by size or $z, ordered by most recently seen.","0.11.11"],"vaporetto":["Vaporetto: a pointwise prediction @n tokenizer","0.1.6"],"code-generation-example":["@K lib @7 @V ^1 example",C[3]],"dtparse":["A dateutil-^i timestamp @i @0 @3","1.2.0"],"cursive_@F":["Core components @0 @4 Cursive TUI","0.3.0-alpha.0"],"ruma-serde-macros":["$q @a @0 ruma-$6.","0.5.0"],"argonaut":["A @d argument @i",C[28]],"openjpeg-sys":["OpenJPEG (JPEG 2000) $L @6","1.0.3"],"dota2_^S":["@3 @c @0 @4 official Dota 2 &e @x","0.2.3"],"nsq-client":[C[944],"0.1.12"],"watchexec":["@p to execute commands in response to $0 modifications","2.0.0-pre.0"],"janus-plugin-sys":["&M @6 to @4 Janus $Y @x.",C[7]],"sfunc":["$8 @1 @s special @y.","0.0.4"],"pretty-type-name":["a shorter $4 of std::any::type_name","1.0.0"],"ruma-appservice-api":["Types @0 @4 endpoints in @4 Matrix $U &t @x.",C[2]],"poke-a-mango":["What all @4 kool kidz are playing these days","0.5.0"],"juniper_warp":["Juniper GraphQL $T @7 Warp","0.7.0"],"reql-types":["Some useful @g to $d along @7 @4 reql @8",C[5]],"benchmarking":["@Q @8 can be $2 to execute something @5 measure @4 execution $z. It does not &Z anything to screens @5 filesystems.","0.4.10"],"reffers":["Smart pointers: ARef, @l allows even further owner erasure than OwningRef. Strong is a $g ^Z Rc + RefCell in one. And more!","0.6.1"],"picky":["Portable X.509, PKI, JOSE @5 ^s signature @2.","6.3.0"],"prometheus-endpoint":[C[187],"2.1.2"],"cargo-pkgbuild":["ArchLinux's PKGBULD @B @t Cargo.toml manifest $0","0.1.1"],"aloxide":["A ^t ^4 @0 Cargo $j scripts (build.rs) @0 compiling @5/or linking toa given Ruby @1 $4 @0 $d in @3 @V.","0.0.8"],"zopfli":["A @3 @2 of @4 Zopfli ^C $1.",C[2]],"noughts-and-crosses":["My attempt at making a well designed game @u GTK.","0.0.9"],"naia-socket-shared":["&O @w @g &J $t naia-@U-socket & naia-@c-socket $R",C[120]],"strum_@a":[C[146],C[74]],"subtle":[C[1082],"2.4.1"],"ldtk_@f":["Use @4 LDtk 2D @C editor to $j games in @3.","0.5.2"],"hyper-timeout":["A connect, read @5 &0 timeout aware connector to be $2 @7 hyper Client.","0.4.1"],"sc-client-api":["Substrate @c interfaces.","3.0.0"],"xkbcommon":["@3 @6 @5 &r @0 libxkbcommon",C[2]],"graphy_event":["A @1 @0 $W @y to events @7 &V.",C[1]],"google-qpxexpress1-cli":[C[139],"2.0.4+20160708"],"tract-core":[C[94],"0.15.5"],"strawpoll":["A @h to avoid spurious polling.",C[8]],"clapcomp":["clap completion @B as @D","0.1.5"],"bookfile":["A container $0 @G @7 chapters @5 an index",C[1]],"sshkeys":["@3 @1 @0 @R OpenSSH certificates @5 public keys","0.3.1"],"libchisel":[C[144],"0.6.0"],"phile":["$8 Painless High-Level Persistence Engine","0.1.4"],"async-h1":["&b ^s 1.1 @i.","2.3.2"],"sp-debug-derive":["^o to @b @I debug @2.","3.0.0"],"geomorph":["@K conversion $t different coordinate systems","1.1.0"],"rsocket_@f_transport_websocket":["Websocket RSocket transport @2.","0.7.2"],"google-calendar3":[C[282],C[534]],"puffin-imgui":["ImGui GUI @6 @0 @4 Puffin profiler","0.13.1"],"range-map":["Maps @5 sets implemented @u ranges.","0.1.5"],"hashconsing":["A ^z consing @1.","1.5.0"],"systemd-boot-conf":["Managing @4 systemd-boot loader $H",C[8]],"bdf":["BDF @G ^a.","0.6.0"],"small-deployer":["A &7 git webhook @U @l can be $2 to trigger deploys. Send notification in slack.",C[4]],"nbd":["@3 @1 @0 NBD (^9 block device) servers @5 clients.","0.2.3"],"store":["A dead @d $Q (de)serializer","0.1.0-alpha.3"],"atsamd51p":["Peripheral $X @x @0 ATSAMD51P $s (^8 @u svd2rust)",C[16]],"binary-layout":["$8 $Q-layout @1 allows $l-$M, inplace, zero-copy $X to structured $Q @w. You define a custom @w layout @5 give it a slice of $Q @w, @5 it will allow you to read @5 &0 @4 fields defined in @4 layout @t @4 $Q @w ^Y having to copy any of @4 @w. It's similar to transmuting to/@t a `#[repr(packed)]` struct, but much safer.","2.1.0"],"blit":["Blit sprites on a buffer @7 a mask","0.5.12"],"solana-rayon-threadlimit":["^f-rayon-threadlimit","1.8.1"],"unbytify":["Convert units of digital $f @t $c ^d @4 numeric equivalent @5 @4 other way $G",C[3]],"boow":["`Borrow Or oWned` smart pointer. Alternative to Cow.","0.1.3"],"deadpool":["Dead @d @J pool","0.9.1"],"sample-consensus":["Abstractions @0 sample &A ^3 such as RANSAC","1.0.2"],"cov":["gcov @G (*.gcda/*.gcno) @i @5 analyzer in ^X @3","0.0.5"],"libyobicash":["$8 Yobicash cryptocurrency @1","0.3.3"],"rants":["An @J NATS @c @1.","0.5.0"],"yup-hyper-mock":["A $w @1 @0 $S clients @u hyper","5.14.0"],"$P_marketplacecommerceanalytics":["^r ^N @0 @3 - ^r Marketplace Commerce Analytics @ 2015-07-01",C[27]],"proc-macro-rules":[C[121],C[5]],"rstack":["Stack traces of remote processes",C[9]],"susy-codec":[C[617],"3.5.1"],"deno-x86_64-apple-darwin":[C[539],"0.24.0"],"ref_eq":["Determine if two borrowed pointers point to @4 same thing.","1.0.0"],"qik":["@3 @1 @0 @4 Pololu qik dual serial motor controllers","1.2.3"],"eth_checksum":["Ethereum address checksum",C[4]],"appc":["@p ^5 AppContainer Specification (appc-spec).Shared maintenance under &Y://github.com/camallo.","0.0.1-dev.4"],"sudodb":["Relational ^Q @0 @4 Internet Computer","0.4.3"],"idcurl":["Idiomatic synchronous &z @c @n on curl","0.4.2"],"ranged_set":["A set @l stores contiguous ^V as a range. Designed to be $2 @7 numeric @g.","0.4.1"],"@D_attr":["$q @a @0 @D creation @0 @4 Serenity @1.","0.3.7"],"adapton":["$m abstractions @0 general-purpose incremental computations","0.3.31"],"cstr-macros":["$q @a @0 cstr","0.1.6"],"eventual":["Future & Stream $F","0.1.7"],"minisign":["A @8 to sign @z @5 verify signatures.","0.7.0"],"tuple-map":["map &P @0 tuple",C[2]],"digest-buffer":["Fixed size buffer @0 $d in ^w ^z @y","0.3.1"],"rprompt":["Prompt user input in console @P.","1.0.5"],"hask-replace":["Rename haskell modules at @4 speed of @3","0.6.0"],"liner":[C[167],"0.4.4"],"self_cell":["Safe-to-$d ^B-@e-free self-referential &o in stable @3.",C[13]],"time-util":["A @8 ^R miscellaneous $7 @0 ^p @7 timestamps.","0.3.4"],"dart-sys":["@H to @4 dart &8 &p ^S","2.0.1"],"unified-diff":["An @2 of @4 GNU unified diff @G",C[5]],"astrolab-smart-coffee-types":["Types lib","0.9.99999974"],"tomson":["Bidirection convertions $t Toml @5 Json","0.1.1"],"libheif-rs":["Safe @h $G @4 libheif-@r @8 @0 @R heif/heic @z",C[23]],"progress-rs":["Display a progressbar on @4 $o","0.3.1"],"noble-session":["FABRIC sessions noble","2.0.0"],"google-dns1_beta1":["A @q @1 to @o @7 dns (@9 v1beta1)","0.1.5+20150114"],"conduit-router":["Router &G @0 conduit @n on route-recognizer","0.9.0-alpha.7"],"rmp-rpc":["a msgpack-rpc @c @5 @U @n on $v",C[1]],"rcudnn-sys":[C[122],C[2]],"qapi-parser":["QEMU QAPI ^k specification @i","0.6.0"],"moniker-derive":["Derives @0 @4 moniker @8","0.5.0"],"cargo-aoc":["Cargo Advent of Code Helper",C[9]],"bevy_egui":["A $Y @0 Egui $T ^d Bevy","0.7.1"],"pico":["Nonblocking @R @j @0 hyper @u picohttpparser.","0.0.2"],"driver-pal":["@3 ^b ^j ^t @X","0.8.0-alpha.5"],"dbgen":["Generate &L ^7 cases @0 databases",C[7]],"array-queue":["Fixed size bidirectional queues @n on arrays","0.3.3"],"liquid-derive":[C[87],C[88]],"appscraps_^F":["$8 base appscraps ^F loader.",C[0]],"specker":["Testing $w @l simplifies $0 matching against bunch of templates.","0.3.5"],"w32-error":["Encapsulates ^6 @x ^q codes.","1.0.0"],"delix":["Decentral ^s proxy / load balancer","0.2.4"],"smbios-lib":["SMBIOS @p",C[7]],"psyche-serde":["Serialize/Deserialize ^F @0 Psyche AI Toolset","0.2.19"],"exonum-supervisor":["Exonum supervisor &t.","1.0.0"],"ra_ap_limit":["TBD","0.0.79"],"simi":["A @k @0 $K &s front-end &e $U in @3",C[5]],"odbc2parquet":["Query an ODBC @w source @5 store @4 result in a Parquet $0.","0.6.15"],"jobpool":["A @d @5 ^O threadpool @2","0.3.8"],"indexed":["Convenient ^l @0 index-linked @w $k",C[3]],"cap-tempfile":["Capability-@n temporary directories",C[42]],"xinput-sys":["Contains @Y $h @0 @4 ^6 @x @1 xinput. See winapi @0 @g @5 constants.",C[3]],"pool":[C[625],"0.1.4"],"longest-increasing-subsequence":["Find a longest increasing subsequence of some input sequence",C[0]],"pixset_@b":["^o 1.1 @2 of #[@b(PixLike)]","0.0.5"],"semverver":["Automatic verification of SemVer adherence in @3 @1 $R","0.1.48"],"sodium-sys":[C[338],"0.0.4"],"bracket-geometry":["Geometry @E. Rect, lines, circles, distance calculations. Part of @4 bracket-lib family.","0.8.3"],"xtensa-lx-rt":["Low @C $X @0 xtensa lx processors","0.7.0"],"github_auth":["Authenticate @7 GitHub @t @4 @D $D.",C[7]],"bootsector":["Read partitions @t block &N or @z","0.1.5"],"petal-decomposition":["Matrix decomposition ^3 including PCA (principal component analysis)@5 ICA (independent component analysis)","0.6.1"],"monero-epee-bin-serde":["A $6 @G @0 @4 $Q $5 defined within @4 epee ^t @1 of Monero.","1.0.1"],"enr":["@3 @2 of Ethereum Node Record (ENR) EIP778","0.5.1"],"tile_net":["Continuous tile-@n collision detection @5 resolution.","2.0.4"],"nickel-diesel":["Nickel &G ^R a diesel ORM @7 r2d2 connection pooling","0.9.0"],"scan-rules":["@Q @8 @s some @a @0 quickly @R ^V out of ^D. Roughly speaking, it does @4 inverse of @4 print!/@G! @a; or, in other words, a similar job to scanf @t C.",C[3]],"codespan-lsp":["Conversions $t codespan @g @5 &R Server ^c @g",C[17]],"xz":["@3 @6 to liblzma ^R Read/Write streams as well as low-levelin-$g $5/decoding.Alias of `xz2` @8.",C[0]],"clarity-repl":["Clarity REPL",C[72]],"popol":["Minimal non-blocking I/O","0.5.0"],"splitty":["a $c splitter taking quotes ^d account",C[0]],"colog":["$8 `colog` @1 is a @d formatter $N @0 @4 ^E @f &H @O (in @4 `log` @8).","1.1.0"],"kvm":["@H @0 KVM @m",C[3]],"tss-tspi":["@H to @4 TPM 1.2 TSS TSPI","0.0.1"],"strided":["Strided slices.This @1 @s two @g `Strided` @5 `MutStrided` asgeneralised forms of `&[T]` @5 `&mut [T]` respectively, where theelements are regularly spaced in $g, but not necessarilyimmediately adjacently.","0.2.9"],"md6":["@v of @4 MD6 ^z @Y @0 @3 via $L","2.0.3"],"eeprom24x":["Platform-&f @3 ^j @0 @4 24x series serial EEPROMs.",C[2]],"fr32":["Filecoin proofs Fr/32-byte conversion tooling","3.1.0"],"webm-native":["Deprecated: $d @4 webm @8 instead","0.4.6"],"ebpf":["&j extended BPF $X","0.0.4"],"kailua_langsvr":["&R @U @2 @0 Kailua","1.1.0"],"racer":["Code completion @0 @3","2.1.48"],"keygraph-rs":["A @1 to ^n keyboard adjacency graphs @7 petgraph","0.2.5"],"tock-registers":["Memory-Mapped I/O @5 register @m developed @0 Tock.","0.7.0"],"casper-contract":["A @1 @0 developing Casper ^9 smart contracts.","1.4.1"],"gif":["GIF de- @5 encoder","0.11.3"],"scale_documentation":["structured SCALE assembly documentation",C[4]],"ldap":["Pure @3 LDAP @v (Not abandonware anymore!)",C[3]],"github-app-auth":["@p @0 authenticating as a GitHub app","3.0.0"],"select_color":["A @1 @0 color selection",C[42]],"$c_to_expr":["Compile-$z expression evaluation @0 $p","0.0.2"],"sp-consensus-slots":[C[571],"0.9.0"],"wasmtime-profiling":[C[123],"0.29.0"],"calmio_filters":[C[124],C[0]],"$6_$4_@b":[C[1087],"0.5.1"],"dasp_sample":["An $F @0 audio PCM DSP samples, along @7 useful conversions @5 $B.",C[16]],"marine-macro":["Definition of @4 `#[marine]` @e","0.6.14"],"mice":["messing @7 dice","0.10.4"],"google-dataproc1-cli":[C[647],C[200]],"wedpr_ffi_$u":["@p of WeDPR ffi &J $u ^u.","1.1.0"],"mach_o_@r":["@H to @4 OSX mach-o @O @1","0.1.1"],"xi-rope":["A ^G rope @w $V built on top of B-Trees.",C[1]],"lending-library":["A key-&5 store @l loans full ownership of items.",C[3]],"syslog_loose":["A loose @i @0 syslog &y.",C[23]],"obj-exporter":["Wavefront obj exporter @0 @3",C[3]],"lapp":["@d @D-$D argument @i driven by usage ^D",C[2]],"c_fixed_$c":["Wrapper @g $G C-style fixed length $c buffers",C[3]],"serde-object":["Universal &5 $l covering @4 entire Serde @w model","0.0.0-alpha.0"],"quickcheck_@a":["A @e &U @0 quickcheck.","1.0.0"],"zvariant":[C[441],"2.9.0"],"cargo-emit":["Talk to Cargo easily at $j $z.",C[5]],"lib_tcstring":["IAB TCF (v1, v2) TCString @E",C[1]],"smallset":["An unordered set of elements optimized @0 &7 sizes","0.1.1"],"lfa":["&M @f @T of linear @Y approximators.",C[23]],"netlink-rs":["@3 netlink @1","0.0.3"],"hermit-abi":["hermit-abi is &7 @m to call @y @t @4 unikernel RustyHermit.It is $2 to $j @4 target `x86_64-unknown-hermit`.","0.1.19"],"piston-dyon_interactive":["A @1 @0 interactive coding @7 @4 Piston game $a","0.42.0"],"sysfs_gpio":["@W $X to GPIOs @u @4 &j sysfs @m.","0.6.0"],"google-logging2":[C[933],C[85]],"nalgebra-mvn":["Multivariate normal ^m @u nalgebra",C[16]],"windows_@a":["^o @0 @4 windows @8",C[74]],"attohttpc":["Small @5 ^O ^s @c",C[43]],"hydrogen":["Multithreaded &j TCP socket @U @u epoll.","0.1.5"],"ugdb":["An alternative TUI @0 gdb",C[32]],"crow_util":["A $w @1 @0 @4 crow_engine.","0.5.0"],"spl-token-cli":["SPL-Token Command-$D Utility","2.0.15"],"ra_vfs":["Virtual File System $F @0 @f-analyzer","0.6.1"],"port_check":["Get a free local port or check if a port somewhere is reachable.","0.1.5"],"pagetable":["@d wait-free two-@C pagetable @7 2mb pages","0.1.5"],"math":["A math @1",C[13]],"concurrent-hashmap":["A concurrent hashmap @1.",C[8]],"ffi_&w":["A @8 to help make ^p @7 $L easier.",C[1]],"mel":["convert scalars @5 vectors @t hertz to mel scale",C[1]],"git-anger-management":["Count $r naughty words in git commit &y","0.7.0"],"clipboard2":["clipboard2 is an improved $4 of clipboard-rs @7 better ^q ^a @5 MIME $l ^a on ^6","0.1.1"],"dtl":["Django Template &R @0 @3","0.0.2"],"capctl":["A ^X-@3 @m to prctl() @5 &j capabilities.",C[3]],"embedded-timeout-macros":["^o @0 ^p @7 timeouts on top of ^b-hal APIs",C[1]],"numbat":["An emitter @0 npm's numbat-&q @0 @3 projects.","1.0.0"],"fungi-lang":["Fungi: A typed, functional @L @0 programs @l name their cached &m graphs","0.1.63"],"zincati":["Update agent @0 Fedora CoreOS","0.0.23"],"dgraph-tonic":["A @f @J/sync @c @0 Dgraph ^Q $j @7 Tonic @8","0.9.0"],"fdringbuf":["Ringbuffer @7 FD signalling - $I IPC ^Y $g copies!","0.0.2"],"funfsm":["An FSM @1 where @4 states are @y",C[5]],"how-do-i-escape":["Prints escape sequences @0 unicode graphemes",C[1]],"http-api-problem":["A @1 to create ^s ^q response content @0 APIs @n on RFC 7807","0.50.2"],"tbot":["Make cool Telegram bots @7 @3 easily.","0.6.7"],"smol-potat":[C[125],"1.1.2"],"libp2p-swarm":[C[394],C[547]],"fluvio-sc-schema":["Fluvio @x @0 SC","0.10.3"],"all_variants":["following a rename, @4 name of @4 ^g follows @4 $y name better. @4 ^g can be found under every_variant now","0.3.1"],"archiver-rs":["A @1 @0 &x interaction @7 &l archive formats","0.5.1"],"map_@0":["A @3 @e @l implements @0 comprehensions similar to Scala's.",C[1]],"$6_rosmsg":["A rosmsg @M $0 @G",C[3]],"pg_interval":["A &8 PostgreSQL interval $l",C[1]],"nbssh":["SSH @D @B","3.0.0"],"nonblocking_socket":["Non-blocking Read::read() $B on AsRawFd &o (i.e. TcpStream)","0.0.2"],"slog-envlogger":["Port of de facto ^E logger @2 @0 @3, to `slog-rs` @k.","2.2.0"],"avr-device":["Register $X @8 @0 AVR $s",C[9]],"rtt-target":["Target side @2 of @4 RTT (Real-Time Transfer) I/O @9","0.3.1"],"read-process-memory":[C[891],C[4]],"@A_maps":["An unofficial Google Maps Platform @c @1 @0 @4 @3 $m @L.","2.1.4"],"leven":["Make $r own blog!","0.7.0"],"differential-evolution":["@K @5 powerful global optimization @u a self-adapting differential evolution.",C[8]],"ton-client-rs":["TON ^N Client @p @0 @3","0.21.0"],"ekiden-grpcio-sys":[C[952],"0.2.4"],"chess_perft":["@Q @X runs a 'perft' ^7 on a particular chess position. @Q makes every move out to a certain depth, @5 counts @4 &a of leaf-nodes. @Q is $2 to verify @l move ^1 is correct @5 $I. @Q also (optionally) verifies @l @4 hashing @Y produces unique ^V @0 each position.","3.1.1"],"glium":["Elegant @5 $M OpenGL wrapper.Glium is an intermediate layer $t OpenGL @5 $r $U. You still need to manually handlethe ^T pipeline, but ^Y having to $d OpenGL's old @5 ^q-prone API.Its objectives: - Be $M to $d. Many aspects of OpenGL @l can trigger a crash if misused are automatically handled by glium. - Provide an @x @l enforces good pratices such as RAII or stateless @Y calls. - Be ^i @7 all OpenGL versions @l @j shaders, ^R unified @x when things diverge. - Avoid all OpenGL errors beforehand. - Produce optimized OpenGL @Y calls, @5 allow @4 user to easily $d modern OpenGL techniques.","0.30.2"],"adi_gpu_base":["Trait @0 ^5 @4 adi_gpu ^S",C[16]],"signal-hook":["Unix signal ^a","0.3.10"],"mac-notification-sys":["Thin @h $G macOS Notifications.",C[1]],"fluvio_ws_^L_&s":[C[218],"0.7.0"],"quoted-string":["Specification independent @E to handle quoted $p (in Mail, MIME @g, ..)","0.6.1"],"cosmwasm":[C[126],"0.7.2"],"rustdt_util":["^e @5 $u @V @0 RustDT @3 projects","0.2.3"],"multibase":["multibase in @f","0.9.1"],"cargo-wasi-exe-x86_64-apple-darwin":["Precompiled $Q of `@S-wasi` @0 x86_64-apple-darwin","0.1.23"],"ytitler":["YouTube playlist @z (m3u) organizer.","0.1.1"],"slip132":["Bitcoin SLIP-132 ^E @2 (@R custom xpub/xpriv key formats)",C[196]],"const-str":[C[994],"0.3.1"],"vlc-rs":["@3 @6 @0 libVLC media @k.",C[1]],"rds":["@3 Data Science","0.0.3"],"str-utils":["@Q @8 @s some $3 to extend @g $i implement `AsRef<[u8]>` or `AsRef`.","0.1.5"],"cita-vm":["CITA VM",C[8]],"oxide-auth":["A OAuth2 @1 @0 $u &e servers, featuring a set of configurable @5 pluggable backends.","0.5.1"],"$0_diff":["An atomic $w @0 diffing @z in $S","1.0.0"],"seiri":["Support @1 @0 seiri music &F","2.0.12"],"xi-unicode":["&h @E useful @0 ^D editing, including a $D breaking iterator.",C[1]],"uefi":["Safe @5 &x-to-$d @h @0 $K UEFI apps",C[28]],"basedrop":["Memory-^A &1 @0 real-$z audio @5 other latency-critical scenarios",C[4]],"amf":["A @3 @v of AMF (Action Media Format)",C[2]],"defmt-test":["A ^7 harness @0 ^b &N","0.2.3"],"google-appstate1":[C[290],"2.0.8+20190627"],"ezing":["Easing @y",C[5]],"$P_kinesis":["^r ^N @0 @3 - Amazon Kinesis @ 2013-12-02",C[27]],"cat_$a":["A 2D ^T $a @7 audio &Z @j","1.0.0-alpha6"],"tlnat":["$l @C non-negative integer constants @0 @f",C[4]],"svgfilters":["@v of various SVG filters.",C[2]],"jsonway":["^k $K DSL @5 configurable serializers @0 @3","2.0.0"],"hipchat-client":["An @x @c @1 @0 HipChat","0.5.0"],"cache-size":["A @1 @0 finding $r L1/L2/L3 cache sizes","0.5.1"],"prctl":["@Q @X @s $M $F to @4 linux prctl() @m. Somefunctions may be architecture-specific.","1.0.0"],"allocator-suite":["Allocator Suite @0 various allocation @g","0.1.7"],"pbr":["Console progress bar @0 @3","1.0.4"],"iobuffer":["A @d $g-@n buffer @0 IO &3 @5 $O",C[3]],"libobliv-sys":["Raw @6 @0 Obliv-C","0.1.6"],"svd2rust":[C[373],C[95]],"openid":["OpenID Connect & Discovery @c @1 @u @J / await.","0.9.3"],"gitmoji-changelog":["Do you $d gitmoji? Then ^n $r changelog @7 this app!",C[2]],"nitrous":["Executable to be called @t a ^D editor, ^R $I snippets.","0.1.15"],"higher-cat":["Functors, Applicatives, Monads @5 other bad ideas","0.1.1"],"dont_panic":["panic!()-$C @e @l causes linking ^q instead of panicking. May be $2 to statically ensure some @V won't panic.",C[0]],"parity-runtime":["Tokio @I @h",C[4]],"darkredis":["Async Redis @c @u std::future",C[7]],"zerocopy-derive":["Custom @b @0 $3 @t @4 zerocopy @8",C[1]],"codespawn":["C++ @5 @3 @V @B. Supports XML @5 ^k @0 @x $h.","0.3.3"],"cool_asserts":["A $b of useful $S assertions @5 @E","1.1.1"],"sparsevec":["Compress vectors @u row displacement","0.1.4"],"kdbx4":["KeePass KDBX4 $0 reader","0.4.2"],"libsbc-sys":["Raw @6 to libsbc",C[4]],"rendy-core":[C[127],"0.5.1"],"mush":["Visual graph/dialogue editor",C[4]],"cbor":["CBOR ($Q ^k) @7 $l @n ^P @5 $5.","0.4.1"],"near-vm-logic":[C[860],C[359]],"neon-macros":["$q @a supporting Neon","0.9.1"],"oxygengine-network-backend-web":["Network Web $N ^F @0 Oxygen Engine",C[42]],"cfasttext-sys":["fastText ffi $W","0.6.0"],"etcommon-rlp":[C[128],"0.2.5"],"gen-iter":["temporary util @0 $Z iterators @u generators",C[3]],"forest_&V_^u":["^k @E $2 to interoperate @7 default golang ^k defaults","0.1.1"],"sixtyfps-rendering-backend-qt":["Qt &S $N @0 SixtyFPS","0.1.4"],"tch":["@3 &r @0 @4 PyTorch C++ ^S (libtorch).","0.6.1"],"claymore":[C[61],"999999999.999999999.9999999991"],"appscraps_^K":["@W @w $i may be &J $t appscraps modules.",C[0]],"swayipc-types":["A @1 containing Type defintions @t sway's IPC @m","1.0.0-alpha.3"],"fake_instant":[C[199],C[2]],"swf-headers":["A @1 @0 @R @4 headers of a swf $0.",C[3]],"hbs-pow":["@3 abstractions @0 hbs-pow-@r",C[3]],"jq-rs":[C[875],"0.4.1"],"globset":["Cross @N single glob @5 glob set matching. Glob set matching is theprocess of matching one or more glob patterns against a single candidate pathsimultaneously, @5 returning all of @4 globs @l matched.","0.4.8"],"medea-coturn-telnet-client":["Coturn TURN @U telnet @c","0.1.1"],"amq-protocol-tcp":["AMQP URI TCP connection ^a",C[304]],"result-like":["Option/Result-$C monad @m @0 $r own enum","0.4.2"],"s4":["Simpler @K Storage Service: high-@C @x &p @0 Rusoto's S3Client","0.0.15"],"elastic_@a":["Deprecated in favour of elastic_derive",C[5]],"unsegen_$o":["A pluggable `unsegen` ANSI $o",C[1]],"paragraph-breaker":["An @2 of @4 Knuth-Plass $1 @0 breaking paragraphs ^d lines","0.4.4"],"marine-timestamp-macro":["Definition of @4 `#[build_timestamp]` @e","0.6.14"],"kiteconnect":["RUST @x @h @0 kiteconnect APIs","0.2.9"],"messagebird-async":["Wrapper $G @4 message bird SMS @x","0.5.0"],"orml-currencies":["Provide `MultiCurrency` @2 @u `&v-balances` @5 `orml-tokens` ^F.",C[2]],"google-licensing1-cli":[C[129],C[130]],"qimalloc":["Quick incremental $g ^l",C[0]],"iced":["A cross-@N GUI @1 &X by Elm",C[1]],"mac_utun":["Create utun device @0 macos","0.6.0"],"yell":["@K UDP messaging","0.4.1"],"^z_ord":["A @f lib contains OrdMap(avl ^0) @5 HashMap($d avl to resolve collision);",C[32]],"gpu-alloc":["@v &f $g ^l @0 Vulkan $C APIs","0.5.2"],"dockerfile-rs":["Correct Dockerfile @B @1",C[1]],"tiger-digest":["Tiger @2 following @4 @3 Digest Traits","0.1.1"],"lscolors":["Colorize paths @u @4 LS_COLORS ^K variable",C[7]],"postgres-types":["Conversions $t @3 @5 Postgres ^V",C[8]],"wedpr_l_$u_coder_base64":["@p of WeDPR base64.","1.1.0"],"bluster":["A @3 @8 @0 ^5 BLE (Bluetooth Low Energy) peripherals","0.1.3"],"shlwapi-sys":["$L @6 to shlwapi. @Q @8 is a placeholder @0 @4 future. If you are interested in this @1 feel free to get in touch @7 me: &z://www.rustaceans.org/retep998","0.0.1"],"back-to-the-future":["Conversions $t std::future::Future @5 @Z::Future.","0.1.7"],"pretty-bytes":["Convert bytes to a human readable $c",C[8]],"snarkvm-gadgets":["Gadgets @0 a decentralized virtual machine","0.7.9"],"solana-drone":["Solana Drone","0.21.0"],"iced_glow":["A glow renderer @0 iced",C[3]],"superchan":["Communicate &6 a ^9 @u a channel-$C @x.","0.0.7"],"bzip2-sys":[C[257],"0.1.11+1.0.8"],"dia-kit":["Some kit...","0.29.0"],"bakervm":["A virtual machine @0 $K @5 running retro games","0.9.0"],"toml-query_@b":["Proc-@e @0 toml-query",C[13]],"rill":["Dynamic &H @5 &g @O","0.21.0"],"overbot":["Telegram Bot Manager @l abstracts away @4 boring stuff @5 leave you @4 fun","0.3.3"],"jetscii":["A tiny @1 to efficiently search $p @5 byte slices @0 sets of ASCII characters or bytes.","0.5.1"],"ratio-def":["Define newtypes @0 unit ratios","0.3.1"],"@8":["...","0.0.2"],"shopify":["Shopify @x Client @0 @3.","0.1.6"],"patricia_^0":["Memory-^Z @w $k @n on patricia ^0","0.3.1"],"heim-net":["Cross-@N ^9 $f",C[59]],"mdbook-mermaid":["mdbook preprocessor to add mermaid @j","0.8.3"],"jemalloc-sys":[C[538],C[9]],"discortp":["Lightweight, flexible Real-$z Transport ^c (RTP) @R @1.",C[2]],"custom_debug":[C[131],"0.5.0"],"julia":["Idiomatic @5 $M Julia @6 @0 @3","0.2.5"],"moka":["A $I @5 concurrent cache @1 &X by Caffeine (Java) @5 Ristretto (Go)","0.6.1"],"scram":["A SCRAM provider @1.","0.6.0"],"oxygengine-script-flow":["Visual graph scripting ^F @0 Oxygen Engine",C[42]],"maman":["@3 Web Crawler","0.13.1"],"path-table":["Path-@n routing table.","1.0.0"],"helium-api":["An @J @1 @0 @4 Helium blockchain REST @x","3.1.0"],"linux-api":["Types @5 constants @0 &j @x @6. Actual @6 can be found in additional $R found in dev-&c","0.0.5"],"cargo-local-pkgs":["Run @S commands on all local packages",C[9]],"mob":[C[132],"0.4.3"],"xattr":["unix extended filesystem attributes",C[8]],"wagyu-zcash-parameters":[C[323],C[3]],"alloc_buddy_@d":[C[133],C[4]],"blockade":["A @h @1 to @m @7 @4 Blockade ^g",C[32]],"snapshot":["\"Snapshot\" or golden master regression $S.",C[0]],"peel":["Dynamic packet @R within trees",C[7]],"css-modules-macros":[C[383],"0.5.2"],"landon":["A $b of &1, @w $k @5 &P @0 exporting Blender @w (such as meshes @5 armatures) @5 preparing it @0 $r &S pipeline.","0.10.2"],"google-pagespeedonline2-cli":[C[183],"2.0.4+20191206"],"ao":["@H to Xiph.org's libao","0.6.1"],"opentelemetry-stackdriver":["A @3 opentelemetry exporter @l uploads traces to Google Stackdriver trace.",C[28]],"boyer-moore-magiclen":["Boyer-Moore-MagicLen, a $I $c search $1 implemented in @3.","0.2.14"],"&k_assert":["&k assertions","0.3.1"],"send":["@Q ^U lets @4 user $l in input @5 sends it to either external @D or piped-stdout",C[7]],"google-tagmanager2-cli":[C[432],C[63]],"dialoguer":["A @D $D prompting @1.","0.9.0"],"ncollide":["&T: $d ncollide2d or ncollide3d instead. 2 @5 3-dimensional collision detection @1 in @3.","0.14.3"],"enum-repr":["&n enum repr conversions ^i @7 $l aliases.","0.2.6"],"^f_libra_failure_@a":["Libra failure @a",C[10]],"credentials":["Fetch secrets @t either ^K variables or Hashicorp's Vault",C[28]],"svc-error":["An @2 of RFC7807: Problem Details @0 ^s APIs.",C[3]],"metrohash":["@3 @2 of MetroHash, a high quality, high $J ^z $1","1.0.6"],"gladis":["Easily import Glade-^8 UI @z ^d @3 @V.","1.0.1"],"rocket-json-response":["@Q is a @8 $i @s `JSONResponse` @5 `JSONResponseWithoutData` &o to response ^k @G @w @7 an additional **@V** integer &5.","0.6.0"],"worldgen":["Noisemap @5 world ^1 @1","0.5.3"],"piston-opengex":["Meta rules @0 @R @4 OpenGEX @G","0.6.0"],"geng":["Game Engine","0.8.0-alpha.8"],"chain-p2p":["A Tcp @k.","0.1.7"],"libcoinche":["A @1 to model @4 Coinche card game.",C[3]],"gettext-macros":["A few ^B-@a to help internationalizing @3 @P","0.6.0"],"rwt":["Rebel Web Tokens, similar in form @5 @Y to ^k Web Tokens",C[2]],"document":["Structures @5 $9 @0 documents.","0.5.1"],"^f_libra_grpcio-client":["Solana Libra grpcio-@c","0.0.0"],"sessions-redis":["Sessions Redis Storage","0.2.3"],"bufsize":["bytes::BufMut @2 to count buffer size","1.0.0"],"rs-consul":["@Q @8 @s $X to a set of strongly typed apis to @o @7 consul (&Y://www.consul.io/)",C[3]],"tauri-runtime":["Runtime @0 Tauri @P",C[5]],"conjure-object":["Runtime @j @0 ^8 Conjure objects","0.7.4"],"sp-api-proc-macro":["^o @0 declaring @5 ^5 @I apis.","3.0.0"],"gui-derive":["Custom @b @a @0 @4 gui @8.","0.6.0"],"snarkvm-algorithms":["Algorithms @0 a decentralized virtual machine","0.7.9"],"serde-detach":["Deserialise @g containing e.g. Cow ^Y borrowing","0.0.1"],"scp":["A @3 @1 @l parses $p of ^D as commands, subcommands, parameters @5 options.","0.6.1"],"hunspell-rs":[C[134],C[1]],"gumdrop":["Option @i @7 custom @b @j",C[7]],"wasmi":[C[135],"0.9.1"],"ascii":["ASCII-only equivalents to `char`, `str` @5 `String`.","1.0.0"],"log-fastly":["@v of @4 `log` façade @0 Fastly Compute@Edge",C[7]],"magenta-sys":["Low-@C @3 @6 @0 @4 Magenta kernel",C[3]],"tiny-skia":["A tiny Skia subset ported to @3.","0.6.1"],"mpeg_encoder":["A @d ffmpeg video encoder.",C[5]],"procontest":["Test $w @0 competitive $m",C[38]],"easygpu":["@K @h $G wgpu aiming to make some $u $B easier","0.0.14"],"expand_str":["ExpandEnvironmentStrings-$C @Y @5 $c formatting $w","0.1.1"],"rfsapi":["Raw Filesystem @x -- enable simpler browsing @7 ease",C[3]],"target":["Get $f on compilation target","2.0.0"],"blinkt":["Interface @0 @4 Pimoroni Blinkt!, @5 any similar APA102 or SK9822 LED strips or boards, on a Raspberry Pi.","0.6.0"],"oxygengine-network":["Network ^F @0 Oxygen Engine",C[42]],"$b_@a":["Collection of @a @0 &C",C[3]],"seax_svm":["SECD virtual machine @0 interpreting programs in FP languages","0.2.8"],"editdistancewf":["Compute @4 edit-distance $t vectors @u @4 Wagner-Fischer $1",C[3]],"cargo-rpm":["Build RPMs @t @3 projects @u Cargo workflows",C[7]],"iprange":["A @1 to manage IP ranges","0.6.4"],"font-atlas":["A @8 @0 $E font atlases @0 games or guis","0.1.4"],"jni-glue":["Manually $A glue @V to accompany @4 jni-bindgen @V @B @0 $W to JVM APIs @t @3","0.0.10"],"mesalink":["MesaLink is a $g-$M @5 OpenSSL-^i TLS @1 @n on Rustls @5 Ring.","1.1.0-cratesio"],"sc-consensus-manual-seal":["Manual sealing $a @0 Substrate","0.9.0"],"easylog":["A @d @5 &x to $d &H-@8. Write log-&y to a $0.","2.0.1"],"grapl-graph-descriptions":["A @1 @0 &2 @7 Grapl graphs","0.2.10"],"cfn-guard":["^r CloudFormation Guard is an open-source general-purpose policy-as-@V evaluation ^4. It @s developers @7 a @d-to-$d, yet powerful @5 expressive domain-specific @L (DSL) to define policies @5 enables developers to validate ^k- or YAML- formatted structured @w @7 those policies.","2.0.3"],"nell":["&j netlink @m",C[1]],"rgb_node":["RGB node","0.4.2"],"lcs":["A @1 @0 computing longest $u subsequences @5 diffs",C[3]],"ttf-noto-sans":["Noto Sans TrueType fonts @0 embedding ^d $r $U $Q.","0.1.1"],"nitrokey-test-state":["State required @5 $2 by @4 nitrokey-^7 @8.",C[0]],"codepage":["Mapping $t ^6 @V page ^M @5 encoding_rs character encodings","0.1.1"],"sp-block-builder":[C[451],"3.0.0"],"sounding-analysis":["Types @5 @y @0 ^p @7 weather soundings.","0.17.3"],"ekvsb":["Benchmark Tool @0 Embedded Key-Value Stores available in @3","0.0.13"],"linky":["Extract links @t Markdown @z @5 check links @0 brokenness","0.1.8"],"rustorm_dao":["Dao @s a flexible way to $X @w @t @4 ^Q",C[42]],"pythonic":["pythonic is a @3 AST &I @l generates Python",C[1]],"slog-extra":["Standard slog-rs &p",C[4]],"lfs-core":[C[388],"0.5.0"],"dbus-rs":["DO NOT USE - renamed to dbus!","0.0.5"],"mine":[C[61],C[62]],"natural":["Pure @f @1 @0 natural @L &u.","0.5.0"],"secp256k1-plus":[C[488],"0.5.7"],"microkelvin":["A @1 @0 ^0 traversal &6 annotated datastructures",C[13]],"blc":["An @2 of @4 $Q lambda calculus.","0.6.0"],"run_script":["Run shell scripts in @f.","0.9.0"],"Xorfilter":["No alloc membership approximation",C[5]],"aliri_clock":["Timing @E $2 by @4 `aliri` family of $R","0.1.4"],"cpython-json":["Converts &8 Python objects ^d serde_json Values @5 back again",C[1]],"$6":[C[775],"1.0.130"],"peak_alloc":["An ^l to keep track of (@4 max) allocated $g",C[0]],"ringbuffer":["A fixed-size circular buffer","1.0.0"],"zmq-pw":[C[223],"0.9.8"],"dbi":["Database @m &1",C[1]],"compress":["Various ^C ^3 $A in @f",C[5]],"bk-tree":["A @3 BK-^0 @2",C[2]],"auditable":["Audit @3 binaries @0 known bugs or vulnerabilities in production @7 zero bookkeeping.",C[0]],"kailua_@g":["Type @O @0 Kailua","1.1.0"],"perf-event":["A @3 @m to &j $J monitoring","0.4.7"],"panic-probe":["Panic handler @l exits `probe-run` @7 an ^q @V",C[5]],"waitgroup":["Async waitgroup @0 a $b of task to finish",C[4]],"msgp":["Byte message @9 @0 @3.","0.1.1"],"eui":["Extended Unique Identifier (EUI)",C[0]],"fnd":["A @d way to find @z.",C[9]],"kl-hyphenate":[C[557],"0.7.3"],"libsodium-ffi":["&M @6 ($L) to @4 libsodium @1",C[8]],"priomutex":["A mutex where waiting threads specify a priority","0.3.1"],"mick-jaeger":["@3 @c @0 sending traces to a Jaeger @U","0.1.4"],"zbus_polkit":["PolicyKit $W",C[136]],"nautilus-extension":["Safe @3 @h @0 libnautilus-^h, to extend GNOME Nautilus $0 browser (aka Files in Ubuntu)","0.6.1"],"foundationdb-gen":["Binding ^1 ^t @0 FoundationDB.","0.5.0"],"stdio_logger":["Display log &y to @4 ^E &Z","0.1.1"],"weedle":["A WebIDL &B",C[28]],"rome":["An RDF @1 in ^X @3","0.1.3"],"hpack":["A @1 ^5 HPACK coding",C[1]],"tokio-reactor":[C[137],C[138]],"^2_^q":["Triggerable ^2 ^q","0.1.1"],"bite":["read @5 &0 $9 in little endian, @5 in big endian.","0.0.5"],"vectorphile":["A @1 @0 vector drawing @7 &l &Z @g",C[38]],"&K_term":["Rust's libtest $o formatting @1","0.0.1"],"harmony":["A @p @0 simulating games of Harmony",C[5]],"ct-logs":["Google's list of Certificate Transparency logs @0 $d @7 sct @8","0.9.0"],"bee-network":["Networking $7 @5 @g @0 nodes @5 clients participating in @4 IOTA @9 built on top of `^v`.",C[8]],"orset":["An Observe Remove Set CRDT @7 delta mutation",C[3]],"hdbconnect":["A ^X @f ^j @0 SAP HANA(TM)",C[88]],"bls_signature_aggregator":["A ^G BLS Signature Aggregator","0.2.7"],"serde-scale":["Serde serializer @5 deserializer @0 @4 SCALE $5",C[8]],"wdg-base64":["$8 Base64 Data Encoding","0.4.7"],"json-structural-diff":["A @3 ^k structural diff @1",C[0]],"microstate":["Finite state machine, &X by micromachine","1.0.0"],"linux-personality":["Wrapper $G &j personality @Y.","1.0.0"],"sgx_alloc":[C[21],"1.1.1"],"git-credential-null":["Git credential ^t to disable git password prompts.","1.0.1"],"bear-lib-terminal-sys":["Pure BearLibTerminal $L @0 @3","1.3.0"],"@f_redlock":["A @3 Redlock @2 @0 distributed, highly-available redis locks",C[2]],"google-speech1":["A @q @1 to @o @7 Speech (@9 v1)",C[85]],"sonic-channel":["@3 @c @0 sonic search $N","0.4.1"],"$Q_rw":["A $Q reader/writer @1 @0 @f","1.2.1"],"readability-fork":["Temporary fork of 'readability' @8 @7 updated &c",C[8]],"postgres_range":["Range @j @0 @f-postgres",C[16]],"async-injector":["Reactive &m injection @0 @3.","0.17.1"],"lsd":["An ls @D @7 a lot of pretty colors @5 some other stuff.","0.20.1"],"metriqs":["Metrics infrastructure @k","0.1.6"],"juniper_^H":["Internal custom @b $y @0 Juniper GraphQL","0.15.7"],"rustspec_assertions":["BDD style assertion @1","0.1.9"],"svd":["SVD &o in @V.","1.0.0"],"ispc":["A $j-$z &m @0 Cargo $j scripts to help @7 compilingand linking to ISPC @V @5 $E @3 @6 @0 @4 resulting library.This @8 is a meta-@8 @0 @4 ispc_compile @5 ispc_rt $R, $i providethe actual $7 @0 $K ISPC @V @5 $E bindgs, andimporting those @6 ^d @3.","1.0.9"],"waiter_di":["Dependency injection","1.6.5"],"slotmap":["Slotmap @w $V","1.0.6"],"mocktopus_@a":["Mocktopus $e @a","0.7.11"],"simple-bitrange":["A @d @8 @0 manipulating bit ranges $i is $u when ^p @7 IC registers.","0.1.3"],"uniffi_bindgen":["a multi-@L @6 @B @0 @f (^H @5 ^y tooling)",C[24]],"bigml_@b":["Internal `@b` @j @0 unofficial BigML @c @6",C[2]],"fang_oost_option":["A @1 ^5 Fang @5 Oosterlee's $1 @0 option pricing.","0.32.1"],"quandl-v3":["@3 @6 @0 @4 Quandl v3 @x.","1.2.0"],"c99":["C99 @g @0 easier interop","0.1.1"],"gd32vf103xx-hal":["HAL @0 GD32VF103 $s","0.5.0"],"swc_ecma_@i_@a":["^o @0 swc_ecma_parser.","0.4.1"],"exocore-transport":["Transport layer of Exocore (Distributed @P @k)","0.1.15"],"vodk_math":["Yet another math vector @5 matrix @1.","0.0.3"],"@G_num":["Format ^M ^d various representations of $p @n on a @G specifier mini-@L.",C[0]],"krator":["A Kubernetes operator @2 in @3","0.5.0"],"jsonrpc-client-core":["A @8 @0 $E transport &f, auto serializing, strongly typed ^k-RPC 2.0 clients","0.5.0"],"tentacle-identify":["p2p identify @9","0.2.10"],"c2rust-asm-casts":["Type cast &w @0 $d @7 C2Rust's inline assembly @2",C[3]],"scopetime":["log @I of arbitrary scope","0.1.1"],"@d":["$8 simplest ^T @1, &X by LOVE2D",C[1]],"x509-certificate":["X.509 certificate @i @5 $w $7",C[2]],"&J_child":["a @1 @0 @u child processes @t &l threads","0.3.5"],"compile_msg":["A $Y @0 emitting errors, warnings @5 notes to @4 developer atcompile $z.","0.1.5"],"tame-oauth":["A (very) @d oauth 2.0 @1","0.6.0"],"ts3plugin-sys":["$L @6 to @4 TeamSpeak3 $Y @x",C[2]],"melib":["mail @1","0.7.2"],"img-parts":["Low @C @8 @0 &3 @5 $O Jpeg, Png @5 RIFF image containers","0.2.3"],"svgcleaner":["svgcleaner could help you to clean up $r SVG @z @t @4 unnecessary @w.","0.9.5"],"tuirealm":["A tui-rs @k to $j interfaces, &X by React @5 Elm.","0.6.0"],"ep-miniaudio-sys":["Raw @6 to @4 miniaudio C @1.","2.4.0"],"fftw":["$M @h of FFTW3","0.7.0"],"holochain_serialized_bytes":["serialized bytes @0 holochain","0.0.51"],"h3ron":["High-@C @f @x @0 H3",C[28]],"uinput":["&j uinput @h.","0.1.3"],"discrete":["Combinatorial phantom @g @0 discrete mathematics",C[2]],"dumb-exec":["A very @d @5 dumb @2 of a @Z executorthat doesn't allocate @5 can be $2 in no_std environments.","0.0.7"],"tokio-socketcan-bcm":["&b &j SocketCAN - Broadcast Manager @j (BCM) @7 $v","1.0.0"],"drone-stm32-map-svd":["STM32 SVD to @6 @0 Drone, an Embedded Operating System.",C[24]],"eudex":["A blazingly $I phonetic reduction/hashing $1.","0.1.1"],"ident_case":["Utility @0 applying case rules to @3 identifiers.","1.0.1"],"data-encoding-macro":["^o @0 @w-$5","0.1.12"],"rage":["[BETA] A @d, secure, @5 modern encryption ^4.","0.7.0"],"protoc-grpcio":["@x @0 programatically invoking @4 grpcio (grpc-rs) gRPC ^2","3.0.0"],"merkle_sigs":["@v of Merkle signing","1.7.0"],"urlencode":["A CLI $w @0 URL-$5 or -^P $p",C[4]],"$D_plot":["2d $D plot","0.1.7"],"libsqlite3-sys":["&M @6 to @4 libsqlite3 @1","0.23.1"],"rust-lapper":["A $I @5 &x interval overlap @1","1.0.0"],"futures-fs":["A Futures @2 @0 File System $B","0.0.5"],"atomig-macro":["Defines $e @a @0 @4 @8 `atomig`. Please see @4 main @8.",C[3]],"node-builtins":["a list of Node.js built in modules",C[0]],"ckb-sentry-contexts":[C[687],"0.21.0"],"integral_square_root":["Square root (returned as f64) @0 integral @g","1.0.1"],"json-spanned-value":["Track @4 origin of $r &V ^V @0 better ^q reporting!",C[8]],"ruuvi-sensor-protocol":["Ruuvi sensor @9 @i @2","0.5.0"],"elmesque":["An attempt at porting Elm's incredibly useful, purely functional std ^T modules.",C[28]],"jlink_rtt":["Implements @4 JLINK RTT @9",C[3]],"bbox":["Managing axis aligned 3d Bounding Boxes.","0.11.2"],"jobrog":["@D $D job clock","1.0.2"],"dpdk-sys":["dpdk-@r","0.1.5"],"&g":["Application-@C &g @0 @3.","0.1.29"],"tracing-actix-web":["Structured &H &G @0 actix-&e.",C[712]],"google-admin1_directory":[C[407],C[408]],"holochain_persistence_^S":["persistence ^S @0 content addressable ^x @5 entity &U &5 indexes","0.0.18"],"vulkano-glyph":["Text &S @7 vulkano.",C[2]],"google-qpxexpress1":[C[139],"2.0.8+20160708"],"rc-borrow":["Borrowed forms of Rc @5 Arc.","1.4.0"],"raventhemer":["A theme &F @5 switcher @0 desktop linux","1.5.3"],"milter":["@H to @4 sendmail milter @1","0.2.3"],"rusttype":["A ^X @3 alternative to &4 $C FreeType.RustType @s an @x @0 loading, querying @5 rasterising TrueType fonts.It also @s an @2 of a dynamic GPU glyph cache @0 hardware font &S.","0.9.2"],"ocl-core":[C[548],"0.11.2"],"mt19937":["A translation of @4 MT19937 Mersenne Twister rng $1 to @3","2.0.1"],"safe-nd":[C[173],"0.11.7"],"ds":["A @1 @0 controlling FIRST Robotics Competition robots","1.2.4"],"seed-icons-gen":["Generate font-awesome icons @0 Seed",C[9]],"rusthesia":["Reads midi @z @5 create piano notes waterfall.","0.1.21"],"rpassword":["Read passwords in console @P.","5.0.1"],"divsufsort":["@3 port of Yuta Mori's divsufsort","2.0.0"],"ark-ff":["A @1 @0 finite fields",C[1]],"metrics-facade":["A ^O &q facade @0 @3","0.1.1"],"^f_libra_&q":["Libra &q",C[10]],"quickcfg":["Do basic $H of a @O, declaratively @5 quickly.","0.6.0"],"compact_arena":["A @8 @7 some @g to allow indexed arenas @7 &7 $g footprint","0.4.1"],"ufmt-write":["`μfmt`'s `uWrite` $y",C[0]],"kcapi-sys":["@3 $L @6 @0 libkcapi, @4 kernel &Q ^S @1.","0.0.3"],"warc_@i":["Web ARChive @R @1 @u nom lib","2.0.0"],"nbdkit":["@3 @6 to @4 NBDKit @k @0 $Z Network Block Device servers",C[3]],"enet":["High-@C, @f-y @6 to @4 ENet @1","0.2.3"],"rayon":["@K work-stealing parallelism @0 @3","1.5.1"],"socketcan":["&j SocketCAN @1. Send @5 receive CAN frames via CAN bus on &j.","1.7.0"],"stripe-rust":[C[140],"0.12.3"],"strong_rc":["Reference counting smart pointer ^Y weak count","0.1.4"],"nitrocli":["A @D $D ^4 @0 &2 @7 Nitrokey &N.","0.4.1"],"google-coordinate1-cli":[C[468],"2.0.4+20150811"],"interval":["A @1 ^R an integer interval $l.","0.0.1"],"async-jsonrpc-client":["An $n ^k-RPC 2.0 @c @1",C[1]],"pallet-proxy":["FRAME proxying &v","3.0.0"],"wchar-impl":["Internal @2 of wchar.",C[16]],"rustls-acme":["TLS certificate ^A @5 serving @u rustls",C[3]],"parasailors":["SIMD accelerated pairwise genetic sequence alignment.","0.3.1"],"sapper_session":["Session $Y @0 sapper @k.",C[3]],"elfutils":[C[141],"0.0.6"],"oxygengine-ignite":["CLI app $2 to setup @5 develop Oxygen Engine projects",C[42]],"com-wrapper":["An @m @0 @g $i are a @h $G a `wio::com::ComPtr`.",C[0]],"ntex-bytes":["Types @5 $3 @0 ^p @7 bytes (bytes @8 fork)","0.1.4"],"simple-16":["@K-16 Integer Compression",C[3]],"lib_xch":["Crate xch-ceb's official lib",C[15]],"rustwlc":["wlc Wayland @1 @6 @0 @3","0.7.0"],"fedora-update-feedback":["provide feedback @0 fedora updates (&X by fedora-&x-karma)","1.1.0"],"tc_^G":["Testcontainers ^G image",C[5]],"map-to-javascript-html":["A @1 @0 serializing a map to JavaScript @V in HTML usually @0 dynamically $E $p on &e pages.","2.0.4"],"partial_ref_@b":["Derives @0 partial_ref","0.3.3"],"secp256k1-test":[C[771],"0.7.2"],"css":["A @8 @l uses @4 cssparser @5 selectors $R to provide a domain model @0 CSS Stylesheets. Intended to allow effective minification of CSS @5 CSS transformations such as autoprefixing @5 removal by other $R","0.0.22"],"rink":["Unit conversion ^4, similar to frink","0.6.1"],"google-dfareporting2d2-cli":[C[723],C[117]],"runtimeobject-sys":["Contains @Y $h @0 @4 ^6 @x @1 runtimeobject. See winapi @0 @g @5 constants.",C[3]],"memofs":["Virtual filesystem @7 configurable backends.",C[3]],"atoi":["Parse integers directly @t `[u8]` slices in $M @V",C[2]],"rs-snowflake":["@3 $4 of @4 Twitter snowflake $1.","0.5.0"],"hkdf":["HMAC-@n Extract-@5-Expand Key Derivation Function (HKDF)",C[16]],"replace_@7":["Temporarily take ownership of a &5 at a mutable location, @5 replace it @7 a new &5 @n on @4 old one.","0.1.7"],"wasmtime-types":["$x $l $h @0 Cranelift",C[53]],"kurobako_problems":["A $b of black-box optimization problems",C[49]],"base64":["encodes @5 decodes base64 as bytes or utf8",C[15]],"libui-sys":["Low-@C @f @6 @0 libui","0.1.9"],"migrant":["CLI Database migration ^A @0 postgres, sqlite, mysql",C[24]],"microwave":["Make xenharmonic music @5 explore musical tunings.","0.24.0"],"dither":["A ditherer @0 &k images @7 a variety of color palettes","1.3.10"],"cec-rs":["Thin but $M @h @0 libcec","2.2.1"],"exprtk_@r":["Low @C @f @6 to @4 ExprTk C++ @1 (&z://www.partow.net/$m/exprtk)",C[0]],"metrics-exporter-http":["A &q-@F ^i exporter @0 serving &q &6 ^s.",C[1]],"concrete-fftw":["Safe @h $G FFTW",C[4]],"differential-geometry":["A @1 @0 differential-geometric calculations","0.3.1"],"partial-io":["Helpers to ^7 partial, interrupted @5 would-block I/O $B.","0.5.0"],"dtoa":["Fast @y @0 printing floating-point $9 to an io::Write","0.4.8"],"cxxbridge-macro":["@v detail of @4 `cxx` @8.","1.0.56"],"linearkalman":["Linear Kalman filtering @5 smoothing","0.1.3"],"plurals":["Helps @7 singular/plural forms, mostly in English",C[2]],"camino":["UTF-8 paths","1.0.5"],"speech-dispatcher":["Rusty @m to @4 speech-dispatcher speech synthesis @1","0.7.0"],"build-version":["Git $4 info","0.1.1"],"$P_elastictranscoder":["^r ^N @0 @3 - Amazon Elastic Transcoder @ 2012-09-25",C[27]],"flv-util":["utilies @0 Fluvio projects","0.5.2"],"gfx_window_vulkan":["Vulkan window @0 gfx-rs",C[0]],"experimental-reactive":["Experimental overheadless reactive $m @k","0.0.3"],"envelope":["An interpolatable Envelope $y along @7 a ^G 2D Point $y. Useful @0 controlling parameters &6 $z.","0.8.1"],"full_moon_@b":["Internally $2 @0 @4 full_moon ^g. Do not $d.",C[7]],"winapi_forked_icmpapi":[C[328],"0.3.7"],"bui-backend-codegen":["Buildtime ^H @j @0 bui-$N","0.9.0"],"blosc-sys":["@3 $L @6 to @4 C-BLOSC ^C @1","1.14.4"],"nude":["High $J nudity detection",C[1]],"libmultilog":["Various &H @T in @3",C[0]],"xorshift128plus-rs":["A @d @2 of @4 XorShift128+ pseudorandom &a @B in @3.","0.1.6"],"dev_menu":["A @d in-$a developer menu @1.","0.36.0"],"i2c-pca9685":["PCA9685 ^j @0 i2cbus","0.1.8"],"micro-ecc-sys":["Low-@C @6 to micro-ecc",C[9]],"sdp-types":["SDP (RFC 4566) @g, @i @5 serializer","0.1.3"],"match_cast":["Macro to match through Any @g",C[4]],"bigdecimal-rs":[C[142],C[5]],"snarkvm-nonnative":["A @1 @0 @4 nonnative field gadgets",C[2]],"symbolic_expressions":["A symbolic-expression @i/writer","5.0.3"],"$P_cloud9":["^r ^N @0 @3 - ^r Cloud9 @ 2017-09-23",C[27]],"nftnl-sys":["Low @C $L @6 to libnftnl. @W low-@C userspace $X to @4 in-kernel nf_tables subsystem","0.6.0"],"libimagentrylink":[C[39],C[12]],"array_iterator":["Owning iterators @n on arrays.","1.8.0"],"romio":["Event loop @5 I/O resources @0 $n ^9 services @u @Z","0.3.0-alpha.10"],"typebool":["Type-@C booleans meant @0 compile-$z hackery.",C[0]],"roxmltree":["Represent an XML as a read-only ^0.","0.14.1"],"kailua_syntax":["AST @5 @i @0 Kailua","1.1.0"],"snarkos-algorithms":["Algorithms @0 a decentralized operating @O","1.1.4"],"utf8-chars":["Char-per-char iterator @5 `read_char` method @0 `BufRead`.","1.0.2"],"js-sys":["@H @0 all JS global objects @5 @y in all JS environments likeNode.js @5 browsers, built on `#[wasm_bindgen]` @u @4 `&s-bindgen` @8.","0.3.55"],"async-task":["Task $F @0 $K executors","4.0.3"],"loop9":["Tiny ^t @Y to visit every pixel in @4 image together @7 its neighboring pixels. Duplicates pixels on @4 edges.","0.1.3"],"scan_dir":["A easier read_dir @5 recursive directory walker, useful @0 &3 directory of config @z","0.3.3"],"vext":["Basic Physics 'Vector' @p","0.1.20"],"jni-sys":["@3 $h corresponding to jni.h",C[1]],"rustc-cfg":["Runs `&K --print cfg` @5 parses @4 &Z",C[2]],"jsonfeed":["&B @0 @4 JSONFeed (&z://jsonfeed.org) specification",C[3]],"gallop":["General LL(1) &B","1.0.4"],"crowbar":["Securily generates temporary ^r credentials through Identity Providers @u SAML","0.3.7"],"beanstalkd":["Easy-to-$d beanstalkd @c @0 @3 (IronMQ ^i)","0.4.1"],"async-graphql":["A GraphQL @U @1 implemented in @3","2.10.6"],"tvm-build":["A CLI @5 @1 @0 programmatically $K TVM.",C[8]],"solana-genesis-utils":["Solana Genesis Utils","1.8.1"],"symphonia-format-isomp4":["Pure @3 ISO/MP4 demuxer (a part of ^g Symphonia).",C[2]],"schemafy_snapshot":["Snapshot @0 bootstrapping @4 schemafy @8","0.4.2"],"wasmer-vm-near":[C[567],"2.0.1"],"redox_dmi":["DMI table @i","0.1.5"],"rusty-cheddar":[C[230],"0.3.3"],"@J_logger_log":["&b &H",C[3]],"rumqttc":[C[566],"0.9.0"],"rtlsdr_@r":["Low-@C @6 to librtlsdr","1.1.2"],"imagequant-sys":["Statically linked C part of imagequant @1 powering &1 such as pngquant.This @1 is dual-licensed $C pngquant: either GPL or a commercial license. See website @0 details: &Y://pngquant.org","3.1.0+sys2.16.0"],"diesel-chrono-duration":["Adds chrono::Duration @j to @4 diesel","1.0.0"],"allegro_color":["Allegro 5 color addon @3 @h","0.0.41"],"unsafe_unions":["A @e to ^n $k $i behave $C C-style unions.","0.0.2"],"wasm-bindgen-test-crate-b":[C[413],C[0]],"twiggy":["Twiggy is a @V size profiler.","0.7.0"],"seshat":["A matrix message logger @7 full ^D search @j","2.3.0"],"google-appsactivity1-cli":[C[559],"2.0.4+20200628"],"rna-ss-params":["\"rna-ss-params\", @p of RNA secondary $V parameters","0.1.20"],"bigtable":["Lib @0 interfacing @7 Google BigTable Data @x","0.5.0"],"burgundy":["@p @0 $K @x &t @6","0.3.3"],"qemu-exit":["Exit QEMU @7 user-defined @V","2.0.1"],"rust-ini":["An Ini $H $0 @R @1 in @3",C[26]],"tower-lsp-macros":["Internal $e @a @0 tower-lsp","0.4.1"],"flic":["Autodesk Animator FLI @5 Autodesk Animator Pro FLC $0 encoder @5 decoder.","0.1.6"],"block_^l":["Thread-$M, fixed-size ^l @l serves re-usable blocks",C[8]],"steel-cent":["currency @5 money &5 @g","0.2.3"],"proc-status":["@d $X to ^B/status info on unix","0.1.1"],"shellfn-core":["Core @y @0 `shellfn` @8","0.1.1"],"rust-bison-skeleton":["Bison skeleton @0 @3","0.34.0"],"toks":["Efficient tokens @0 `html5ever::rcdom::RcDom` `Handle` parsingaiming @0 O(1) HTML DOM walking & efficiency.","1.0.0"],"$6_@b":[C[385],"1.0.130"],"serde-generate":["Generate (de)@M @V in &l languages","0.20.2"],"libusb":[C[972],C[1]],"gron":["Gron transforms ^k ^d discrete assignments to make it easier to grep",C[2]],"pbkdf2":["&W @2 of PBKDF2","0.9.0"],"wasm-bindgen-multi-value-xform":["Internal multi-&5 transformations @0 &s-bindgen","0.2.78"],"uinput-sys":["&j uinput $h.","0.1.7"],"gnir":["Automated mirror of ring - Safe, $I, &7 &Q @u @3.","0.16.5"],"temperature":["$8 @X @s a temperature simulator.","0.10.2"],"termios":["Safe @6 @0 @4 termios @1.","0.3.3"],"took":["Easily measure & report elapsed $z",C[4]],"rust-birkana":["Creates Birkana rune symbols SVG representation of given hexadecimal &a.","1.1.2"],"fst-bin":["A @D $D ^4 @0 @u finite state transducers to compactly representssets or maps of many $p (> 1 billion is possible). $8 @D $D toolexposes $7 to search FSTs @u regular expressions, Levenshteinautomata @5 range queries.","0.4.2"],"voracious_radix_sort":["State of @4 art radix sort ^3. Single &d @5 multi &d versions.","1.1.0"],"digits_iterator":["Iterate &6 @4 digits of ^M in an arbitrary radix",C[0]],"rml_amf0":["Modules @0 ^a @4 $5 @5 ^P of @w @7 Adobe's Action Message Format 0 (AMF0 @w @G).",C[4]],"cache":["Type &f, fixed-size cache",C[3]],"xkcdpass":["Generate XKCD style passwords made up by four (or any other &a of) &L english words @t a word list.","0.5.0"],"git-actor":["A way to identify git actors","0.6.0"],"rm_rf":["Force-remove a $0/directory @5 all descendants","0.6.1"],"boringssl-src":["A @8 @0 $K boringssl.","0.4.0+fc44652"],"orbclient":["$8 Orbital Client @p","0.3.31"],"gstreamer-webrtc-sys":["$L @6 to libgstwebrtc-1.0",C[26]],"libimagrt":[C[39],C[12]],"ekiden-grpcio":[C[267],C[9]],"oxigen":["Fast, parallel, extensible @5 adaptable genetic $1 @1.","2.2.2"],"pls":["&B @5 writer @0 @4 PLS playlist @G",C[8]],"discotech":["$8 best way to meet $r &t","0.0.3"],"refinery_^y":["@W @4 CLI @0 @4 Refinery @8","0.7.0"],"google-adexchangebuyer2_v2_beta1":["A @q @1 to @o @7 AdExchangeBuyerII (@9 v2beta1)",C[143]],"se_rs_ial":["^6 serial communications @1 in @3","0.0.3"],"tune":["Explore musical tunings @5 create synthesizer tuning @z @0 microtonal scales.","0.27.0"],"inplace_it":["Place &7 arrays on @4 stack @7 a low-cost!","0.3.3"],"include_dir":["Embed @4 contents of a directory in $r $Q","0.6.2"],"outcome":["A Success/Failure $l @0 @f","0.1.7"],"askalono":["a @1 to detect @4 contents of license @z","0.4.3"],"beautician":["Streaming ^k @R @5 pretty printing.","0.1.1"],"git_info":["Extracts git repository $f.",C[4]],"ark-bn254":["$8 BN254 pairing-&E elliptic curve",C[1]],"stm32l0xx-hal":["Peripheral $X @x @0 STM32L0 series $s","0.7.0"],"gst-plugin-gif":["GStreamer GIF $Y","0.7.2"],"chisel":[C[144],"0.6.0"],"machine-vision-formats":["Type $h @0 ^p @7 machine vision cameras","0.1.1"],"logind-zbus":["A dbus @c (@u zbus) @0 logind",C[402]],"ab_glyph_rasterizer":["Coverage rasterization @0 lines, quadratic & cubic beziers","0.1.4"],"@f_hawktracer_@r":["@r @8 @0 @4 rust_hawktracer @1","0.4.2"],"yaxpeax-pic17":["pic17 decoder @0 @4 yaxpeax ^g","0.1.1"],"twiml":["Typesafe construction of Twilio TwiML",C[1]],"sp-runtime-interface-proc-macro":["@Q @8 @s $e @a @0 usage within @4 context of @4 Substrate @I @m.","3.0.0"],"activitypub":["ActivityPub in @3",C[2]],"dirmod":["Automatic mod declarations",C[138]],"gdbstub_arch":["Implementations of `gdbstub::arch::Arch` @0 various architectures.","0.1.1"],"escapade":["`escapade` @s String concatenation @5 $O, but automatically escapes any HTML in @4 @w in @4 ^I. @Q prevents accidental unescaped writes to @4 &Z.","0.0.3"],"pcsc":["@H to @4 PC/SC @x @0 smart card communication","2.6.0"],"capi":["Helper &P @0 $K a C @x in @3: passing ownership of @3 objects to C @5 back.NB: @Q will be obsolete once Box::from_raw/into_raw are stable.","0.0.3"],"async-log":["Async &g capabilities @0 @4 log @8.","2.0.0"],"pwd":["Safe @m to pwd.h","1.3.1"],"solana-streamer":["Solana Streamer","1.8.1"],"objc_exception":["@3 @m @0 Objective-C's throw @5 try/catch statements.",C[4]],"tmp-ed25519":["Temp @8 do not $d! @Q is a holding @8 waiting on a PR to upstream being merged.",C[368]],"^0_magic_fork":[C[186],C[8]],"tree-sitter-java":["Java grammar @0 @4 ^0-sitter @R @1",C[95]],"mio-udev":["Non-blocking/&b Mio @j @0 udev device events.","0.5.0"],"pyo3-pack":["@Q ^g has been renamed to 'maturin'","0.7.0"],"atat_@b":["&n @e @0 atat","0.13.1"],"wordpieces":["Split tokens ^d word pieces","0.5.0"],"fluence-fork-libp2p-wasm-ext":[C[409],"0.27.1"],"wasm-streams":["Bridging $t &e streams @5 @3 streams @u $x",C[5]],"pct-str":["Percent-encoded $p @0 URL, URI, IRI, etc.","1.1.0"],"solana-foundation-delegation-program-registry":["Solana Foundation Delegation Program Registry","1.0.1"],"target-lexicon":["Targeting @E @0 compilers @5 related &1","0.12.2"],"unzip":["@p to decompress all (or some) @z @t a zipped archive.",C[0]],"parity-wordlist":["Word list $2 to ^n brain wallets @0 Parity.","1.3.1"],"rust-doh-proxy":["@3 DNS &6 HTTPS proxy $U","0.5.4"],"noble-treasury":["FABRIC noble to manage treasury","2.0.0"],"parse-generics-shim":["A stable shim @0 @4 proposed RFC #1583; @s @a @0 @R generics @5 where clauses.","0.1.1"],"h264-profile-level-id":["Utility to ^I H264 profile-@C-id ^V","0.1.1"],"rust-enum-derive":["A @d @1 (@5 ^U) @0 $E @f enums @5 associated $3 @t ^D @z.",C[2]],"rill-derive":["&n @e @0 @4 RillRate.","0.41.0"],"rustfilt":["Demangle @3 symbol names",C[5]],"wasi-nn":["High-@C @3 @6 @0 wasi-nn",C[0]],"xim-parser":["XIM protocl @i","0.1.1"],"to_absolute":["@K @f @1 to get absolute path @0 a existing path.",C[0]],"chalk-ir":["Chalk's ^J representation of @g, goals, @5 clauses","0.72.0"],"brotli2":["@H to libbrotli to provide brotli decompression @5 ^C to @3",C[9]],"mongo-sys":["&M @6 to @4 MongoDB @c @1","0.1.1"],"wl-clipboard-rs":["Access to @4 Wayland clipboard @0 $o @5 other window-less @P.","0.4.1"],"cursive":["A TUI (Text User Interface) @1 focused on ease-of-$d.","0.17.0-alpha.0"],"mg-settings-macros":["Help custom @b @0 mg-settings","0.4.2"],"pollster":["A minimal @J executor @l lets you block on a future","0.2.4"],"tet-io":[C[145],"2.1.2"],"automata":["An @2 of ^E finite state automata such as DFA, NFA, Regex","0.0.4"],"&Q_^S_chachapoly":["An @2 of ChaCha20-IETF, Poly1305 @5 ChachaPoly-IETF @0 `crypto_api`","0.5.0"],"gfx-backend-metal":["Metal @x $N @0 gfx-rs","0.9.1"],"pentest-toolbox-improved":["Cheers","0.1.37"],"stockfighter-sdk-rs":["Stockfighter.io ^N $A in @3",C[0]],"gdbstub":["An @2 of @4 GDB Remote Serial ^c in @3","0.5.0"],"timely_sort":["Sorting infrastructure @0 timely dataflow","0.1.6"],"fasttext":["fastText @3 $W","0.6.0"],"spoolq":["A durable queue backed by filesystem ^x","0.2.3"],"treeflection":["A @1 @l @s reflection @0 ^0 $k","0.1.35"],"utf16string":["String @g to work directly @7 UTF-16 encoded $p",C[3]],"wana_kana":["Utility @1 @0 checking @5 converting $t Japanese characters - Kanji, Hiragana, Katakana - @5 Romaji","2.0.1"],"uint-crate":["Tetsy &O Large Fixed-Size Integer Arithmetic","0.9.1"],"igo-rs":["Pure @3 port of @4 Igo, a POS(Part-Of-Speech) tagger @0 Japanese (日本語 形態素解析).",C[1]],"io-synesthesist":["ffi @1 of &0(2) @5 lseek(2)/read(2)","0.1.1"],"crc32":["A port of @4 CRC-32 $1 to @3","0.0.2"],"gstreamer-pbutils":["@3 @6 @0 GStreamer Base Utils @1","0.17.2"],"compact":["Store objects containing dynamic fields either compactly in consecutive $g or @u traditional heap pointers","0.2.16"],"blender-mesh":[C[631],"0.8.9"],"egui_glium":["@H @0 @u egui natively @u @4 glium @1",C[23]],"reference-counted-singleton":["Reference-counted singleton whose protected @w can be recreated as needed","0.1.1"],"directories":["A tiny mid-@C @1 @l @s @N-specific ^E locations of directories @0 config, cache @5 other @w on &j, ^6 @5 macOS by leveraging @4 mechanisms defined by @4 XDG base/user directory specifications on &j, @4 Known Folder @x on ^6, @5 @4 Standard Directory guidelines on macOS.","4.0.1"],"mortal":["Cross-@N $o @m",C[8]],"tract-kaldi":[C[94],"0.15.5"],"isomorphism":["2 directional hashmaps","0.1.3"],"impl-service":["Proc Macro fo deriving @4 ArcService $y","0.1.6"],"conjoiner-engine":["A ^X $w @8 @0 on-@4-fly serialisation ^d a standardised @w @G. Part of @4 qaul.net ecosystem","1.2.3"],"technical_indicators":["@p of technical indicators in @3.","0.5.0"],"userenv-sys":["Contains @Y $h @0 @4 ^6 @x @1 userenv. See winapi @0 @g @5 constants.",C[3]],"ruma-common":["&O @g @0 other ruma $R.","0.6.0"],"ticker":["Rate limited Iterators.","0.1.1"],"spl-memo":["Solana Program @p Memo","3.0.1"],"bip_disk":["Bittorrent Infrastructure Project Disk Module","0.6.0"],"riker-mapvec":["@K in-$g datastore @0 Riker persistent actors","0.2.4"],"cue":["High-@C @6 @0 @4 libcue @1","1.0.1"],"iterslide":["A \"sliding window\" iterator.","1.0.1"],"rustc-ap-rustc_attr":["^W published $4 of @4 @X `rustc_attr` in @4 @f-lang/@f repository @t commit 9a27044f42ace9eb652781b53f598e25d4e7e918 $8 publishing script @0 this @8 lives at: &Y://github.com/alexcrichton/&K-auto-publish",C[215]],"riker-patterns":["A $b of $u actor patterns @0 Riker","0.4.2"],"iata-types":["a set of @g @0 representing aviation terms","0.1.4"],"recloser":["A concurrent circuit breaker implemented @7 ring buffers","1.0.0"],"gjson":["Get ^k ^V quickly",C[7]],"flaky-finder":["CLI ^4 meant to find flaky ^7 by running &l times a ^7 harness until it fails.","0.2.22"],"sea-strum_@a":[C[146],"0.21.2"],"syn-codegen":["Syntax ^0 describing Syn's syntax ^0",C[1]],"sp-database":["Substrate ^Q $y.","3.0.0"],"adi_screen":["Interface @7 a computer/phone screen screen to render ^T.",C[15]],"@t_remote_@b":["$q @e @0 deriving `From` @0 @g @7 same ^J $V",C[8]],"eclectica":["Cool @5 eclectic $4 &F @0 any @L",C[7]],"xwasmi":[C[135],"0.4.5"],"arbitrary":["$8 $y @0 $E structured @w @t unstructured @w","1.0.2"],"agnes":["A @w wrangling @1 @0 @3",C[9]],"nue-macros":["POD @5 $Q @w $5 I/O @a",C[1]],"vivid":["LS_COLORS &F @7 &l themes","0.7.0"],"buildable":["Buildable $y definition @5 @E helpful in $j lifecycles","0.0.5"],"sentry-backtrace":[C[1005],C[88]],"seccomp":["higher-@C @6 to libseccomp",C[4]],"strict_$5_@b":["Strict $5 derivation @a","1.7.4"],"tide-testing":["tide $S ^t","0.1.3"],"polonius-parser":["&B @0 @4 Polonius ^g",C[3]],"thiserror":["@b(Error)","1.0.30"],"bee-message":["@v of @4 IOTA @9 message layouts","0.1.5"],"@G_xml":["Minimal compiletime templating @0 XML in @3!",C[3]],"scoped_^l":["A scoped linear ^l.","0.1.4"],"tantivy-query-grammar":[C[285],C[23]],"sentry-failure":["Sentry $T @0 failure @8.","0.21.0"],"bloom-filters":["@3 port of &Y://github.com/tylertreat/BoomFilters",C[4]],"supports-color":["Detects whether a $o supports color, @5 gives details about @l @j.","1.3.0"],"cpal":["Low-@C cross-@N audio I/O @1 in ^X @3.","0.13.4"],"unix_mode":["Decode Unix $0 mode bits (even on non-Unix platforms)","0.1.3"],"sozu-lib":["sozu @1 to $j hot reconfigurable ^s reverse proxies","0.13.1"],"ra_ap_hir":["TBD","0.0.79"],"ckb-store":[C[347],C[302]],"bitstream-rs":["Crate @0 &3 @5 $O single bit ^V @t ordinary Readers @5 Writers",C[3]],"tls-api-not-tls":["TLS @x @2 $i returns plain sockets. @Q is NOT TLS @2.","0.7.0"],"memflow":["@F components of @4 memflow physical $g introspection @k","0.1.5"],"$P_kinesisanalytics":["^r ^N @0 @3 - Amazon Kinesis Analytics @ 2015-08-14",C[27]],"rsevents":["Manual @5 auto reset events @0 signaling remote threads @5 $K synchronization $9",C[5]],"hactool-sys":["Unsafe @3 @6 @0 hactool, a ^U @5 @1 @0 Nintendo Switch $0 formats. Currently untested.","0.4.4"],"riot-sys":["@3 $L &r @0 @4 RIOT operating @O","0.4.1"],"autodiff":["An automatic differentiation @1",C[9]],"telegram_@g":["Types in @4 Telegram Bot @x @5 their deserializers","0.6.0"],"artano":["Adds ^D to pictures.","0.3.5"],"ttaw":["talking to a wall, a piecemeal natural @L &u @1",C[1]],"patch":["Parse patches in @4 unified diff @G","0.5.0"],"translit":["Transliteration @0 cyrillic languages @l uses officially approved rules.","0.5.0"],"lunarity-lexer":["A high $J Solidity @L Lexer",C[5]],"console_$a":["A @d $o @k to draw things @5 manage user input","2.1.0"],"target-cpu-macro":["A $e @e @0 conditional compilation @n on @4 CPU being targeted","0.1.3"],"scryer-prolog":["A modern Prolog @2 $A mostly in @3.","0.8.127"],"minitt-util":["CLI ^e extracted @t Mini-TT language's $l-checker","0.2.4"],"em":["A $e @e @0 GPU acceleration, GPU $m",C[1]],"sigrok":["High-@C @6 @0 libsigrok","0.3.1"],"base58":["Tiny @5 $I base58 $5",C[3]],"pallet-transaction-payment-rpc":[C[333],"3.0.0"],"raw-vec":["A Raw $w @0 managing contiguous heap allocations",C[3]],"zeno":["High $J, low @C 2D path rasterization.",C[8]],"skulpin-plugin-imgui":["A $Y @0 skulpin @l implements imgui &S","0.7.1"],"pastebin":["A @d pastebin &t","0.17.9"],"ethash":["An Apache-licensed Ethash @2.",C[2]],"fibers_transport":["Transport layer $F built on top of [`fibers`] @8","0.1.3"],"ipp-ctypes":["C @g $2 by ipp-headers-@r (part of ipp-@r Intel IPP @6)",C[0]],"tide-sqlx":["Tide &G @0 SQLx pooled connections & transactions.","0.6.1"],"ginepro":["A @c-side gRPC channel @2 @0 tonic",C[1]],"dsound-sys":["$L @6 to dsound. @Q @8 is a placeholder @0 @4 future. If you are interested in this @1 feel free to get in touch @7 me: &z://www.rustaceans.org/retep998","0.0.1"],"catmark":["Console printer @0 CommonMark",C[8]],"resolv":["DNS resolution via glibc",C[3]],"anitomy":["Wrapper @0 Anitomy, @4 @1 @0 @R anime video filenames",C[4]],"@t_$0":["A @d convenience to deserialize a @f Struct or Enum directly @t a &V or yaml $0 path.","0.1.3"],"futures-await-test-preview":[C[834],C[19]],"libhydrogen":["A modern @5 &x to $d cryptography @1","0.4.1"],"swapper":["Swap ownership $t threads",C[0]],"nmea":["@K NMEA 0183 @i","0.0.9"],"namedarg_hack":[C[586],C[587]],"lithos":["A containerization @k @0 linux","0.18.4"],"alto_logger":["an opinionated logger @l @s colorful @5 multi-$D &Z","0.3.7"],"ktmw32-sys":["Contains @Y $h @0 @4 ^6 @x @1 ktmw32. See winapi @0 @g @5 constants.","0.1.1"],"edcert-compressor":["A @8 to compress/decompress Edcert certificates.","1.1.6"],"airbag":["@p @0 ^a errors @5 panics @u 3rd party services","0.7.0"],"fenestroj":["Easier &r @0 Win32 @x stuff, $M when possible","0.0.11"],"bitmatch":["A @e to allow matching, $W, @5 packing @4 individual bits of integers.","0.1.1"],"dotenv":[C[25],C[23]],"wren":["@H to @4 Wren scripting @L @x","0.1.12"],"packet-ipc":["Share packets $t services @u servo ipc",C[23]],"reset-recognizer":["A RegexSet @n route recognizer",C[7]],"amiwo":["Various $w @g & @y @0 @3. Named after a famous Beninese dish","0.2.3"],"procfs":["Interface to @4 linux procfs pseudo-filesystem",C[16]],"wiggle-borrow":["A run-$z borrow checker @0 $d @7 Wiggle","0.27.0"],"sdl2_ttf":["SDL2_ttf @6 @0 @3","0.25.1"],"fiffy":["A @3 @1 intended @0 @d $0 &u",C[32]],"allegro_dialog-sys":["Allegro 5 dialog addon @3 $W","0.0.41"],"google-bigquerydatatransfer1-cli":[C[1030],C[147]],"couchdb":["$8 couchdb @1 @s @g @0 ^p @7 CouchDB.","0.6.0"],"ssb_@i":["&B of ^D in ssb @G.",C[2]],"url2":["ergonomic @h $G @4 popular url @8","0.0.6"],"walrus-macro":["Internal @a $2 by @4 `walrus` @8, not @0 public consumption.",C[95]],"crossterm_$o":["A cross-@N @1 @0 doing $o related actions.",C[9]],"rusty_$z":["A @d timer","0.11.3"],"spectra":["Demoscene @k",C[15]],"rand_@a":["`#[@b]`-$C $7 @0 @4 `rand::Rand` $y.",C[32]],"mml":["A @1 to $E UML @L @t Rust's ^g ^d graphiz/dot $0.","0.1.41"],"memmap2":[C[184],"0.5.0"],"tet-application-crypto":[C[564],"2.1.2"],"progressing":["A ^O, ^D-@n, counting progress-bar @0 @3","3.0.2"],"piston3d-gfx_voxel":["A voxel &S @1 on top of Gfx","0.27.0"],"curryrs":["^e making @3/Haskell $L easier",C[3]],"xapirpc":["Minimal RPC @c @0 communication @7 xapi","0.9.0"],"wasmcloud-nats-kvcache":["A key-&5 capability provider @0 wasmCloud @l replicates @w changes &6 NATS","0.5.1"],"trafo":["@3 rewrite of @4 util-linux (NOT COMPLETED YET)","0.1.1"],"themis":["High-@C ^w services @0 ^x @5 messaging",C[15]],"evmap":[C[182],"11.0.0-alpha.7"],"unic-ucd-name_aliases":["UNIC — &h Character Database — Name Aliases","0.9.0"],"equiv":[C[50],"0.1.3"],"crius":["Crius is a @d hystrix-$C circuit breaker",C[2]],"$P_mobile":["^r ^N @0 @3 - ^r Mobile @ 2017-07-01",C[27]],"no-proxy":["Parses @5 evaluate no_proxy $H","0.3.1"],"serde-rlp":["Ethereum's RLP $5 implemented as a Serde @w @G","0.1.4"],"tk-listen":["A set of ^t @Z allowing to listen TCP (or unix) socket @7 resource limits @5 proper ^q ^a.",C[5]],"sea-orm":["🐚 An @J & dynamic ORM @0 @3","0.3.1"],"libnfs-sys":["libnfs @6 allow you to create nfs mounts in $g/userspace",C[8]],"asyncgit":["allow @u git2 in a $n context",C[43]],"livesplit-core":["livesplit-@F is a @1 @l @s a lot of $7 @0 $Z a speedrun timer.",C[16]],"raii-counter-futures":["RAII Counter @l allows you to wait @0 a count of zero asynchronously",C[0]],"ckb-sentry-types":[C[163],"0.21.0"],"ed25519-zebra":["Zcash-flavored Ed25519 @0 $d in Zebra.","3.0.0"],"tracing-honeycomb":["Honeycomb.io &g layer @0 multiprocess telemetry","0.4.2"],"sql-builder":["@K SQL @V @B.","3.1.1"],"structenv":[C[148],"0.0.1"],"ensicoin_serializer":["Functions to serialize / deserialize to @4 ensicoin @9","2.0.9"],"rget":["A download accelerator partially &X by &Y://github.com/huydx/hget.","0.3.1"],"quad-alsa-sys":["For of original alsa-@r, but @7 pkg-config replaced @7 -lasound.",C[9]],"freetypegl":["@3 $j &w @5 @6 @0 freetype-gl.",C[2]],"windows-acl":["@3 @8 to simplify ^6 ACL $B",C[1]],"frustum_query":["A frustum culling @k @t 3D ^T @P.",C[4]],"ffi":["...","0.0.2"],"regex-syntax":["A regular expression @i.","0.6.25"],"@t":["&W conversion $y.","0.0.2"],"conduit":["&O ^s @U @m",C[171]],"hokaido":["Terminal sharing ^4.","0.0.10"],"rad":["A $l-$M, high-@C @m to librados @u @4 low-@C C @6 @t ceph-@f.","0.5.0"],"rmp-serde":["Serde @6 @0 RMP",C[422]],"lv2":["A $M, $I, @5 ergonomic @k to create LV2 plugins","0.6.0"],"rpcperf_request":["rpc-perf request &I","1.1.0"],"git-checks-core":[C[939],"1.1.0"],"cargo-cache":["Manage @S cache ($CARGO_HOME or ~/.@S/), show sizes @5 remove directories selectively","0.6.3"],"mag3110":["A @N &f ^j to @m @7 @4 I2C @n NXP MAG3110 magnetometer","0.1.4"],"tracy-client":["High @C @6 to @4 @c &4 @0 @4 Tracy profiler","0.12.5"],"na":["na is a @h $G nalgebra to make it easier @5 mostly less verbose to work @7 @4 most $2 @g in vector math @0 ^T.","0.24.0"],"compile-time-run-macro":["@2 @8 @0 compile-$z-run","0.2.8"],"rustc-ap-rustc_target":["^W published $4 of @4 @X `rustc_target` in @4 @f-lang/@f repository @t commit 9a27044f42ace9eb652781b53f598e25d4e7e918 $8 publishing script @0 this @8 lives at: &Y://github.com/alexcrichton/&K-auto-publish",C[215]],"strfile":["Tiny @X to read strfile headers.",C[4]],"sawp":["Security Aware Wire ^c @R @1","0.6.0"],"jsonrpc-types":["A set of @g @0 representing ^k-RPC requests @5 responses.","0.3.3"],"@8_$4_parse":["simply parses @8-semver @t a $c",C[3]],"mini-redis":["An incomplete @2 of a @3 @c @5 @U. Used as alarger example of an idiomatic Tokio $U.","0.4.1"],"non-empty-vec":["`NonEmpty` vector @2, ensure non-emptiness by construction.",C[3]],"handlebars_misc_&w":["A $b of &w @0 handlebars (@f) to manage $c, &V, yaml, toml, path, $0, &z request.","0.12.1"],"tough-ssm":["Implements ^r SSM as a key source @0 TUF signing keys","0.6.4"],"picto":["Image ^a @1.","0.4.3"],"git-gsub":["A Git &i to do gsub in a repository",C[5]],"cita-evm":["CITA VM","0.1.6"],"ds_store":["A .DS_Store @i @0 @3.",C[5]],"libgpg-error-sys":["Raw @6 @0 libgpg-^q","0.5.2"],"ape":["A @1 @0 &3 @5 $O APEv2 tags",C[1]],"teloxide":["An elegant Telegram bots @k @0 @3","0.5.3"],"cryptominisat":["@3 @6 @0 CryptoMiniSat, a boolean satisfiability solver","5.8.0"],"concat-with":["Extend @4 @Y of @4 `concat!` @e in `std`.","0.2.6"],"exonum-proto":["Helper $3 @5 @a @0 @M &o in protobuf.","1.0.0"],"openat-ext":["Extension &P @0 @4 openat @8",C[8]],"gstreamer-tag-sys":["$L @6 to libgsttag-1.0",C[26]],"qt_3d_@F":["@H @0 Qt3DCore C++ @1","0.5.0"],"mish":["A proof of concept @3 libm $C @2 @7 almost full coverage of libm",C[5]],"dire":["A @1 @0 querying operating @O specific directories",C[9]],"ux":[C[149],"0.1.3"],"d3d9-sys":["Contains @Y $h @0 @4 ^6 @x @1 d3d9. See winapi @0 @g @5 constants.","0.1.1"],"maud":[C[679],"0.22.3"],"rojo":["Enables professional-grade &D &1 @0 Roblox developers","7.0.0-rc.3"],"allochronic-util":["Private $w @8 @0 allochronic @5 khonsulabs.",C[417]],"dwarf":["Read @5 &0 DWARF debugging $f","0.0.3"],"dtn7-plus":["Additional &w @0 @f dtn daemon","0.5.3"],"interfaces":[C[782],"0.0.8"],"windows-service":["A @8 @l @s facilities @0 ^A @5 @2 of windows services",C[2]],"$H":["$8 @X @s a malleable ^0 $V.","0.7.2"],"catty":["Send @5 await a &5 asynchronously","0.1.4"],"packet-builder":["High-@C @1 @0 &2 @7 low-@C ^9 @w.","0.5.0"],"google-adexchangeseller2":[C[174],"2.0.8+20171101"],"tinyprof":["Tiny realtime frame profiler, well $2 @7 tinyecs","0.0.1"],"varinteger":[C[246],"1.0.6"],"lexical-parse-float":["Efficient @R of floats @t $p.","0.8.2"],"cursive-tabs":["Tabs @0 gyscos/cursive views","0.6.0"],"monilog":["Displays $r logs nicely","0.1.1"],"ether-dream":["A full @2 of @4 Ether Dream Laster DAC @9.","0.2.5"],"last-git-commit":["@K @h arround git2-rs to get info about @4 last commit. Useful @0 when you want to show @4 git ^z in a ^U.",C[3]],"google-serviceregistryalpha-cli":[C[916],"2.0.4+20160401"],"md-5":["MD5 ^z @Y","0.9.1"],"snarkos-derives":["Canonical @M @0 a decentralized operating @O","1.1.4"],"mini_gl_fb":["Quick @5 &x window creation, input, @5 high speed bitmap &S","0.9.0"],"tesseract-sys":["@3 @H @0 Tesseract OCR","0.5.7"],"interchange":["Request/response mechanism @0 ^b &D, @u atomics",C[5]],"stm32l4":["Device @j $R @0 STM32L4 &N",C[24]],"imaged":["Image &u @5 ^x @1 @n on libimaged",C[12]],"chan":["&T. Use crossbeam-channel instead.","0.1.23"],"indy-crypto":["@Q is @4 &J &Q @1 @0 Hyperledger Indy components.","0.5.1"],"fdh":["Full Domain Hash (FDH) @0 extending @4 size of a ^z digest to an arbitrary length","0.8.1"],"libpulse-mainloop-glib-sys":["$L @6 @0 @4 PulseAudio libpulse-mainloop-glib @O @1.","1.19.1"],"zookeeper":["A minimal ZooKeeper @c","0.6.0"],"yansi":["A dead @d ANSI $o color painting @1.","0.5.0"],"objc-foundation":["@3 @h @0 Objective-C's Foundation @k.","0.1.1"],"gml":["Graphics Math @p. &W Vector @5 Matrix Math @1 targetting ^T @P.","1.1.0"],"core2":[C[160],C[9]],"rhododendron":["Asynchronously $M BFT @9, @Z-@n @2","0.7.0"],"mail-smtp":["[mail/smtp] combines mail-@F @7 new-$v-smtp",C[1]],"debcargo":["Create a Debian @X @t a Cargo @8.","2.4.4"],"c3":["Complete C AST. Enables analysis @5 ^1 of @V derived @t C.Built @u LLVM 4/Clang @u some fragile C++ APIs to work $G missing @w @5 ambiguities in libclang.",C[16]],"h3ron-h3-sys":["bindgen-^8 lowlevel @6 @0 statically linked libh3","3.7.1"],"bracket-noise":["@3 port of Auburn's amazing FastNoise @1. Part of @4 bracket-lib family.","0.8.2"],"collada":["A @1 @0 @R COLLADA documents @0 mesh, skeletal @5 animation @w",C[24]],"iced_winit":["A winit @I @0 Iced",C[1]],"features":["A @e to ^n @I feature toggles.",C[13]],"comma":["Shell-style @D @i @7 @j @0 escaping @5 quotations.","1.0.0"],"clam-client":["A @d @3 @2 @0 talking to ClamD","0.1.1"],"tokio-tls":["Deprecated in favor of `$v-naitve-tls`.An @2 of TLS/SSL streams @0 Tokio giving an @2 of TLSfor nonblocking I/O streams.","0.3.1"],"octavo-kdf":["Octavo - Key Derivation Functions. WARNING!!! Not suitable @0 production","0.1.1"],"yade":["Yet Another &n Error",C[4]],"abomonation":["A high $J @5 very unsafe @M @1","0.7.3"],"tokio-zmq-derive":["@W derivation @0 Tokio ZMQ Socket @h @g","0.5.2"],"hasher":["Package hasher @s a Hasher $y.","0.1.3"],"libreddit":["Alternative private front-end to Reddit","0.15.1"],"tarpaulin":["A @d key &5 store built on Raft",C[0]],"html2runes":["An HTML to Text converter.","1.0.1"],"hexdump":["Easy hexdump to stdout or as an iterator","0.1.1"],"nom-sql":["A SQL @i $A @u nom.","0.0.11"],"hcs-rs":["@3 abstractions @0 HCS APIs.","0.9.1"],"unicode_names_@a":["Support @a @0 `unicode_names`.","0.1.5"],"unic-ucd-block":["UNIC — &h Character Database — &h Blocks","0.9.0"],"weather_util_@f":["CLI ^4 to pull weather @w @t openweathermap.org, intended to replace @4 debian @X weather-util","0.10.5"],"epd-waveshare":["An ^b-hal @n ^j @0 ePaper displays @t Waveshare formerly published as eink-waveshare-rs",C[2]],"fuse-rust":["Fuse is a super ^O @1 $i @s a @d way to do fuzzy searching.Fuse-@3 is a port of Fuse-Swift, $A purely in @f.",C[1]],"deno_webidl":["WebIDL @2 @0 Deno",C[88]],"allegro_$9":["Allegro 5 $9 addon @3 @h","0.0.41"],"swc_css_^u":[C[1056],C[95]],"purple-sys":["libpurple @f $W",C[0]],"rustorm_^H":["@V gen @s @e @0 $E @V on @w $X objects on table metadata",C[42]],"streaming-stats":["Experimental @8 @0 computing basic statistics on streams.","0.2.3"],"ssvm-evmc-sys":["@H to EVMC (low-@C)","7.4.0"],"dcap-ql-sys":["@H @0 libsgx_dcap_ql.SGX: Software Guard ExtensionsDCAP: DataCenter Attestation PrimitivesQL: Quoting @p",C[3]],"racc":["RACC is a port of Berkeley YACC to @3, @5 allows you to &0 grammar $h directly in @3 source @V.","0.0.3"],"vecmat":["Low-dimensional vector algebra @7 min_const_generics @j","0.7.7"],"fuzzmutator":["@Q is a tiny @1 @l can be $2 to mutate fuzzing @w on a bit-@C.",C[5]],"cpp_demangle":["A @8 @0 demangling C++ symbols","0.3.3"],"sounding-validate":["Validation of soundings @t @4 sounding-base @8.",C[12]],"dbcrossbarlib":["@p @0 copying @w $t databases (pre-release)",C[292]],"nu-plugin":["Nushell Plugin","0.39.0"],"greeks":["@v of @1 to calculate options greeks","0.5.0"],"rustc-ap-rustc_arena":["^W published $4 of @4 @X `rustc_arena` in @4 @f-lang/@f repository @t commit 9a27044f42ace9eb652781b53f598e25d4e7e918 $8 publishing script @0 this @8 lives at: &Y://github.com/alexcrichton/&K-auto-publish",C[215]],"rctl":["FreeBSD resource limits @5 accounting @7 RCTL / RACCT",C[3]],"crev-wot":["Scalable, social, Code REView @O @l we desperately need - Web of Trust @1",C[74]],"rot13":["Encodes a String as ROT13","0.1.1"],"storaget":["# Storage $0 @n in-$g database.Strongly MVP, big @x changes are expected frequently.As Storage is rather experimental please do not $d it @0 production.","0.8.1"],"derivative":["A set of alternative `@b` attributes @0 @3","2.2.0"],"stronghold_$a":["A @f @2 of @4 IOTA Stronghold low-@C &4",C[2]],"fst":["Use finite state transducers to compactly represents sets or maps of manystrings (> 1 billion is possible).","0.4.7"],"raft":["$8 @f @L @2 of Raft $1.","0.6.0"],"mockall_double":["Test double adapter @0 Mockall",C[3]],"solana-program-test":["Solana Program Test Framework","1.8.1"],"sdl2_image":["SDL2_image @6 @5 &r","1.1.0"],"zookeeper-async":["An @J ZooKeeper @c","4.0.1"],"wasm-bindgen":["Easy @j @0 &2 $t JS @5 @3.","0.2.78"],"ctrlc":["Easy Ctrl-C handler @0 @3 projects","3.2.1"],"metrics-sqlite":["@p @0 ^R SQLite $N @0 &q","0.2.3"],"rental":["A @e to ^n $M self-referential &o, plus premade @g @0 $u $d cases.","0.5.6"],"spirv-std-macros":["^o @0 spirv-std",C[280]],"fourcc":["Syntax ^h to ^n FourCCs (four-character @V).","0.0.4"],"tinysnark":["Tiny libsnark @6","0.0.1"],"cmd_lib_@a":[C[150],"1.3.0"],"cargo-update":["A @S &i @0 checking @5 applying updates to installed executables","7.0.1"],"errer_@b":[C[694],"0.13.1"],"mailslurp":["Official MailSlurp Email @x Client","14.0.1"],"skylane_protocols":["Autogenerated marshalling @V @0 skylane/wayland",C[4]],"sdc":["Read @5 &0 Riegl's .sdc $0 @G","0.1.1"],"moveslice":["A one-@Y @8 to move chunks in a slice $G.","2.0.1"],"ask":["A toolset @0 nicely displayed Questions @5 Answers through @4 $o.","0.0.11"],"$P_iot1click_projects":["^r ^N @0 @3 - ^r IoT 1-Click Projects Service @ 2018-05-14",C[27]],"ert":["A combinator to control future execution order.",C[8]],"screen_layer":["A @1 $i @s layer $V @0 $O OS.","0.3.1"],"swc_ecma_transforms_base":[C[151],"0.41.2"],"vdj_@g":[C[50],"0.1.5"],"gsk4-sys":["$L @6 of GSK 4","0.3.1"],"sixtyfps-build":["Helper @0 SixtyFPS $j script","0.1.4"],"lexpr":["A representation @0 Lisp @w","0.2.6"],"hyper-boring":["Hyper TLS @j via BoringSSL","2.1.0"],"brutils":["Some @E @0 @3","0.1.51"],"holochain_&V_^S":["&V ^S @5 @E @0 holochain","0.0.50"],"safer-ffi":["Write safer $L @V in @3 ^Y polluting it @7 unsafe @V","0.0.6"],"lz_fnv":["Fowler-Noll-Vo ^z @y @0 various integer @g",C[4]],"as-slice":["`AsSlice` @5 `AsMutSlice` $3",C[5]],"ouroboros_@e":["Proc @e @0 ouroboros @8.",C[15]],"sodoken":["libsodium @h ^R $v $M $g secure ^S $X.","0.0.1"],"ternary-tree":["A @3 @2 of Ternary Search Trees, @7 no unsafe blocks","0.1.1"],"efm32gg11b820":["Peripheral $X @x @0 EFM32GG11B820 $s","0.9.0"],"mobc-redis":["Redis @j @0 @4 mobc connection pool","0.7.0"],"qindex_multi":["@W means of indexing &C mutable @5 immutable &l times at once.",C[2]],"llvm-sys-wrapper":["Shallow @h @0 llvm-@r.","0.6.1"],"metrics-exporter-tcp":["A &q-^i exporter @l outputs &q to clients &6 TCP.","0.5.1"],"quicli":["Quickly $j cool CLI apps in @3.",C[2]],"tauri-dialog-sys":[C[152],"0.1.1"],"css-purify":["css-purify works a little $C [&Y://github.com/purifycss/purifycss](purifycss) to strip out unused CSS.","0.0.15"],"libx11":["Xlib @6 @0 @3. [ABANDONED]",C[5]],"base64-lib":["A base64 encoder / decoder",C[8]],"toml_edit":["Yet another @G-preserving TOML @i.","0.6.0"],"ark-mnt6-753":["$8 MNT6-753 pairing-&E elliptic curve",C[1]],"nails":["[Nailgun](&z://martiansoftware.com/nailgun/protocol.html) @c @5 @U protocols @5 a `Nail`$y @l consuming $R can implement to plug in @4 logic @l they would $C to keep warm ina nailgun @U.",C[28]],"miette":["Fancy diagnostic reporting @1 @5 @9 @0 us mere mortals who aren't ^2 hackers.","3.2.0"],"imag-edit":["Part of @4 imag @F ^m: imag-edit @D",C[12]],"piston_window":["$8 official Piston window @h @0 @4 Piston game $a","0.120.0"],"r1cs":["A @1 @0 $K R1CS gadgets","0.4.7"],"systray":["@3 @1 @0 making minimal cross-@N systray GUIs",C[2]],"tracing-chrome":["A Layer @0 &g-subscriber @l outputs Chrome-style traces.","0.3.1"],"cargo-c":["Helper ^U to $j @5 install c-$C &4","0.9.5+cargo-0.57"],"windows-dll":[C[153],C[1]],"voidmap":["$o mind-map + task tracker + tsdb","1.1.5"],"interledger-spsp":["Client @5 @U @T of @4 @K Payment Setup ^c (SPSP)",C[2]],"human-sort":["Human sort (natural sort) @2",C[8]],"rustful":["A light ^s @k, @7 some REST-$C features @5 @4 ambition of being @d, modular @5 non-intrusive.","0.9.0"],"diesel_findable":["Macro to ^n find_by_{attr} @y","0.1.7"],"juniper_actix":["Juniper GraphQL $T @7 Actix",C[2]],"powershell_script":["A @1 @0 running ^6 PowerShell scripts",C[5]],"tetcore-std":["Lowest-$F @C @0 @4 Tetcore @I","2.1.2"],"ckb-crypto":["$8 ckb &Q util",C[302]],"dyn-future":["Convenient @5 $I dynamic Futures @0 @3.","3.0.4"],"block-array-cow":["In $g array de-duplication, useful @0 ^Z storing of a history of @w versions.","0.1.4"],"extendr-engine":[C[154],C[3]],"google-cloud":["&b @3 @6 @0 Google Cloud Platform gRPC APIs",C[5]],"office":["See 'calamine' @8. Contact me @0 'office' ownership","0.8.2"],"snarkvm-derives":["Canonical @M @0 a decentralized virtual machine","0.7.9"],"typed-html-macros":["Type checked JSX @0 @3 (proc_macro @8)",C[8]],"blackhole":["...to throw $r threads ^d.",C[43]],"snarkos-dpc":["DPC @0 a decentralized operating @O","1.1.4"],"webpacker":["A @3 @h @0 @u Webpacker to manage assets.","0.3.4"],"concrete-npe":["Noise parameter estimator @0 @4 concrete FHE @1.","0.1.9"],"autowired":["@3 &m injection","0.1.8"],"openxr":["High-@C, mostly-$M OpenXR @6","0.15.4"],"smallbitvec":["A bit vector optimized @0 size @5 inline ^x","2.5.1"],"thruster-proc":["$8 ^B @a behind @4 thruster &e @k","1.1.10"],"google-fusiontables2":[C[899],"2.0.8+20171117"],"implicit3d":["3d implicit geometry.","0.14.2"],"z3":[C[421],"0.11.2"],"hybrid-clocks":["Hybrid Logical Clocks","0.5.3"],"wiggle-macro":["Wiggle @V @B",C[53]],"$0_^0":["Creates a directory $V suitable @0 storing large ^M of @z, @5 optionally deletes @4 created directory @5 @z when dropped.","0.1.1"],"rabbot":["Abstract $W ^0 @B",C[3]],"unix_str":["Unix-^i $p regardless of @N.","1.0.0"],"htmldom_read":["HTML reader @l parses @4 @V ^d &x-$d ^0","0.5.0"],"gfx_draping":["Drape polygons &6 terrain @7 gfx",C[1]],"manber-fingerprinting":["Find similarities in @w. An @2 of Udi Manber's 1994 Usenix paper.","0.6.0"],"faster-hex":["Fast hex $5.","0.6.1"],"zbx_sender":["@v of Zabbix Sender Client.",C[8]],"io-block":["Work @7 block &N @5 other block-$C things in @f","0.1.3"],"codeowners":["@3 @6 @0 Github CODEOWNERS @z","0.1.3"],"smartstring":["Compact inlined $p","0.2.9"],"open-metrics-client-derive-text-encode":["Auxiliary @8 to @b ^D Encode $y @t open-&q-@c.","0.1.1"],"rexiv2":["@Q @1 @s a @3 @h $G @4 gexiv2 @1, $i isa GObject-@n @h $G @4 Exiv2 @1, $i @s read andwrite $X to @4 Exif, XMP, @5 IPTC metadata in media @z (typicallyphotos) in various formats.","0.9.1"],"kvm-bindings":["@3 $L @6 to KVM ^8 @u bindgen.","0.5.0"],"norx-permutation":["NORX Permutation","0.1.4"],"cmdline_words_@i":["@W iterators &6 'words' in a $c, @u @D-$D escaping rules. Intended @0 $d where extra heap allocations are undesirable",C[5]],"restrust":["Demo REST @f $U","0.7.0"],"tox":["@v of toxcore in ^X @3 -P2P, distributed, encrypted, easyto $d DHT-@n ^9.","0.1.1"],"hprof":["A @d hierarchical profiler","0.1.3"],"exonum_rocksdb":[C[155],"0.7.6"],"rust-argon2":["@3 @2 of @4 Argon2 password hashing @Y.","0.8.3"],"tokio-mock-task":["Mock a Tokio task","0.1.1"],"digitalocean":["A ^X @3 DigitalOcean @x $W.","0.1.1"],"psyche-host":["Host ^F @0 Psyche AI Toolset","0.2.19"],"man":["Generate structured man pages",C[1]],"bit_reverse":["Computes @4 bit reversal of primitive integers.","0.1.8"],"hurdles":["Counter-@n &d barrier","1.0.1"],"pwasm-abi-derive":[C[312],"0.2.3"],"mio_httpc":["mio_httpc is a fully @J @5 sync &z @c running on top of mio only.","0.9.5"],"drone-stm32-map-periph-dma":[C[46],C[24]],"ark-ec":["A @1 @0 elliptic curves @5 pairings",C[1]],"delay_timer":["Time-&F of delayed tasks. Like crontab, but synchronous $n tasks are possible, @5 dynamic add/cancel/remove is supported.","0.9.2"],"uhlc":["A Unique Hybrid Logical Clock @0 @3.","0.3.1"],"michelangelo":["a work-in-^I @1 @0 procedurally constructing 3D geometries","0.2.5"],"murmurhash3":["MurmurHash3 @2","0.0.5"],"google-storage1-cli":[C[248],C[63]],"tract-tensorflow":[C[94],"0.15.5"],"checksum":["Calculates crc32/crc64 $0 checksums $A in @3",C[5]],"ucd-raw":["Uninterpreted $X to @4 unicode UCD","0.5.0"],"lamedh_@I":[C[156],C[1]],"tumblr-likes":["Downloads $r liked photos @5 videos on Tumblr.","0.3.4"],"cuda":["CUDA @6.","0.4.0-pre.2"],"io-context":["A context @l carries a deadline, cancelation signals @5 request scoped valuesacross @x boundaries @5 $t processes.",C[3]],"sincere":["&e @k",C[120]],"$6_jsonrc":["A lenient ^k @M $0 @G",C[0]],"icasadi_^7":["@3 @m to CasADi @y (@0 $S purposes only)","0.0.2"],"CoreFoundation-sys":["$L @6 @0 CoreFoundation","0.1.4"],"tauri-codegen":["@V ^1 meant to be consumed inside of `tauri` through `tauri-$j` or `tauri-@a`",C[96]],"socket":["Low-@C networking @m @0 @3","0.0.7"],"rls-blacklist":["Blacklist of $R @0 @4 RLS to skip","0.1.3"],"unix-daemonize":["Easy unix daemons @j @0 @3 projects",C[4]],"grin":[C[157],"5.1.0"],"rubble":["An ^b BLE stack","0.0.4"],"ucx-sys":["Low-@C $L @6 to @4 RDMA C-@1 libucx","0.1.3"],"yubikey":["Pure @3 cross-@N host-side ^j @0 YubiKey &N @t Yubico withsupport @0 hardware-backed public-key decryption @5 digital signatures usingthe Personal Identity Verification (PIV) $U. Supports RSA (1024/2048)or ECC (NIST P-256/P-384) ^3 e.g, PKCS#1v1.5, ECDSA","0.4.2"],"ucs2":["UCS-2 ^P @5 $5 @y",C[9]],"mfte":["MFTE, @4 magic-free ^D editor",C[1]],"rawkey":["Raw $o key input","0.1.3"],"winit":[C[158],"0.25.0"],"libudis86-sys":["Low-@C @6 to libudis86, @4 x86 disassembler",C[5]],"execute":["A @1 @0 extending `Command` in order to execute programs more easily.","0.2.9"],"transient-hashmap":["@K @f HashMap @7 transient entries.","0.4.1"],"&V_in_$l_@b":["$e @a @0 json_in_type",C[4]],"neovim-rs":["A @1 @0 embedding Neovim inside a @3 ^g",C[0]],"ash-tray":["A Tray to host Ash @7 Winit",C[43]],"enigo":["Enigo lets you control $r mouse @5 keyboard in an abstract way on different operating systems (currently only &j, macOS, Win – Redox @5 *BSD planned)","0.0.14"],"wasmer-engine-universal-near":[C[616],"2.0.1"],"ethabi-cli":["Easy to $d ^y @0 conversion of ethereum contract calls to bytecode.","14.1.0"],"kvm-ioctls":["Safe &r &6 KVM ioctls",C[13]],"diesel-sort-struct-fields":["Macro to sort struct fields @5 `table!` columns to avoid subtle bugs","0.1.3"],"lightfield_loader":["Load lightfields in @4 @G $2 by @4 stanford lightfield archive",C[1]],"get_if_addrs":[C[1072],"0.5.3"],"weakjson":["@p @0 @R bad ^k","0.0.7"],"sapp-dummy":["Part of miniquad &S @1. Stub sapp $h.","0.1.5"],"textcode":["Text $5/^P @1. Supports: UTF-8, ISO6937, ISO8859, GB2312",C[5]],"remoteprocess":["cross @N ^S @0 getting $f on a running processes","0.4.6"],"serial_^7":["Allows @0 @4 creation of serialised @3 tests","0.5.1"],"pwned":["@K Have I Been Pwned checker","0.5.0"],"cpt":["A filesystem ^4 @l will copy a folder structureand if there is provided templating datawhen it encounders any `.tpl` @z, it tries tofill it @u Handlebar syntax @5 prints outthe transformed $4.","0.4.1"],"peano-natural":["Type-@C Peano naturals",C[5]],"bnf":["A @1 @0 @R Backus–Naur form context-free grammars","0.3.3"],"criterion-stats":["Criterion's statistics @1",C[1]],"winpty-sys":["@3 winpty @6","0.5.0"],"str_overlap":["Methods @0 finding @4 overlap $t two $c slices.","0.4.3"],"logram":["Utility @l takes logs @t anywhere @5 sends them to Telegram","2.0.0"],"encryptfile":["@W an @m to @3 Crypto @0 encrypting @5 decrypting @z.","0.1.3"],"i2cdev-bmp280":["I2C ^j @0 @4 BMP280 barometer, thermometer.","0.1.4"],"ecs-rs":[C[159],C[4]],"dhcp4r":["IPv4 DHCP @1 @7 ^p @U example.","0.2.3"],"$6_rusqlite":["Serialize/deserialize rusqlite rows","0.28.0"],"bare-io":[C[160],C[5]],"ta":["Technical analysis @1. Implements &a of indicators: EMA, SMA, RSI, MACD, Stochastic, etc.","0.5.0"],"pallet-authorship":["Block @5 Uncle Author tracking @0 @4 FRAME","3.0.0"],"alac":["An ALAC decoder in @3.","0.5.0"],"rsa-pem":["Converting $t @4 PEM @G @5 a RustCrypto RSA $l",C[1]],"tc_redis":["Testcontainers image @0 Redis",C[5]],"google-gamesmanagement1_^A":[C[161],C[85]],"spider":["Multithreaded Web spider crawler $A in @3.","1.2.1"],"http-muncher":["@3 Streaming ^s @i @n on nodejs/&z-@i",C[9]],"rubato":["&b resampling @1 intended @0 audio @w",C[13]],"hex_grid":["A @1 to easily work @7 2d hex grids of arbitrary shapes",C[5]],"cargo-license":["Cargo &i to see license of &c","0.4.2"],"legion-systems":[C[162],"0.2.4"],"$6_@b_state_internals":[C[885],"0.4.3"],"sctp":["sctp","0.1.5"],"sandbox-ipc":["An IPC @2 @7 an eye toward enabling privilege separation.",C[2]],"wit-printer":["Textual printer @0 @4 $x Interface Types $Q @G",C[3]],"svd_board":["Autogenerated &o @5 accessor &P @0 @4 $g mapped registers of various ARM boards @n on CMSIS SVD @z.",C[1]],"taglib-sys":["Raw TagLib @6 @0 @3, $2 internally by TagLib-@3","1.0.0"],"rollbar":["Track @5 report errors, exceptions @5 &y @t $r @3 $U to Rollbar.","0.7.0"],"libarchive-sys":["@H to @O @1 libarchive","0.0.2"],"arraygen":["&n @e @0 $E arrays @t struct fields.",C[1]],"amq-proto":["AMQP/RabbitMQ @9 @2",C[0]],"lindera":["A morphological analysis @1.",C[7]],"fstab-generate":["Type @0 $E fstab entries",C[4]],"randomx-rs":["@3 @6 @0 @4 RandomX Proof-of-Work","1.1.9"],"arc-reactor":["Minimal, &b, Web Framework","0.2.4"],"cht":["Lockfree resizeable concurrent ^z table.","0.4.1"],"dpl_^7":["Travis CI dpl ^7 @X","0.0.1-test.ff86cded02675a2fcdd9d59456ddce24"],"uhttp_request":["^s request start-$D @5 header field parsers","0.5.1"],"solana-stake-tests":["Solana stake ^S tests","0.20.5"],"refinery-migrations":[C[326],"0.2.3"],"medea-control-api-proto":["Control @x @9 @2 @0 Medea media @U",C[2]],"cubeb-sys":["&M @6 to @4 cubeb @1","0.9.0"],"xproto":["@3 @6 to @4 X11 @9 @1","2.0.1"],"sentry-types":[C[163],C[88]],"redoxfs":["$8 Redox Filesystem","0.4.3"],"ncollide_entities":[C[111],"0.5.1"],"tmp006":["Platform-&f @3 ^j @0 @4 TMP006/TMP006B non-contact infrared (IR) thermopile temperature sensor.",C[3]],"byte_$c":["Wrapper @g @0 outputting byte $p (b\"Hello\") @u @4 Debug ({:?}) @G.","1.0.0"],"capturing-glob":["An ^h @0 unix shell style globs @l allow to capture groups (i.e. remember matching character ranges) while matching.","0.1.1"],"solana-runtime":["Solana @I","1.8.1"],"amethyst_config":["Loading @t .ron @z ^d @3 $k @7 defaults to prevent hard errors.",C[99]],"quantiles":["a $b of approximate quantile ^3","0.7.1"],"try_or":["Contains ^t @a @0 unwrapping Results @5 Options.",C[3]],"wedpr_l_@a":["@p of WeDPR &J @a.","1.0.0"],"gl46":["@H to OpenGL 4.6 (plus some &p)",C[5]],"ranges":["@Q @8 @s a ^G alternative to @F/std ranges, set-$B to work @7 them @5 a range set @l can efficiently store them @7 @4 least amount of $g possible.","0.3.3"],"dep-obj":["Dependency object: effective reactive heterogeneous container.","0.34.1"],"binary-install":["Install a $Q @t a path to a global cache","0.0.3-alpha.1"],"tokenlock":["@W cell @g @l decouple permissions @t @w.","0.3.5"],"english-numbers":["Convert integers to $A English &a @G","0.3.3"],"ws2812-spi":["SPI-@n ^j @0 ws2812 leds",C[2]],"enum_properties":["A @e @0 declaring &k properties on enum variants",C[1]],"gotham_&G_jwt":["JWT &G @0 @4 Gotham &e @k.","0.6.1"],"rural":["User-&E @D-$D ^s ^4.","0.8.1"],"twilight-gateway":["Discord Gateway @2 @0 @4 Twilight ecosystem.","0.7.0"],"weight-cache":["A cache @l holds a limited &a of key-&5-pairs according to a user defined criterion","0.2.3"],"dprint":["Binary @0 dprint @V formatter—a pluggable @5 configurable @V formatting @N.","0.18.1"],"rustogram":["A @f port of HdrHistogram","0.1.4"],"quadrature":["@Q @s several $I numerical $T &P. @Q @1 is ^X $M @f, @5 cross-@N. $8 double exponential $1 is naturally adaptive, @5 does not allocate.",C[4]],"libcec-sys":["$L @6 to libcec","1.1.0"],"grin_util":[C[157],"5.1.1"],"&z_io":["A @1 @7 limited &c containing an ^s @c @5 @U.","0.2.10"],"xflags":["Moderately @d @D $D arguments @i.","0.2.3"],"trajectory":["Trajectory interpolation","0.0.2"],"expand":["Macro to expand byte $c @5 $c literals",C[3]],"skip_^q":["Utility helping skip @5 log Result::Error in iterations","3.1.1"],"skribo":["A @3 @1 @0 low-@C ^D layout.",C[0]],"crossbeam-channel":["Multi-producer multi-consumer channels @0 message passing","0.5.1"],"sql-ast":["A lean sql AST @5 @i","0.7.5"],"noble-democracy":["FABRIC noble @0 democracy","2.0.0"],"quant":["(Not ready to $d yet) A @1 @l makes it &x to work w/ Dimensions, Units, @5 Physical Quantities.","0.0.4"],"ibc-proto":["ibc-proto is a @3 @2 of @4 Cosmos ^N & IBC proto &o.","0.12.0-pre.1"],"generic-array":["&W @g ^5 $7 of arrays","0.14.4"],"luminance-glfw":["GLFW @j @0 luminance",C[72]],"ncl":["@K $H $0 @G @n on UCL, HCL @5 ^k","0.1.3"],"ci_info":["@W current CI ^K $f.","0.14.3"],"ilc-cli":[C[164],C[4]],"cargo-insta":["A review ^4 @0 @4 insta snapshot $S @1 @0 @3","1.8.0"],"actix-multipart":["Multipart form @j @0 Actix Web","0.4.0-beta.7"],"path_abs":["Ergonomic paths @5 @z in @f.","0.5.1"],"snafu-derive":[C[1083],C[1084]],"join_to_$c":["Join a list of items to $c/buffer.","0.1.3"],"fontdb":["A @d, in-$g font ^Q @7 CSS-$C queries.","0.7.0"],"mockers_^H":[C[829],"0.9.4"],"varnishslog":["Reads Varnish Cache VSL ($Q) log ^L @5 produces structured log records in ^k @G","0.8.1"],"libhdf5-lib":["Build script @j @0 @4 HDF5 @1",C[3]],"git-validate":["Validation @y @0 various kinds of names in git","0.5.3"],"qapi":["QEMU QMP @5 Guest Agent @x",C[7]],"assert_^y":[C[419],"0.6.3"],"nanoserde-derive":["Fork of makepad-tinyserde @b ^Y any external &c","0.1.18"],"wpactrl":["wpa_supplicant control @m @1","0.3.1"],"base_custom":["Use any characters as $r own numeric base @5 convert to @5 @t decimal.",C[3]],"libpasta":["All-inclusive password hashing @1",C[4]],"udev":["libudev @6 @0 @3","0.6.2"],"cargo-lichking":["Display info about licensing of &c","0.9.0"],"adorn":["A $Y to provide python-style decorators in @3",C[2]],"sheesy-tools":["Tooling to make @u &J secrets effortless.","4.0.11"],"parse-generics-poc":["A proof-of-concept @2 of @4 proposed RFC #1583; @s @a @0 @R generics @5 where clauses. Note: requires a ^i nightly ^2. For a stable alternative, see @4 parse-generics-shim @8.",C[0]],"gfx_window_glfw":["GLFW window @0 gfx-rs","0.17.1"],"gfx-backend-dx12":["DirectX-12 @x $N @0 gfx-rs","0.9.1"],"user":[C[925],"0.1.1"],"lit":["Integrated $S ^4, &X by LLVM's 'lit' $S script","1.0.3"],"sgx_tprotected_fs":[C[21],"1.1.1"],"fix-hidden-lifetime-bug":[C[165],"0.2.4"],"audit-filter":["Filters npm audit &Z @0 $d in CI","0.5.0"],"datachannel":["@3 &r @0 libdatachannel.","0.7.1"],"d3d12":["Low @C D3D12 @x @h","0.4.1"],"python_rub":["@3 Builder @0 Python","0.0.3"],"forest_&Q":["Filecoin &Q @E @0 $d in Forest","0.5.3"],"sudoku":["A sudoku solver @1","0.7.0"],"fil-sapling-crypto":["Cryptographic @1 @0 Zcash Sapling","0.7.0"],"spinning_top":["A @d spinlock @8 @n on @4 abstractions provided by `lock_api`.","0.2.4"],"argon2":["Pure @3 @2 of @4 Argon2 password hashing @Y @7 supportfor @4 Argon2d, Argon2i, @5 Argon2id algorithmic variants","0.3.1"],"tremor-script":[C[177],"0.11.10"],"sample":["A @8 ^R @4 fundamentals @0 ^p @7 audio PCM DSP. NOTICE: @Q @8 was renamed to `dasp`.",C[16]],"google-content2":[C[166],C[85]],"redox_liner":[C[167],"0.5.1"],"tree-sitter-cpp":["Cpp grammar @0 @4 ^0-sitter @R @1",C[42]],"word2vec":["@3 @m to word2vec.","0.3.3"],"ntex-router":["Path router","0.5.1"],"woke":["A minimalistic waker @2 @0 executors","0.0.2"],"mtpng":["Multithreaded PNG encoder @1","0.3.5"],"stdweb-internal-runtime":["Internal @I @0 @4 `stdweb` @8","0.1.5"],"quicksort":["A quicksort @2 @0 in-place sorting.","1.1.0"],"grin_pool":[C[168],"5.1.0"],"spaceapi-server":["A @1 @l allows you to easily implement a SpaceAPI @U.","0.6.0"],"ttrpc":["A @3 $4 of ttrpc.","0.5.1"],"dominator":["Zero-cost ultra-high-$J declarative DOM @1 @u FRP signals","0.5.22"],"deuterium":["Deuterium is a fancy SQL &I @0 @3. It's designed to provide a DSL to easily $j SQL queries in $M @5 *typed* way.","0.5.0"],"&z_proxy":["@Q $U is designed to be $2 as a @D @t a $x @Y running inside @4 SSVM to perform &8 ^s @5 HTTPS ^9 $B. Please see documentation @0 more details.","0.1.1"],"monad":[C[169],"0.0.2"],"fast-math":["Fast, approximate versions of mathematical @y.","0.1.1"],"generativity":["Generation of unique invariant lifetimes","1.0.0"],"windows-win":["Some windows hacking @1 @7 @E to find windows @5 $X them","2.4.1"],"rmodbus":["Fast @5 @N-independent Modbus @U @k","0.5.3"],"witchcraft-metrics":["A general-purpose &q @1",C[3]],"load":[N,"0.0.2"],"mkdirp":["mkdir -p","1.0.0"],"tinysegmenter":["Compact Japanese tokenizer","0.1.1"],"cargo-quickinstall":["Precompiled $Q installs @0 `@S install`",C[8]],"cgroups-fs":["@3 @6 to &j Control Groups (cgroups).","1.1.2"],"futures-preview":[C[219],C[19]],"rocket-raw-response":["@Q @8 @s a response struct $2 @0 responding raw @w.","0.5.0"],"k":["k is @0 kinematics","0.25.0"],"bounds":["A @1 to @o @7 bounded @5 unbounded ranges","0.6.2"],"num-decimal":["Infinite precision decimals @7 fair rounding @5 other gimmicks basedon num-rational.","0.2.4"],"wordsworth":["A $b of natural @L analysis @y","0.1.1"],"hd44780-driver":[C[845],C[2]],"avm-server":["Fluence AIR VM",C[16]],"tokio-pipe":["&b pipe(2) @1 @u $v.",C[5]],"rooster":["A @d password &F @0 geeks","2.9.0"],"named-block":["Macro ^5 early-exit-@t-any-block","0.3.1"],"tokio-diesel":["Integrate Diesel ^d Tokio cleanly @5 efficiently.",C[1]],"mm_video":["Cross @N video @5 window ^A @1.","0.1.5"],"html5ever_ext":["@Q is a set of unofficial &p to @4 html5ever crate's RcDom @5 Node &o, including a ***minifying HTML5 serializer*** @5 @j @0 ***CSS matching***.","0.21.20"],"cryptonote-wallet":["base58 @0 cryptonote",C[3]],"ledger-tendermint":["@p to integrate @7 @4 Ledger Tendermint app",C[2]],"mime":["Strongly Typed Mimes","0.3.16"],"criterion":["Statistics-driven micro-benchmarking @1","0.3.5"],"$6_php":[C[485],"0.5.0"],"bitcoin-rpc":["Bitcoin ^k-RPC @c.",C[3]],"benzene-2d":["@K 2D ^T ^j @0 Benzene",C[3]],"twitchchat":["@m to @4 irc-side of twitch's chat @O","0.14.8"],"stellaris-launchpad":["A bare-metal @8 supporting @4 Texas Instruments Stellaris LM4F120 Launchpad (@5 most likely @4 Tiva-C TM4C120 Launchpad too)","0.11.2"],"grpc":["@3 @2 of gRPC","0.8.3"],"tobytcp":["A little @1 @0 sending &y &6 a tcp ^L",C[15]],"bitcoin-explorer":["High Performance Blockchain Deserializer","1.2.13"],"new_debug_unreachable":["panic in debug, intrinsics::unreachable() in release (fork of debug_unreachable)","1.0.4"],"seq":["$8 ^F 'seq' @s @4 ^O, ^G sequence container 'Seq' @0 unmovable @w @5 is ^b ^d @4 ^U during compile $z.","0.5.0"],"unique":["ptr::Unique @0 stable @3","0.9.1"],"crossfire":["channels @0 @J @5 threads","0.1.7"],"tokio-postgres":["A &8, $n PostgreSQL @c","0.7.4"],"google-proximitybeacon1_beta1":[C[646],"2.0.8+20200127"],"benzene":["Abstractions @0 a functional reactive $U architectureusing Carboxyl",C[3]],"sauron-parse":["A @1 @0 @R html syntax","0.40.0"],"pamsm":["@3 &r $G PAM Service Modules @y","0.5.0"],"gimei":["Generate fake name @0 Japanese",C[3]],"bugsnag":["$8 ^S of Bugsnag in @f.",C[5]],"ogg":["Ogg container decoder @5 encoder $A in ^X @3",C[7]],"hashmap_ext":["Extensions to std::&C::HashMap","0.0.3"],"edge-detection":["$8 canny edge detection $1","0.2.5"],"veml6070":["Platform-&f @3 ^j @0 @4 VEML6070 UV light sensor.",C[0]],"hostman":["A ^y &F @0 /etc/hosts","0.5.2"],"wasmtime-environ":["Standalone ^K @j @0 WebAsssembly @V in Cranelift",C[53]],"tree-cursor":["A @d, non-intrusive ^0 cursor @l supports node mutation withoutCell/RefCell.",C[1]],"urlencoding":["A @3 @1 @0 doing URL percentage $5.","2.1.0"],"&V_&5_description":["Json Value Description is a @X @0 outputting a description of unstructured @w parsed by Serde Json ^d a Value.",C[3]],"wasmtime-cache":["Support @0 automatic ^F caching @7 Wasmtime",C[53]],"$P_polly":["^r ^N @0 @3 - Amazon Polly @ 2016-06-10",C[27]],"huffman-compress":["Huffman ^C given a probability ^m &6 arbitrary symbols","0.6.1"],"mockito":["^s mocking @0 @3.",C[53]],"sm4":["SM4 block cipher $1",C[2]],"lazy-pool":["Experimental lazy object pool","1.1.0"],"newrelic":["Idiomatic @3 @6 to @4 New Relic C SDK.Note: versions 0.1.0 onwards of this @8 are completely incompatiblewith previous versions as they move away @t @4 deprecated New Relic SDKto @4 newer New Relic C ^N. @Q has additional requirements: seehttps://docs.newrelic.com/docs/agents/c-sdk/get-started/introduction-c-sdkfor details.",C[8]],"vcard":["A ^X @3 @2 of vCard @n on RFC 6350.","0.4.9"],"imglife":["⢥ Play Conway's Game of Life @7 images","1.0.7"],"esparse":["A $I JavaScript @i. Currently only a lexical analyzer.",C[0]],"stunclient":["@K STUN @c @0 resolving external IP address @5 port of a UDP socket",C[1]],"derive-enum-error":[C[651],"0.0.1"],"du-dust":["A more intuitive $4 of du","0.7.0"],"google-datastore1_beta2":["A @q @1 to @o @7 datastore (@9 v1beta2)","0.1.13+20160314"],"input-event-codes":["&j input event codes form `linux/input_event_codes.h`.",C[5]],"extra-default":["Extra $3 to go along @7 @4 Default $y.",C[3]],"cairo-sys-rs":["$L @6 to libcairo","0.14.9"],"ckb-logger-config":["CKB logger configurations.",C[302]],"elrond-codec-derive":["Macro @T of elrond-codec #[@b(NestedEncode, NestedDecode, TopEncode, TopDecode)]","0.8.1"],"rocket_dyn_templates":["Dynamic templating $a $T @0 Rocket.",C[59]],"tang-rs":["A light weight $n connection pool",C[3]],"netapi32-sys":["Contains @Y $h @0 @4 ^6 @x @1 netapi32. See winapi @0 @g @5 constants.",C[3]],"bit_&F":["A @8 @0 &3 @5 $O bits @t various streams","0.5.3"],"framed":["Send @5 receive @w &6 lossy streams of bytes.","0.4.3"],"crustacean":["A @3 @6 @B.","0.3.1"],"parameterized-macro":["Attribute @e @8 @0 parameterized tests.","0.3.1"],"google-dialogflow2_beta1":[C[170],C[65]],"amazon_cognito_@f":["amazon cognito @c in @f","0.1.4"],"double-checked-cell-async":[C[245],"2.0.2"],"clickhouse-rs":["&b Yandex ClickHouse @c @1.",C[279]],"oxygengine-composite-renderer":["Composite renderer ^F @0 Oxygen Engine",C[42]],"relevant":["A &7 $w $l to emulate must-$d @g","0.4.2"],"ruzstd":["A decoder @0 @4 zstd ^C @G","0.2.4"],"enclave-runner":["High-@C abstractions @0 running SGX enclaves.This @8 can be $2 to load @5 @m @7 SGX @P compiled forthe `x86_64-fortanix-unknown-sgx` target.","0.4.1"],"daummap":["Kakao Map @x @h","0.3.1"],"sp-panic-handler":["Custom panic hook @7 bug report link","3.0.0"],"enum_meta":["Add metadata to Enum Variants","0.6.0"],"luminance-sdl2":["SDL2 @j @0 luminance",C[1]],"combu":["Combu is a yet another mini ^y @k.","0.6.8"],"piston2d-sprite":["A @1 @0 sprite hierarchy @5 scene ^A","0.64.0"],"sgx_tcrypto":[C[21],"1.1.1"],"tabled":["An &x to $d @1 @0 pretty print tables of @3 `struct`s @5 `enum`s.",C[1]],"vk_^S":["$8 Vulkan @x XML exposed as a byte $c constant","1.0.69"],"dir-signature":["@Q @8 allows to create a signature (index) of a directory @7 @z.","0.2.9"],"riker-deadletter":["A Dead Letters logger @0 Riker","0.2.4"],"imxrt-iomuxc-build":["Build @j @0 @4 imxrt-iomuxc @8. Not @0 general use.Part of @4 imxrt-rs ^g.",C[0]],"hdk_^B_@a":["holochain hdk v2 (@7 ^B @a)",C[18]],"heca-lib":["Hebrew Calendar @1","1.3.2"],"$P_workdocs":["^r ^N @0 @3 - Amazon WorkDocs @ 2016-05-01",C[27]],"virt":["@3 @6 to @4 libvirt C @1","0.2.11"],"dasp_peak":["A DSP peak detection @1 ^G &6 @4 rectifier.",C[16]],"rhai_^H":["$q @a @j @X @0 Rhai, a scripting @L @5 $a @0 @3","1.1.0"],"irust":["Cross Platform @3 Repl","1.33.0"],"dlib":["Helper @a @0 ^a manually loading optional @O &4.","0.5.0"],"aversion":["Versioned @w $k @7 auto-upgrading",C[5]],"tree-rs":["^0-rs is a cross @N reimplementation of @4 linux *^0* command.It supports colored &Z @5 specifying @4 &a of directory levels itshould search.","0.6.5"],"board-game-geom":["Geometry @1 @0 board game.",C[3]],"vast":["Verilog AST @1",C[1]],"solana-reed-solomon-erasure":["@3 @2 of Reed-Solomon erasure coding (Solana temporary fork)","4.0.1"],"mpart-async":["&b (Futures-Base) Multipart Requests @0 @3","0.5.0"],"wat-ast":["$x ^D @G (.wat) style-preserving syntax ^0 @0 $E human readable @V.","0.20.3"],"tiny-nix-ipc":["Minimal @h @0 @u sockets as IPC @7 $0 descriptor passing","0.1.1"],"parity-path":["Path @E","0.1.3"],"url-match":["URL match patterns @1","0.1.7"],"triple_accel":["@3 edit distance routines accelerated @u SIMD. Supports $I Hamming, Levenshtein, restricted Damerau-Levenshtein, etc. distance calculations @5 $c search.",C[2]],"bracket-terminal":["ASCII/Codepage 437 $o emulator @7 a game loop. Defaults to OpenGL, also @j Amethyst, Curses @5 Crossterm @0 &Z. Part of @4 bracket-lib family.","0.8.5"],"GSL":[C[190],"6.0.0"],"srp":["Secure Remote Password (SRP) @9 @2","0.5.0"],"wasmbus-rpc":["Runtime @1 @0 actors @5 capability providers","0.5.2"],"best":["Utility @0 getting @4 best &5 of a sequence @7 an associated &5",C[15]],"rust-libindy-wrapper":[C[389],"0.2.13"],"w_result":["A result $l @l carries warnings",C[4]],"swc_ecma_^H":["Ecmascript @V @B @0 @4 swc ^g.","0.78.0"],"bcfs":["A virtual filesystem @0 Blockchain WASI","0.4.1"],"jwalk":["Filesystem walk performed in parallel @7 streamed @5 sorted results.","0.6.0"],"superslice":["Extensions @0 slices","1.0.0"],"futures-await-synom":["Temporary fork of `synom` @0 @4 @Z-await @8",C[28]],"rmp-futures":["Async @3 MessagePack @5 MessagePack-RPC",C[5]],"solana-kvstore":["Embedded Key-Value store @0 ^f","0.19.1"],"raii-counter":["RAII Counter.","0.4.1"],"http-signature-normalization-reqwest":[C[221],C[3]],"tetcore-database":["Tetcore ^Q $y.","2.1.2"],"battery-ffi":["$L @6 @0 battery @8","0.7.5"],"psyche-simulator-cli":["CLI simulator @0 Psyche AI Toolset","0.2.19"],"rs-libc":["A subset of libc @l can be $2 @7 @3 in freestanding environments.","0.2.3"],"chacha":["ChaCha ^L ciphers",C[1]],"static-ref":["References @l point ^d `&k` @w",C[5]],"finite-fields":["Traits @5 @g @0 computations on finite fields.","0.10.3"],"doh-client":["DNS &6 HTTPS @c","3.0.2"],"cosmwasm-vm":["VM @6 to run cosmwams contracts",C[97]],"rustscan":["Faster Nmap Scanning @7 @3","2.0.0"],"google-taskqueue1_beta2-cli":[C[1022],"2.0.4+20160428"],"twilight-mention":["^e @0 ^p @7 mentions in @4 Twilight ecosystem.","0.7.0"],"monger":["MongoDB $4 &F",C[24]],"bart":["Compile $z templating &X by Mustache","0.1.4"],"curve25519-dalek-fiat":[C[562],C[0]],"hreq-h1":["&b ^s/1.1 (@5 1.0) @2","0.3.10"],"winfolder":["@W locations of ^E ^6 folders on @4 current @O.","0.1.1"],"signal-hook-async-std":["@J-std @j @0 signal-hook",C[5]],"osshkeys":["A @1 to read @5 &0 OpenSSH public @5 private keys","0.5.1"],"dont_disappear":["Tiny @8 @l prevents @4 console window @t closing when @4 ^U finishes.","3.0.1"],"drone-stm32-map-pieces-12":[C[46],C[24]],"google-authenticator":["@Q @3 @8 can be $2 to @o @7 @4 Google Authenticator mobile app @0 2-factor-authentication.",C[5]],"nnnoiseless":["Audio denoising, derived @t Xiph's RNNoise @1",C[9]],"cortex-m-rt":["Minimal @I / startup @0 Cortex-M $s","0.7.0"],"multisplice":["easily splice a $c &l times, @u offsets ^d @4 original $c",C[1]],"conduit-cookie":["Cookie @5 session &G @0 conduit-@n stacks",C[171]],"debug_print":["print only in debug $j","1.0.0"],"wasmer-compiler-near":[C[252],"2.0.1"],"lambda_calculus":["A @d, zero-&m @2 of ^X lambda calculus in Safe @3","3.0.2"],"classifier":["Naive Bayes classifier","0.0.3"],"spectacles-brokers":["Message brokers $i allow @0 powerful communication $t Spectacles services.","1.4.0"],"mockiato-codegen":["Internally $2 by mockiato @0 @V ^1. @Q @8 should never be $2 directly","0.9.5"],"woz":["Woz is a $x progressive &e app (PWA) toolchain @0 deploying performant mobile apps distributed @0 free @7 a hyperlink.","1.4.0"],"casper-engine-test-support":["@p to @j $S of Wasm smart contracts @0 $d on @4 Casper ^9.","1.4.1"],"glad-sys":["$L @0 Glad @0 @3","0.0.6"],"xorf":["@p ^5 xor filters - faster @5 smaller than bloom @5 cuckoo filters.",C[7]],"rapt":["Runtime $U instrumentation toolkit","0.1.4"],"np":["@Q @8 is renamed to Gulali","2019.3.13"],"stdtx":["Extensible schema-driven Cosmos StdTx &I @5 Amino serializer","0.5.0"],"l20n":["Deprecated l20n @2. Look @0 &Y://github.com/projectfluent/fluent-rs instead.",C[4]],"timeout_io":["@Q @1 @s a @d timeout-@n @x @0 IO-$B","0.6.0"],"default-env":["$8 `env!` @e but @7 a default &5.","0.1.1"],"script":["...",C[0]],"gestalt":["Cross-@N $H @5 @w saving $t desktop @5 &e",C[0]],"sendmail":[C[178],"2.0.0"],"displaydoc":["A @b @e @0 ^5 @4 display Trait via a doc comment @5 $c interpolation","0.2.3"],"deltoid":["A @1 to calculate @5 apply deltas to &o @5 enums","0.11.3"],"csvlm":["&R ^A through CSV tables","0.1.4"],"libp2p-uds":[C[242],C[172]],"iso8601":["Parsing ISO8601 dates @u nom",C[2]],"paper-terminal":["Writes a $0 to a paper in $r $o. Especially if @l $0 is Markdown.","2.1.2"],"futures-cpupool":["An @2 of &d pools $i hand out @Z to @4 results of thecomputation on @4 threads themselves.","0.1.8"],"serial-unix":["Serial port @2 @0 Unix.",C[2]],"resources_@X_@X":["Utility @0 @4 resources_package @1","0.0.6"],"sticker-transformers":["Transformer architectures, such as BERT","0.9.0"],"wavefile":["@K wavefile @i.",C[3]],"gloo":["A modular toolkit @0 @3 @5 $x",C[2]],"linecount":["Quickly count lines in a $0",C[0]],"wasm-rpc-macros":["Expose @f @y as WASM RPC interfaces","0.2.18"],"async-signals":["@p @0 easier @5 $M Unix signal ^a @7 @J Stream.","0.3.1"],"paru":["Aur ^t @5 pacman @h","1.8.2"],"acct":["Crate @0 &3 @w @t acct(5) @z","0.6.0"],"read_color":["A @d @1 @0 &3 hex colors","1.0.0"],"cpr":["CapR, Efficient RNA Context Probability Estimator","1.1.0"],"oslog":["A minimal $M @h $G Apple's unified &H @O",C[0]],"ripemd320":["RIPEMD-320 ^z @Y","0.9.0"],"suffix_array":["Suffix array construction @5 searching ^3 @0 in-$g $Q @w.","0.5.0"],"newrelic-sys":["$L @6 @0 @4 New Relic C ^N.",C[3]],"derive-hex":["A @d companion @e @0 dusk-bytes @8",C[4]],"holochain_zome_@g":["Holochain zome @g","0.0.14"],"changecase":["A $y @5 @2 @0 changing @4 case of Strings @5 &str.It currently supports uppercase, lowercase, alternating case, @5 invertingcase. Title case is in @4 works.","0.0.7"],"xmpp":["High-@C XMPP @1",C[1]],"rmemo":["Tools @0 taking notes $I on @4 CLI",C[9]],"sauron-node-macro":[C[237],"0.43.9"],"abc":["An @2 of Karaboga's Artificial Bee Colony $1.","0.2.3"],"$P_organizations":["^r ^N @0 @3 - ^r Organizations @ 2016-11-28",C[27]],"muff":["Multiple USB File Flasher","0.1.4"],"guid-create":["@3 ^t @0 $Z GUIDs","0.1.1"],"ytop":["A TUI @O monitor $A in @3","0.6.2"],"parsec-client":["Parsec Client @1 @0 @4 @3 ecosystem",C[15]],"io_$B":["@W $u I/O $B",C[3]],"intervaltree":["A @d @5 ^G @2 of an immutable interval ^0.","0.2.6"],"command-run":["@p @0 running a @D in a subprocess","1.0.2"],"auto_ops":[C[911],C[1]],"sn0int-common":["sn0int - $u @V",C[15]],"age-core":["[BETA] &O @y $2 across @4 age $R","0.7.0"],"ockam_vault_sync_@F":["Syncronous @h @l allows to have &l Vault instances,@l talk to @4 same Vault @2 ^Y need @0 synchronization $9","0.28.0"],"udt":["@H to udt, a high $J @w transfer @9 (@n on UDP)",C[3]],"drone-stm32-map-pieces-8":[C[46],C[24]],"afterparty":[C[735],C[3]],"reep":["[deprecated] REsource EndPoint (REEP): &W Iron Endpoint @0 RESTlike Resource Access",C[3]],"dyn_partial_eq":["PartialEq @a @0 $y objects",C[4]],"const-default-derive":["#[@b(ConstDefault)]",C[3]],"winservice":["Run a ^6 @O &t ^Y hassle.","0.1.1"],"osproto":["^c $k @0 OpenStack @x (Obsolete)",C[8]],"sha1-hasher":["Minimal @2 of SHA1 @0 @3 (@7 fixes @5 Hasher $y @2)",C[0]],"oauth-api":["@H @0 exchanging OAuth 2 tokens @7 updated &c",C[8]],"amiquip":["Pure @3 RabbitMQ @c",C[2]],"pallet-nicks":["FRAME &v @0 nick ^A","3.0.0"],"pasta_curves":["@v of @4 Pallas @5 Vesta (Pasta) curve cycle",C[5]],"steamid-ng":["An &x-to-$d steamid $l @7 @y to parse @5 render steam2 @5 steam3 IDs","1.0.0"],"base64-url":["Base64 encode, decode, escape @5 unescape @0 URL @P.","1.4.10"],"vsprintf":["@3 @6 to @4 libc vsprintf @Y","2.0.0"],"bevy_^J":["An ^J Bevy @8 $2 to facilitate optional dynamic linking via @4 'dynamic' feature","0.5.0"],"zdaemon":["Boilerplate @0 $Z daemons in @3 @5 exposing services via ZeroMQ sockets.","0.0.2"],"nucleo-f401re":["Board Support @8 @0 @4 STM32 NUCLEO-f401RE &D board","0.4.1"],"httparse":["A tiny, $M, speedy, zero-copy ^s/1.x @i.","1.5.1"],"proptest":["Hypothesis-$C property-@n $S @5 shrinking.","1.0.0"],"xmpp-jid":["DELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATEDELETE THIS CRATE DELETE THIS CRATE DELETE THIS CRATE","0.6.1"],"ev":["Cross-@N event loop $9 @0 unix systems.",C[0]],"mockers_@b":["Macro 1.1 @2 @0 'mockers' mocking @1","0.21.0"],"conduit-log-requests":["Middleware $i logs all incoming requests to a conduit-@n @U",C[7]],"dependy":["Dependency resolution @7 variable &m @g","0.4.1"],"$P_ds":["^r ^N @0 @3 - ^r Directory Service @ 2015-04-16",C[27]],"disque-cli":[C[366],C[5]],"aces":["Algebra of Cause-Effect Structures","0.0.13"],"psp2-sys":["Unsafe @3 $L @6 to @4 psp2 headers",C[8]],"morton":["Morton space filling curve @y",C[1]],"mat32":["matrix 3x2",C[5]],"closet":["CLOSure-Enhancing Toolbox (CLOSET) @s some questionably-useful @e @E @0 closures, including clone_army!, $i reduces boilerplate @0 clone-capturing closures, @5 vindaloo!, $i does automatic currying.",C[8]],"sn_@w_@g":[C[173],"0.19.1"],"tanoshi-lib":["Tanoshi @1","0.25.3"],"google-adexchangeseller2-cli":[C[174],"2.0.4+20171101"],"ftdi":["A @3 @h &6 libftdi1 @1 @0 FTDI &N",C[4]],"solana-storage-program":["Solana Storage ^U","1.1.13"],"jemallocator":[C[175],C[9]],"dns-message-parser":["Libary to encode @5 decode DNS packets","0.6.0"],"plotters-bitmap":["Plotters Bitmap Backend","0.3.1"],"stop-token":["Experimental cooperative cancellation @0 @J @3","0.6.0"],"languageserver-types":[C[663],"0.54.0"],"etrace":["@Q @1 @s some &o @5 @a to create stackable/traceable errors @0 $r own custom errors","1.1.1"],"backblaze-b2":["Can send ^S requests to @4 backblaze b2 ^S.","0.1.9-2"],"kts-etl":["Extract, transform @5 load @w @t $r local ^K.","0.1.12"],"pretty_assertions":["Overwrite `assert_eq!` @5 `assert_ne!` @7 drop-in replacements, adding colorful diffs.","1.0.0"],"weak-self":["WeakSelf is @d way to have a Weak pointer to yourself","1.0.2"],"drumatech":["a @8 @l has a little $w.","0.1.9"],"&V_io":["A ^4 @0 simplifying saving @5 loading serializable @g to @5 @t &V @z.",C[1]],"hocon":["Reads HOCON $H @z","0.5.2"],"@J_logger":["Asyncronous logger allows $O arbitrary slices to a $g buffer, $i then processed by a writer in it's own &d.","0.3.3"],"cryptsetup-rs":["@3 @h $G @4 libcryptsetup @1, allowing manipulation of LUKS &N in &j",C[459]],"gfx-memory":[C[931],C[8]],"system-deps":["Discover @5 configure @O &c @t declarative &c in Cargo.toml","5.0.0"],"displaythis":["@b(Display)","1.0.23"],"backoff":["Retry $B @7 exponential backoff policy.",C[1]],"rustlearn":["A machine learning @X @0 @3.","0.5.0"],"tc-executor":[C[176],C[7]],"bevy_scene":["@W scene $7 @0 Bevy Engine","0.5.0"],"tremor-value":[C[177],C[9]],"wedpr_l_libsm":[C[764],"0.3.5"],"mongodb-helper":["A mongodb ^t","0.1.7"],"synac":["Synac @c @1 @0 @3","0.6.2"],"riff":["@Q @8 @s @E @0 &3 @5 $O RIFF formatted @z","1.0.1"],"futures-glib":["Spawn @Z on @4 glib event loop",C[2]],"ssmtp":[C[178],"1.0.1"],"morphism":["A $V @0 suspended closure composition in @3","0.4.1"],"wasm-run-proc-macro":[C[902],C[7]],"graphene-sgx":["@3 @x @0 Graphene/SGX","0.3.3"],"tmp1x2":["Platform-&f @3 ^j @0 @4 TMP102 @5 TMP112 digital temperature sensors.",C[5]],"f128":[C[516],"0.2.9"],"jq-sys":["Generated @6 @0 libjq.",C[8]],"it-lilo":["Defines some ^t ^u @0 lifting/lowering IT",C[0]],"ockam_@F":["Core @g of @4 Ockam @1.","0.36.0"],"dft":["$8 @X @s an $1 to compute @4 discrete Fourier transform.","0.5.5"],"bit_$b_@b":["&n $7 @0 @4 `BitCollection` $y.",C[8]],"&J_@1":["Easily bind to @5 load &J &4",C[8]],"bitcoin-amount":["Safe manipulation of bitcoin amounts","0.1.4"],"array-macro":["Array &l elements constructor syntax","2.1.0"],"pdf-extract":["A @1 to extract content @t pdfs","0.6.3"],"httpstatus":["@W a list of ^s response status codes.",C[4]],"amadeus-serde":[C[179],"0.4.3"],"make-cmd":["Enables build.rs scripts to invoke gnu_make @N-independently.",C[0]],"rustc-rayon-core":["Core APIs @0 Rayon - fork @0 &K","0.3.1"],"aspen":["A behavior ^0 @2 in @3",C[1]],"unqlite-sys":["@3 `unqlite` @6.","1.1.0"],"cdg_renderer":["CD+G renderer","0.6.0"],"near-rust-allocator-proxy":["@3 ^l proxy @7 added header",C[1]],"ashpd":["XDG portals @h in @3 @u zbus","0.2.0-alpha-5"],"basehangul":["An @2 of BaseHangul $Q-to-^D @G in @3",C[32]],"canonical_&V":["A Canonical ^k serializer",C[2]],"nanocurrency-peering":["Peering @V @0 @4 Nano cryptocurrency","0.6.0"],"chain-map":["A chain of maps @7 a single view ^d @4 aggregated ^V.",C[0]],"checkers-macros":["^o @0 checkers, a sanity checker @0 global allocations.","0.6.0"],"os-version":["Get @4 operating @O $4",C[3]],"media-types":["Media Types @5 $w &P.",C[3]],"crust":["Peer-to-peer networking @1. ^W reconnect @5 manage connections.","0.32.1"],"gremlin-client":["A @3 @c @0 Apache TinkerPop™",C[7]],"bill":["💸 A minimal @1 @0 $Z invoices. Feel free to review @5 correct it.","0.4.1"],"ssvm-wasi-helper":["A @f @8 to call @4 &s-wasi initialization ^t @Y.","0.1.3"],"cargo-generate":["@S, make me a ^g","0.10.3"],"exar-testkit":["Offers some $w &P to facilitate $S Exar DB's modules",C[0]],"sg3":["A @1 @0 getting $f @t &j SCSI &W (sg3)","0.1.5"],"artifact":["A &H @1 $i allows settings to be specified through @S features.","0.2.4"],"bmfont":["bitmap font config @i","0.3.3"],"lucet-runtime-tests":["Pure @3 @I @0 Lucet $x toolchain (tests)","0.6.1"],"rusty_pool":["Self growing / shrinking `ThreadPool` @2 @n on crossbeam's multi-producer multi-consumer channels @l enables awaiting @4 result of a task @5 offers @J @j","0.6.0"],"genawaiter":["Stackless generators on stable @3.","0.99.1"],"slack-hook2":[C[358],C[13]],"lax":["LAPACK @h ^Y ndarray",C[3]],"libretro-backend":["Idiomatic @3 @x @6 to @4 libretro @x",C[5]],"zipkin":["A @1 @0 collecting timing $f about distributed computations","0.4.2"],"pagerduty":["PagerDuty @x Client",C[3]],"memorydb":["in-$g @2 of hashdb",C[1]],"indenter":["A formatter @h @l indents @4 ^D, designed @0 ^q display impls","0.3.3"],"nom_stl":["A $I STL @i",C[8]],"wgpu":[C[1013],C[16]],"eventfd":["Binding to Linux's eventfd syscall",C[0]],"tzfile":["chrono::TimeZone @2 @u @O tz ^Q","0.1.3"],"rustwide":["Execute $r @V on @4 @3 ecosystem.",C[24]],"vec3":["vec3",C[5]],"rabe-bn":["Pairing cryptography @7 @4 Barreto-Naehrig curve. Update to $d latest rand @5 $6 $R.","0.4.13"],"fuchsia-zircon-sys":["Low-@C @3 @6 @0 @4 Zircon kernel","0.3.3"],"symphonia":["Pure @3 media container @5 audio ^P @1.",C[2]],"ittapi-rs":["@3 @6 @0 ittapi","0.1.5"],"pqcrypto-frodo":["Post-Quantum Key-Encapsulation Mechanism frodo","0.4.9"],"variation":["A $e @e to ^n enum variant &P","0.1.1"],"netlib-src":["$8 @X @s a source of BLAS @5 LAPACK via Netlib.",C[7]],"rsdb":["a flash-sympathetic persistent lock-free B+ ^0, pagecache, @5 log","0.12.1"],"openexr-sys":["cppmm-@n $L @6 @0 OpenEXR 3.0.5",C[12]],"deathframe":["My game &D @k @0 @4 amethyst game $a","0.5.1"],"lalrpop-snap":[C[784],C[72]],"base100":["Encode $r @w ^d emoji","0.4.1"],"showdown":["Pokemon Showdown Client",C[42]],"allegro_audio":["Allegro 5 audio addon @3 @h","0.0.41"],"sd-notify":["Lightweight @8 @0 systemd &t state notifications",C[1]],"rust-s3":["@3 @1 @0 ^p @7 Amazon S3 @5 ^i object ^x APIs","0.27.0"],"futures-stream-select-all-send":[C[217],C[4]],"rusty_ffmpeg":["A @1 @l @s @3 @6 @0 FFmpeg","0.7.0"],"starship":[C[434],"0.58.0"],"sedregex":["Sed-$C regex @1","0.2.4"],"steamworks-sys":["@W raw @6 to @4 steamworks sdk","0.7.0"],"bevy_fly_camera":["A basic flying camera in Bevy","0.7.0"],"visdom":["A html document syntax @5 operation @1, $d APIs similar to jquery, &x to $d @0 &e scraping @5 confused html.","0.4.11"],"type-uuid-derive":["Custom @b @0 @4 $l-uuid @8",C[4]],"google-mapsengine1":["A @q @1 to @o @7 Maps Engine (@9 v1)","0.1.11+20151202"],"pre-commit":["Reads hooks metadata @t Cargo.toml @5 executes on commit","0.5.2"],"erl_ast":["A @3 representation of Abstract Syntax Trees of Erlang modules","0.1.1"],"drone-stm32-map-pieces-1":[C[46],C[24]],"rust-turbo":["Use this @1 to $j a @S $C @D $D @u @4 @D pattern.An @2 @u @f-turbo can be found at &Y://github.com/megamsys/meg.git",C[3]],"harfbuzz-sys":[C[722],"0.5.0"],"http-sig":["@v of @4 IETF draft 'Signing ^s Messages'",C[2]],"burst":["A disassembler, currently supporting x86.","0.0.2"],"prime_&1":["Generate primes, get prime factors, check primality, @5 other useful prime-related @E.","0.3.4"],"fastapprox":["Fast approximate versions of certain @y @l arise in machine learning",C[1]],"aws-creds":["Tiny @3 @1 @0 ^p @7 Amazon IAM credential,s, supports `s3` @8","0.26.2"],"xkb":["Rusty @h $G libxkbcommon.",C[5]],"v8-ng-sys":[C[180],C[1]],"rdb":["Fast @5 ^Z RDB @R $w",C[5]],"wepoll-ffi":["@H @0 @4 wepoll @1",C[4]],"guppy-summaries":["Build summaries @0 Cargo, created by guppy.","0.5.1"],"autograd":["Tensors @5 differentiable $B in @3","1.1.0"],"zia":["Interpreter @p @0 @4 Zia Programming &R","0.5.0"],"uptime_lib":["Multi-@N uptime @1",C[5]],"tetsy-jsonrpc-core":["Tetsy Transport &f @f @2 of ^k-RPC 2.0 Specification.","15.1.0"],"exit_status":["@K ^B-@e @0 enabling @f main @Y to return an exit status @V",C[0]],"figtree":["Figtree is a $0 @G @0 human-useable $H",C[8]],"bevy_ecs":["Bevy Engine's entity component @O","0.5.0"],"libelf":[C[141],"0.0.6"],"$Q_vec_io":[C[50],C[38]],"gol":["Conway's game of life in OpenGL.",C[38]],"gridly":["A @1 @0 managing fixed-size 2D spaces","0.9.0"],"treeculler":["^e to help @7 frustum culling.",C[3]],"azure":["@H to Mozilla's Moz2D @1","0.37.0"],"mdbook-katex":["mdBook preprocessor &S LaTex equations to HTML.","0.2.10"],"rumq-core":["Serializes @5 deserializes mqtt byte ^L",C[206]],"route":["Route URL paths @7 $M parameter extraction",C[3]],"stdext":["Extensions @0 @4 @3 ^E @1 $k.","0.3.1"],"sp-blockchain":["Substrate blockchain $3 @5 $9.","3.0.0"],"nya":["A @d @5 &7 $0 processor.","1.0.0"],"stick":["Platform-&f $n gamepad, joystick @5 flighstick @1","0.12.2"],"enum-as-inner":["A ^B-@e @0 deriving inner field accessor @y on enums.","0.3.3"],"bevy_$l_registry":["@W a $l registry @0 Bevy Engine",C[1]],"bolt-client":["A @c @l sends &y @u @4 Bolt @9.","0.9.1"],"mcp3425":["Platform &f @3 ^j @0 @4 Microchip MCP3425 ADC.",C[1]],"miniaudio":["@H to @4 miniaudio C @1.",C[13]],"$P_sesv2":["^r ^N @0 @3 - Amazon @K Email Service @ 2019-09-27",C[27]],"mod_exp":["Crate @0 doing modular exponentiation efficiently","1.0.1"],"resource":["^o @0 statically including assets in release mode, but dynamically loading them in debug mode.This is primarily intended @0 games, allowing you to both avoid $0 IO in release builds @5 dynamically reload assets in debug mode.","0.5.0"],"intel-mkl-tool":["CLI $w @0 redistributiing Intel(R) MKL","0.2.0+mkl2020.1"],"encoding-index-simpchinese":["Index tables @0 simplified Chinese character encodings",C[461]],"pgetopts":["getopts-$C option @R, a fork of @4 @3 team's getopts.",C[4]],"lapinou":["lapin $T @7 smol","1.1.0"],"zeromq":["A &8 @3 @2 of ZeroMQ",C[8]],"cuda-driver-sys":["@3 $W to CUDA Driver APIs",C[1]],"parquet":["Apache Parquet @2 in @3","6.0.0"],"mpg123-sys":["$8 @X @s @6 to mpg123.","0.6.0"],"rsocket_@f_transport_tcp":["TCP RSocket transport @2.","0.7.2"],"proc-quote":[C[375],C[2]],"frunk":["Frunk @s developers @7 a &a of functional $m &1 $C HList, Coproduct, &W, LabelledGeneric, Validated, Monoid, Semigroup @5 friends.",C[2]],"fax":["Decoder @5 Encoder @0 CCITT Group 3 @5 4 bi-@C image encodings $2 by fax machines TIFF @5 PDF.",C[0]],"interledger-store-redis":["Data store @0 Interledger.js @u Redis",C[2]],"mnl-sys":["Low @C $L @6 to libmnl. A minimalistic user-space @1 oriented to Netlink developers",C[3]],"$P_devicefarm":["^r ^N @0 @3 - ^r Device Farm @ 2015-06-23",C[27]],"glop":["Glue &R @0 OPerations","0.2.5"],"frust":["Functional Programming in @3","0.0.7"],"ckb-fee-estimator":["CKB builtin fee estimator.","0.39.1"],"tract-linalg":[C[94],"0.15.5"],"socketstat":["Get socket $f @5 statistics.",C[0]],"export_cstr":["@W a @e @0 exporting constant, null-terminated, C $p @t dynamic &4","0.0.4"],"validated":["$8 cumulative sibling of `Result` @5 `Either`.","0.1.1"],"hackgt-nfc":["A portable @3 @1 @0 ^p @7 HackGT's NFC badges","0.4.2"],"wagyu-bitcoin":["A @1 @0 $E Bitcoin wallets","0.6.3"],"yolo":["Rusts .yolo()",C[4]],"clierr":["Non-panicking ^q ^a @0 &7 CLI scripts.","0.7.0"],"bno055":["Bosch Sensortec BNO055 9-axis IMU ^j","0.3.3"],"ruspiro-interrupt-macros":["^o $2 to implement interrupt handler.!!@Q @8 is only useful in conjunction @7 @4 `ruspiro-interrupt` @8 @5 shall never be $2 standalone!!",C[9]],"img_^z":["A @d @1 @l @s perceptual hashing @5 difference calculation @0 images.","3.2.0"],"ruroonga":[C[181],"0.6.0"],"$P_sqs":["^r ^N @0 @3 - Amazon @K Queue Service @ 2012-11-05",C[27]],"darwin-libproc-sys":["$L @6 @0 macOS libproc",C[3]],"sp-chain-spec":["Substrate chain configurations @g.","3.0.0"],"jrsonnet-types":["Jrsonnet $l @O definition","0.4.2"],"com_@a_@j":["Support @1 @0 COM @8 @a","0.6.0"],"posix":["posix @h. $d @4 repo @0 now","0.0.2"],"secret-tree":["Hierarchical secret derivation @7 Blake2b",C[2]],"linked_list_^l":["@K ^l usable @0 no_std systems. It builds a linked list @t @4 freed blocks @5 thus needs no additional @w $k.","0.9.1"],"vampirc-uci":["A Universal Chess Interface (UCI) @9 @i @5 serializer. Part of @4 Vampirc chess suite.",C[16]],"rusty-leveldb":["A ^i re-@2 of LevelDB in @3","0.3.6"],"zaif-api":["Zaif @x Wrapper","0.6.0"],"terra-cosmwasm":["@H @0 CosmWasm contracts to call ^d custom modules of Terra Core","2.2.0"],"trust-dns-proto":["Trust-DNS is a $M @5 secure DNS @1. @Q is @4 foundational DNS @9 @1 @0 all Trust-DNS projects.",C[41]],"c_utf8":["UTF-8 encoded C $c @g",C[0]],"groupable":["Easily aggregate groups of ^V @t key-&5 Iterators",C[3]],"miracl_@F":["@3 @V @0 64 bit ^8 @t &Y://github.com/miracl/@F","2.7.0"],"substrate-test-utils-derive":["Substrate ^7 @E @a","0.9.0"],"webpki":["Web PKI X.509 Certificate Verification.",C[74]],"reproto-server":["reproto repository @U","0.3.36"],"eth2_ssz_@g":["@W @g @7 unique properties required @0 SSZ @M @5 Merklization.",C[3]],"find_mountpoint":["find @4 mountpoint (or prefix, on ^6) @0 a provided path","1.0.3"],"comment":["Strip comments @0 &l $m languages","0.1.1"],"sc-basic-authorship":["Basic @2 of block-authoring logic.","0.9.0"],"neovim":["Support @0 $O Neovim plugins in @3.",C[0]],"cryptonote-account":["account @0 cryptonote","0.1.4"],"prototty_&s_input":["Input normalization @0 &s apps","0.27.0"],"alfred":["A @1 @0 $O Alfred workflows.http://www.alfredapp.com","4.0.2"],"bencode-decoder":["A @1 @0 ^P @w in Bencode @G (e.g. torrent @z)","0.0.3"],"hello-world-x-rust-x-library":["Hello World @1 in @3",C[4]],"slog-mozlog-json":["MozLog ^k drain @0 slog-rs",C[0]],"sha1":["Minimal @2 of SHA1 @0 @3.","0.6.0"],"com":["^e @0 ^5 COM Client @5 Servers","0.6.0"],"cexpr":["A C expression @i @5 evaluator","0.6.0"],"hyperfine":["A @D-$D benchmarking ^4","1.12.0"],"ncollide_queries":[C[111],"0.4.1"],"srmap":[C[182],C[49]],"enum-primitive-derive":["enum_primitive @2 @u $e @a to have a custom @b",C[5]],"rls-rustc":["A @d shim $G &K to allow @u save-analysis @7 a stable toolchain","0.5.0"],"serde-value-flatten":["Crate to flatten &o @n on $6.",C[0]],"libnotify":["@3 @6 to libnotify","1.0.3"],"feroxide":["A basic chemistry simulator","1.3.2"],"lc3dbg":["Command-$D LC-3 debugger","1.2.2"],"Inflector":["Adds String @n inflections @0 @3. Snake, kebab, camel, sentence, class, title @5 table cases as well as ordinalize, deordinalize, demodulize, foreign key, @5 pluralize/singularize are supported as both $3 @5 ^X @y acting on String @g.","0.11.4"],"fce-wit-interfaces":["Fluence FCE @m $l ^t @8",C[1]],"tag_$M":["(&T @f-lang/@f#64675) A &K lint $Y to allow tagging of &P @7 arbitary safety flags","0.2.25"],"kbgpg":["GnuPG-compatibility @h @0 Keybase",C[4]],"color_space":["@1 @0 converting $t color spaces @5 comparing colors","0.5.3"],"r2d2_redis_cluster":["Redis cluster @j @0 @4 r2d2 connection pool.","0.1.6"],"uml_@i":["PlantUML @i @0 @f","0.1.1"],"wasm-smith":["A $x ^7 case @B",C[7]],"jail":["FreeBSD jail @1",C[3]],"plugger-macros":["Plugger @a",C[3]],"test-cert-gen":["Utility to ^n certificates @0 tests (e. g. @0 TLS)","0.7.0"],"rsvg":["@3 @6 @0 @4 Rsvg @1",C[2]],"libfuzzer-sys":["A @h $G LLVM's libFuzzer @I.","0.4.2"],"assemble_app":["Bootstrap @1 @0 &Y://assemble.app","0.1.36"],"nv-xml":["A very light weight xml @1","0.1.3"],"ghash":["Universal ^z &6 GF(2^128) useful @0 constructing a Message Authentication Code (MAC),as in @4 AES-GCM authenticated encryption cipher.","0.4.4"],"lber":["An ASN.1/BER @i/encoder @n on nom",C[1]],"typescriptify-derive":["Typescriptify-&n Macro @2 @0 $Z Typescript Interfaces @t Structs via Custom-&n (only real &o so far)","0.1.5"],"inotify-sys":["inotify @6 @0 @4 @3 $m @L","0.1.5"],"extfmt":["Extended formatting options @0 commmon @g","0.1.1"],"actix-service":["Service $y @5 combinators @0 representing $n request/response $B.","2.0.1"],"natord":["Natural ordering @0 @3","1.0.9"],"mikktspace":["Mikkelsen tangent space $1",C[3]],"triggered":["Triggers @0 one $z events $t tasks @5 threads",C[4]],"age":["[BETA] A @d, secure, @5 modern encryption @1.","0.7.0"],"jid":["A @8 $i @s a Jid struct @0 Jabber IDs.","0.9.2"],"cfile":["@3 @6 to C *FILE ^L","0.5.1"],"ether":["@p @0 @R @5 manipulating ^9 @w, packet captures.","0.1.4"],"lotsa":["Execute lots of $B spread &6 any &a of threads.","0.1.9"],"ego-tree":["Vec-backed ID-^0","0.6.2"],"epaint":["Minimal 2D ^T @1 @0 GUI work",C[23]],"deqp-runner":["A VK-GL-CTS/dEQP @h ^U to parallelize it across CPUs @5 report results against a baseline.",C[13]],"awesome-bot":["An awesome @k to $j Telegram bots up to telegram-bot @1.",C[3]],"ethsign":["A @1 to read ^k keyfiles @5 sign Ethereum stuff.",C[7]],"cw-controllers":["&O controllers we can reuse in many contracts",C[12]],"git-odb":["Implements various git object databases",C[88]],"nameof":["@W a @3 @e to determine @4 $c name of a $W, $l, const, or @Y.","1.2.1"],"futures-select-macro-preview":["$8 `select!` @e @0 waiting on &l different `Future`s at once @5 ^a @4 first one to @q.",C[19]],"shift_or_euc":["Detects among @4 Japanese legacy encodings",C[0]],"google-freebase1_sandbox":["A @q @1 to @o @7 freebase (@9 v1sandbox)","0.1.11+20150715"],"fixed-map":["A fixed map where ^x layout is calculated by a $e @e.","0.7.2"],"capstone-sys":["System @6 to @4 capstone disassembly @1",C[24]],"zip-longest":["Take two iterators @5 yield pairs until both are exhausted.","0.1.7"],"lspower":["A ^O @k @0 ^5 LSP servers.","1.1.0"],"rustc-std-workspace-std":["Workaround @0 rustbuild","1.0.1"],"peek-poke-derive":["&n @e @0 peek-poke.",C[5]],"mr_splashy_pants":["Very incomplete @3 @6 @0 @4 Reddit @x","0.1.38"],"contact":["A highly portable REST @1 @0 Cosmos blockchains","0.4.2"],"zju-jw-parser":["浙江大学教务网网页解析库","0.1.5"],"$j_timestamp":["@K ^B-@e to ^n a $j timestamp $c as a const",C[0]],"forecast":["A @3 @c @0 @4 Dark Sky @x.","3.0.0"],"intervalier":["Interval events @7 ^a notifications",C[2]],"defer-drop":["Defer dropping large @g to a background &d","1.2.0"],"civet-sys":["&M @6 to @4 libcivetweb @1",C[1]],"tari_bulletproofs":[C[266],"4.0.0"],"kurbo":["A 2D curves @1","0.8.2"],"async-macros":["^o @0 @J-std.","2.0.0"],"sccache":["Sccache is a ccache-$C ^4. It is $2 as a ^2 @h @5 avoids compilation when possible, storing a cache in a remote ^x @u @4 S3 @x.","0.2.15"],"fireplace_lib":["Modular wayland window &F @1","3.0.2"],"tokio-bus":["A message bus @7 $v @j",C[4]],"lib3h":["$8 lib3h p2p communication @f @1.","0.0.42"],"rhizome":["A convenient hierarchical &m-extraction container. Supports lazy provision, shadowing @5 $S/$H $d cases.","0.0.1"],"couch_rs":[C[857],"0.8.32"],"eva":["Calculator REPL similar to bc(1)","0.2.7"],"tokio-either":["Either @0 Tokio","0.1.4"],"allegro_color-sys":["Allegro 5 color addon @3 $W","0.0.41"],"eggtimer":["Timer @g @0 measuring $z in a ^U in different ways","0.5.0"],"rustc-llvm-proxy":["Dynamically proxy LLVM calls ^d @3 own &J @1",C[3]],"multi_reader":["MultiReader - a composite reader @2.",C[0]],"canapi":["Define REST APIs @5 share them $t @c @5 @U",C[3]],"futures-stable":[C[529],C[5]],"bolt-proto":["Bolt @9 $9: ^V, &y, @5 @M / &9.",C[13]],"solana-poh":["Solana PoH","1.8.1"],"google-pagespeedonline2":[C[183],"2.0.8+20191206"],"ritual_$j":[C[1019],C[2]],"dl_^S":["$8 easiest, simplest @5 safest way to load dynamic (&J object) &4 @t @3!",C[2]],"nftnl":["Safe $F @0 libnftnl. @W low-@C userspace $X to @4 in-kernel nf_tables subsystem","0.6.1"],"rio_^S":["&O @w $k @0 RDF formats parsers @5 serializers","0.6.1"],"stm32g4":["Device @j $R @0 STM32G4 &N",C[24]],"libloadorder":["A cross-@N @1 @0 manipulating @4 load order @5 active status of plugins @0 @4 Elder Scrolls @5 Fallout games.","11.4.1"],"async-ctrlc":["Async @h of `ctrlc`","1.2.0"],"antlr-rust":["ANTLR4 @I @0 @3",C[3]],"lazy-panic":["Lazy ^u to customize panic &y","1.0.0"],"Lattice":["A @K Window Manager @0 Functional Reactive Programming in @3","0.4.5"],"mumble-protocol":["@3 @2 of @4 Mumble @9","0.4.1"],"$P_meteringmarketplace":["^r ^N @0 @3 - AWSMarketplace Metering @ 2016-01-14",C[27]],"verbatim":["@W an ^h @8 @0 constructing verbatim paths.","0.1.1"],"gnudbm":["Ergonomic @6 @0 gdbm","0.2.5"],"radiotap":["A @i @0 @4 radiotap capture @G.",C[508]],"^T_buffer":["A buffer $i can be $2 as a render target @0 Piston's ^T @1. @Q buffer can be loaded @t @5/or saved to a $0 on disk. @Q allows @0 things $C screenshots in games.","0.7.7"],"redis-cluster":["Interface to Redis Cluster","0.1.4"],"^z_ring":["Consistent Hashing @1 @0 @3",C[3]],"kmod":["@H to libkmod to manage linux kernel modules",C[2]],"soa_@b":["Automatic Struct of Array ^1",C[13]],"arraymap":["Adds a $y to map @y &6 arrays","0.1.1"],"flexi_logger":["An &x-to-configure @5 flexible logger @l writes logs to stderr or stdout @5/or to @z. It allows custom logline formats, @5 it allows changing @4 log specification at @I. It also allows defining additional log streams, e.g. @0 alert or security &y.","0.19.5"],"chirpstack_^S":["ChirpStack Protobuf / gRPC @x $h.","3.11.1"],"advancedresearch-tree_mem_sort":["An in-$g topological sort $1 @0 trees @n on Group Theory",C[3]],"asciicast":["A @1 @0 @4 Asciicast $0 @G $2 by Asciinema.",C[8]],"orml-tokens":["Fungible tokens ^F @l implements `MultiCurrency` $y.",C[2]],"td_revent":["Event @1 @0 @3, Async IO similar to libevent",C[8]],"memmap":[C[184],"0.7.0"],"implot-sys":["Raw $L @6 to implot","0.6.0"],"revault_tx":["Bitcoin Script descriptors @5 transactions creation routines @0 Revault",C[1]],"guid_win":["^6 GUID/CLSID/IID $c @5 $Q @M",C[3]],"compute":["A @8 @0 statistical computing.","0.2.3"],"gvr-sys":["@3 @6 @0 Google VR ^N","0.7.2"],"opusic-sys":[C[660],"0.3.6"],"exonum-btc-anchoring":["An Exonum &t @l @s anchoring to Bitcoin blockchain.","1.0.0"],"drone-stm32-map-periph-tim":[C[46],C[24]],"nsvg":["A @d SVG @i @5 rasterizer @u NanoSVG","0.5.1"],"unic-langid":[C[29],"0.9.0"],"mqtt3":[C[917],"0.1.4"],"amaurymartiny-async-smtp":["SMTP @c",C[0]],"unhtml":["A magic html @i",C[7]],"alloc_@O":["NO-STD,@0 Cortex-M @n systems,simply retarget alloc_system to malloc/realloc/free",C[4]],"lyon_path_iterator":[C[185],"0.9.0"],"&V":["^k @2 in @3","0.12.4"],"daemon-engine":["A ^t @X @0 $O unix @f daemons @7 IPC @n clients","0.6.0"],"holochain_locksmith":["&w @0 mutex deadlock diagnosis",C[18]],"@F_affinity":["Manages CPU affinities","0.5.10"],"base58-monero":["@p @7 @j @0 $5/^P Monero base58 $p.","0.3.1"],"tectonic":["A modernized, @q, embeddable TeX/LaTeX $a. Tectonic is forked @t @4 XeTeXextension to @4 classic “Web2C” @2 of TeX @5 uses @4 TeXLive distributionof @j @z.",C[7]],"array-ops":["Automatic method @T @0 array @w @g",C[0]],"inkwell":[C[1071],"0.1.0-llvm8sample"],"gstreamer-rtp-sys":["$L @6 to libgstrtp-1.0",C[26]],"ockam_node_&U":["Ockam node &U proc_macro.","0.25.0"],"image-utils":["Image &u @E",C[3]],"vterm-sys":["$L @6 to libvterm",C[0]],"guerrilla":["Guerrilla (or Monkey) Patching in @3 @0 (unsafe) fun @5 profit.","0.1.4"],"xml-rs":["An XML @1 in ^X @3","0.8.4"],"saltlick":["A @1 @0 encrypting @5 decrypting $0 streams @u libsodium","0.4.1"],"aloft":["@K @1 @0 &2 @7 winds aloft @w @t NOAA","0.3.1"],"squark-stdweb":["Squark @I implemiontion @0 &e browser @7 @u stdweb","0.5.0"],"one_err":["OneErr to rule them all","0.0.5"],"wlroots-sys":["Bindgen ^8 low-@C wlroots @h",C[2]],"log":["A ^O &H facade @0 @3","0.4.14"],"shlex":["Split a $c ^d shell words, $C Python's shlex.","1.1.0"],"libretro-sys":["Raw libretro @x @6 @0 @3","0.1.1"],"cfg-if":["A @e to ergonomically define an item depending on a large &a of #[cfg]parameters. Structured $C an if-else chain, @4 first matching branch is theitem @l gets emitted.","1.0.0"],"dprint-plugin-typescript":["TypeScript @5 JavaScript @V formatter.","0.58.1"],"push-trait":["Push $y @0 collectons.","0.6.0"],"sbrain":["A @1 @0 evaluating Semantic Brain, a minimalistic multiparadigm $m @L optimized @0 genetic $m @P.","0.99.0"],"build-info":["Collects $j-$f of $r @3 @8.","0.0.24"],"^0_magic_mini":[C[186],"3.0.2"],"substrate-prometheus-endpoint":[C[187],"0.9.0"],"indexing":["Sound unchecked indexing @u “generativity”; a $l @O approach to indices, pointers @5 ranges @l are trusted to be in bounds.","0.4.1"],"unic-common":["UNIC — &O ^e","0.9.0"],"blake2b-ref":["A `no_std` BLAKE2B @2.",C[1]],"rust-flatten-json":["Tiny @3 @1 @0 flattening ^k @5 ^k $l inference",C[3]],"tdo-export":["$8 export ^F @0 tdo",C[5]],"i18n-embed":["Traits @5 @a to conveniently embed localization assets ^d $r $U $Q or @1 in order to localize it at @I.",C[15]],"cargo-cacher":["@S-cacher is a crates.io proxy @l will proxy requests made when $K a @X @7 Cargo","1.2.5"],"imag-store":["Part of @4 imag @F ^m: imag-store @D",C[12]],"signal-simple":["@p to handle @5 send @O signals","0.1.1"],"d3d11-sys":["Contains @Y $h @0 @4 ^6 @x @1 d3d11. See winapi @0 @g @5 constants.",C[3]],"constmuck":["const-equivalents of bytemuck @y, @5 more",C[1]],"duckscript":["@K, extendable @5 embeddable scripting @L.","0.7.1"],"sgxs-tools":["^e @0 ^p @7 @4 SGX ^L @G.","0.8.3"],"rusty_pipe":["A slightly better router @0 @4 Iron @k","0.1.5"],"hdd":["hdd: instruments @0 querying ATA @5 SCSI disks","0.10.3"],"git-state":["Probe git repository state",C[0]],"erased_$6_&V":["Type-erased Formatter $y @0 serde_json::ser::Formatter","0.1.3"],"rustls-native-certs":["rustls-&8-certs allows rustls to $d @4 @N &8 certificate store","0.6.0"],"ffmpeg-sys":[C[515],"4.3.3"],"owasm-abi":[C[188],C[1]],"gtypes":["Fundamental $l $h @0 GLib-@n APIs.",C[3]],"discord_game_sdk":["Safe @h @0 @4 Discord Game ^N","1.0.1"],"$P_comprehend":["^r ^N @0 @3 - Amazon Comprehend @ 2017-11-27",C[27]],"crossterm_^u":["&O logic $2 by @4 crossterm $R.",C[2]],"google-androiddeviceprovisioning1-cli":[C[189],C[207]],"solana-validator":[C[58],"1.8.1"],"mockers":["Mocking @1","0.21.0"],"webauthn-rs":["Webauthn Framework @0 @3 Web Servers",C[1]],"actix-http":["^s $9 @0 @4 Actix ecosystem","3.0.0-beta.11"],"gcrypt":["Libgcrypt @6 @0 @3","0.7.0"],"i3ipc-types":["@p containing all @4 @g needed to communicate @7 i3, along @7 their $6 @T @5 @T of many std $3",C[28]],"chardet":["@f $4 of chardet","0.2.4"],"tectonic_xetex_layout":["XeTeX's font loading @5 layout @m encapsulation, as a @8.","0.1.1"],"cargo-fetcher":["🎁 Experimental alternative to @S fetch",C[16]],"owo-colors":["Zero-allocation $o colors that'll make people go owo","3.0.1"],"lucetc":["Fastly's $x to &8 @V ^2","0.6.1"],"GSL-sys":[C[190],"3.0.0"],"&z_@i":["Http request/response @i @0 @f","0.0.2"],"block":["@3 @m @0 Apple's C @L ^h of blocks.","0.1.6"],"cortex-m-rt-macros":["Attributes re-exported in `cortex-m-rt`","0.7.0"],"shell":["&W shell @j. Also incudes @j @0 colors @5 ^q printing.",C[9]],"incrust":["Template $a &X by Jinja2","0.2.15"],"twelf":["Twelf is a $H solution @0 @3 including 12-Factor @j. It is designed @7 layers in order to configure different sources @5 formats to $j $r $H. $8 main goal is to be very @d @u a ^B @e.","0.1.7"],"rust-assimp":["A @f @h @0 assimp @4 open asset import @1","0.0.23"],"gcmap":["HashMap $i removes entries when an external marker is dropped","0.1.4"],"rubbl_casatables":["Interfacing to @4 CASA table @G within @4 Rubbl @k.",C[2]],"persistent":["A set of &G @0 sharing @U-global @w in Iron.",C[2]],"tonic-health":["Health Checking ^F of `tonic` gRPC @2.","0.5.0"],"twitter_^D_config":["Configuration @0 twitter-^D in @3.",C[3]],"pam-sys":["$L &r @0 @4 &j Pluggable Authentication Modules (PAM)","1.0.0-alpha3"],"immi":["Immediate mode user @m toolkit.","1.0.4"],"atsamd21g18a":["Peripheral $X @x @0 ATSAMD21G18A $s (^8 @u svd2rust)","0.7.1"],"mio_gloo_$0":[C[648],"0.1.1"],"confusion_matrix":["Confusion matrix @2 @0 storing results @t a classification experiment @5 ^R statistical $f.","1.0.0"],"duniter-wotb":["Deprecated @8. Use runiter-wot.","0.8.0-a0.7-deprecated"],"parse_arg":["Traits @5 @T @0 @R @D-$D arguments.","0.1.4"],"svg":["$8 @X @s an SVG composer @5 @i.",C[13]],"radiant-rs":["Thread-$M @3 sprite &S $a @7 a &E @x @5 custom shader @j","0.13.1"],"typeracer":["A $o typing game. Race to see @4 fastest $z you can get!","2.0.8"],"pastel":["A @D-$D ^4 to ^n, analyze, convert @5 manipulate colors","0.8.1"],"nat_traversal":["NAT traversal @E.","0.4.1"],"contour":["Compute isorings @5 contour polygons (@u marching squares $1).",C[2]],"rocket-mongo-file-center-raw-response":["@Q @8 @s a response struct $2 @0 responding raw @w @t @4 File Center on MongoDB @7 **Etag** cache optionally.",C[7]],"acpica-sys":["@H to @4 ACPI Component Architecture","0.0.4"],"swc_ecma_dep_graph":["Dependency graph @0 @4 ecmascript","0.45.0"],"const_env":[C[191],C[4]],"&x_complex":["Complex ^M @8","0.4.1"],"actix-web":["Actix Web is a powerful, pragmatic, @5 extremely $I &e @k @0 @3","4.0.0-beta.10"],"hyperx":["Hyper's typed header ^F, eXtracted @5 improved","1.3.0"],"tinyvec_@a":["Some @a @0 tiny containers",C[0]],"sc-consensus-babe-rpc":[C[458],"0.9.0"],"byte_sha":["Performs SHA256 on a Vec @5 returns a Vec as @4 result. Useful @0 cryto curencies @5 purhapse other things.","1.0.1"],"musical_keyboard":["A &7 lib @0 converting keyboard input ^d musical notes.","0.6.0"],"qr-encode":["A @d CLI QR Code @B","0.1.9"],"boiler-generated":["Generated @z @0 @4 boiler steam connection @1.",C[0]],"imap-proto":["IMAP @9 @i @5 @w $k",C[23]],"swc_ecma_loader":["General ecmascript loader $2 @0 transforms",C[88]],"ddsfile":["DirectDraw Surface $0 @G @i/composer",C[2]],"checked_@D":["^h to `std::^I::Command` $i adds a &Z/status considering @4 programs `ExitStatus` @0 @4 returned Result",C[1]],"cargo-unleash":["Tooling to manage releasing of $R in massiv workspaces/monorepos","1.0.0-alpha.12"],"vsock":["Virtio socket @j @0 @3","0.2.4"],"pe":["Portable Executable (PE) @R @1","0.1.1"],"parity-rocksdb":["A @3 @h @0 Facebook's RocksDB embeddable ^Q.","0.5.1"],"trans-derive":["Serialization @9 @0 inter-@L communication (@b @a)",C[818]],"tty":["Create @5 $d pseudoterminal","0.5.0"],"netlify_lambda_attributes":[C[236],C[3]],"addchain":["Generate addition chains",C[3]],"opaque_typedef":[C[192],"0.0.5"],"roperator":["Easily create Kubernetes Operators @7 @3",C[1]],"ws2812-timer-delay":["Timer-@n ^j @0 ws2812 leds",C[1]],"bspl":["bspl is a REPL @0 practising bitwise $B","1.0.0"],"async-std":["Async $4 of @4 @3 ^E @1","1.10.0"],"jack-sys":["Low-@C $W to @4 JACK audio @x.",C[8]],"miette-derive":["&n @a @0 miette. Like `thiserror` @0 Diagnostics.","3.2.0"],"dissect":["Logstash &X dissect extractor",C[3]],"wasmtime-runtime":[C[123],C[53]],"python-launcher":["$8 Python launcher @0 Unix","1.0.0"],"matchers":["Regex matching on character @5 byte streams.",C[0]],"assert2":["assert!(...) @5 check!(...) @a &X by Catch2","0.3.6"],"anevicon_@F":["$8 most powerful UDP-@n load @B, $A in @3","0.5.3"],"slog-env-cfg":["Opinionated slog drains &I, configurable via env vars.","0.6.0"],"google-customsearch1-cli":[C[193],C[63]],"source-span":["Source @V mapping @5 display @E.","2.7.0"],"redjubjub":["A standalone @2 of @4 RedJubjub signature scheme.",C[2]],"ledger-apdu":[C[876],C[7]],"swc_css_ast":["AST $h of css",C[74]],"fs2":[C[398],"0.4.3"],"oasis-rpc":["Oasis RPC IR @5 @E",C[2]],"wiggle":["Runtime components of wiggle @V @B",C[53]],"file-utils":["Convenience &r @0 $0 I/O, mostly $G $Q $B.","0.1.5"],"filetype":["@Q @8 @s a basic ^h to `std::fs::File`: it defines a method $i returns @4 file's $l (on *nix systems).",C[3]],"dgraph":["A @f @c @0 Dgraph ^Q",C[2]],"tensorflux-sys":[C[194],C[1]],"hazy":[C[721],"0.1.1"],"gitsync":["@p @l facilitates monitoring Git repositories @0 changes. Could enable GitOps","0.1.6"],"iced_glutin":["A glutin @I @0 Iced",C[3]],"code-minimap":["A high $J @V minimap @B","0.6.1"],"auto_enums_@b":[C[211],"0.7.12"],"cql-rust":["Driver @0 @4 Cassandra CQL Binary ^c v2","0.0.3"],"length_aware_paginator":["Add $7 to diesel query &I to return length aware paginated response",C[1]],"ra_ap_ide_completion":["TBD","0.0.79"],"rusty-money":["Parse, @G @5 perform calculations @7 money safely.","0.4.1"],"pathfinder_renderer":["A GPU-accelerated vector ^T @5 font renderer","0.5.0"],"stm32f407g-disc":["Board @j @8 @0 @4 STM32F407G DISCOVERY microcontroller board","0.4.1"],"@t_hashmap":["Defines a $e @e to $j a struct @t a HashMap containing ^V @0 its fields",C[0]],"haproxy-api":["HAProxy 2.x Lua @x",C[1]],"font":["$8 @X @s a font toolbox.",C[2]],"$P_cloudformation":["^r ^N @0 @3 - ^r CloudFormation @ 2010-05-15",C[27]],"astro":["Advanced ^3 @0 astronomy","2.0.0"],"rpmalloc-sys":["Unsafe $L @6 to rpmalloc C @1","0.2.2+1.4.1"],"gcp_auth":["Google cloud @N (GCP) authentication @u default @5 custom &t accounts","0.5.0"],"crev-recursive-digest":["@p ^5 recursive digest @0 filesystem directories","0.5.0"],"libccp":["@3 @6 @0 libccp, a @1 @0 ^5 CCP-^i datapaths","1.1.1"],"crony":["@K cron runner @l spawns another &d to run $r cron jobs",C[8]],"kg-tree":["&W object ^0 @7 Opath query @L, similar to XPath.",C[5]],"imager":["Automated image ^C; optimizes @4 ^C @u various heuristics.",C[9]],"sassers":["A Sass ^2 in @3","0.13.5-h28"],"pulls_since":["Micro ^4 to print Markdown formatted list of pull requestsclosed on a given github repository since given date","0.4.1"],"tmcl":["Trinamic Motion Control &R","0.1.0-beta0"],"rustversion":[C[662],"1.0.5"],"debt64":["An @2 of Base64 - &Y://en.wikipedia.org/wiki/Base64","6.0.0"],"rump":["Text snippets on @4 @D $D.",C[0]],"libxm-sys":["Raw libxm @6 @0 @3","0.0.2"],"v-common-module":[C[195],"0.1.50"],"sentry-tracing":["Sentry $T @0 &g @5 &g-subscriber $R.",C[88]],"random-pick":["Pick an element @t a slice randomly by given weights.","1.2.14"],"substring":["A substring method @0 $c @g.","1.4.5"],"woothee":["user-agent $p @i","0.12.1"],"aws-nitro-enclaves-cose":["@Q @1 aims to provide a $M @3 @2 of COSE, @7 COSE Sign1 currently implemented.",C[1]],"rustic-io":["Websocket @U @1 @0 event @n messaging","0.2.9"],"wat":["@3 @i @0 @4 $x Text @G, WAT","1.0.40"],"conduit-json-parser":["Middleware to parse incoming ^k requests @0 conduit",C[7]],"holochain_conductor_lib_^S":["holochain conductor lib ^S",C[18]],"dicom-encoding":["DICOM $5 @5 ^P $9",C[2]],"amqpr-codec":["Defining AMQP codec",C[9]],"recoreco":["Fast item-to-item recommendations on @4 @D $D.","0.1.9"],"pathfinder_content":["Vector path @E @0 @4 Pathfinder &S @1","0.5.0"],"pallet-utility":["FRAME @E &v","3.0.0"],"compiletest_rs":["$8 compiletest $w @t @4 @3 ^2 as a standalone $S harness","0.7.1"],"hungarian":["A @d, $I @2 of @4 Hungarian (Kuhn-Munkres) $1.","1.1.1"],"backtracking_iterator":["A @d @2 of a ^G iterator @7 an item history, capable of backtracking @5 forgetting.","0.4.4"],"simple-signal":["Easy unix signals handler @0 @3 projects","1.1.1"],"lzma-rs":["A codec @0 LZMA, LZMA2 @5 XZ $A in ^X @3",C[3]],"cdg":["CD+G @i",C[0]],"shamirsecretsharing":["Shamir secret sharing @1 @0 @3","0.1.5"],"projector":["Project ^A CLI","0.5.0"],"ejdb-sys":["&M @6 @0 libejdb",C[1]],"bevy_prototype_lyon":["Draw 2D shapes @5 paths in @4 Bevy game $a.","0.3.1"],"gitignore":["@v of .gitignore $0 @R @5 glob $S in @3.","1.0.7"],"proj":["High-@C @3 @6 @0 @4 latest stable $4 of PROJ","0.24.0"],"infrared":["Infrared remote control @1",C[15]],"atk":["@3 @6 @0 @4 ATK @1",C[24]],"azure_iot_sdk":["Client @1 @0 connection &N to Azure IoT Hub",C[7]],"lstsq":["Return @4 least-squares solution to a linear matrix equation",C[3]],"pdf_@b":["^t @0 pdf-rs.","0.1.22"],"log-derive":["$q ^o @0 &H @4 result @5 inputs of a @Y","0.4.1"],"rustless":["Rustless is a REST-$C @x micro-@k @0 @3.",C[13]],"kv":["An ^b key/&5 store @0 @3",C[74]],"png_pong":["A ^X @3 PNG/APNG encoder & decoder","0.8.2"],"$6_$l_name":["lookup name of $l @0 any struct or enum @l derives $6 Serialize",C[3]],"mlnx-ofed-libibverbs-sys":["Low-@C $L @6 to @4 C-@1 Mellanox OFED libibverbs","0.0.6"],"derp":["DER &B (@5 Writer)","0.0.14"],"sawtooth":[C[289],"0.6.7"],"fc-rpc-core":["RPC $3 of Ethereum.","1.0.0"],"merkle-cbt":["A @1 @0 $E ^Z Merkle ^0 @5 combined Merkle proof @n on @q $Q ^0",C[1]],"torrent-name-parser":["Torrent name metadata @i","0.6.3"],"randomize":["@K @5 minimalist randomization @1.","4.0.0-alpha.3"],"lazy-regex-proc_@a":["^B @a @0 @4 lazy_regex @8","2.2.2"],"grid_search_cardinal_$u":["Reusable components @0 $d ^5 uniform-cost cardinal grid-searching ^3","0.3.1"],"sendfile":["Sendfile is a @h $G @4 sendfile(2) @O call.",C[1]],"probor":["A (prototype of) @M @9 on top of CBOR @l @s protobuf-$C $7","0.3.1"],"maybe-unwind":["A @h of catch_unwind @l also captures @4 panic $f.","0.3.1"],"r18n":["Internationalisation @1 @0 @3","0.0.2"],"timed":["^o to $z @Y execution",C[5]],"x25519-dalek-fiat":[C[607],C[0]],"kickstart":["A @d way to get started @7 a ^g by scaffolding @t a template powered by @4 Tera $a",C[1]],"ruspiro-lock":["Providing Spinlock, Semaphore @5 mutual exclusive @w $X @0 cross coreusage on Raspberry Pi.","0.4.2"],"scrawl":["Opens a user's preferred ^D editor so they can edit @w inline @5 saves @4 result to a String. Useful @0 interactive CLI @P.","1.1.0"],"actix-web-location":["A extensible @8 to provide location determination @0 actix-&e, @u GeoIP or other techniques",C[2]],"osaka-macros":[C[253],"0.2.10"],"llvm-alt":["A @h @0 LLVM, a powerful @1 @5 toolkit @0 compilers","0.5.0"],"bevy-inspector-egui":["Inspector $Y @0 @4 bevy game $a","0.6.1"],"concrete-csprng":["Cryptographically Secure PRNG $2 in @4 FHE concrete @1.","0.1.8"],"net-utils":["Network $w @1 $i @s @c connection pool @0 TCP/SSL connctions","0.0.5"],"proc-macro2":["A substitute @2 of @4 compiler's `proc_macro` @x to decoupletoken-@n &4 @t @4 $e @e $d case.","1.0.32"],"bitmaps":["Fixed size boolean arrays","3.1.0"],"rocket-slog":["@W a fairing @0 $d in rocket.rs @P @l allows @4 user to $d a slog `Logger` in place of @4 built-in rocket.rs &H @O",C[2]],"irsc":["A ^O @1 @0 $K IRC bots.",C[3]],"rustengine":["@3 bitboard multi variant uci chess analysis $a.","1.0.60"],"git-mit-relates-to":["Set Relates-to trailer.","5.11.6"],"target-spec":["Evaluate Cargo.toml target specifications","0.9.0"],"microservices":[C[636],C[196]],"tokio-timer":[C[817],C[197]],"dasp_signal":["An iterator-$C @x @0 audio PCM DSP streams.",C[16]],"rdev":["Listen @5 send keyboard @5 mouse events on ^6, &j @5 MacOS.","0.5.1"],"rustneat":["@v of NeuroEvolution of Augmenting Topologies NEAT &z://nn.cs.utexas.edu/downloads/papers/stanley.ec02.pdf @7 a Continuous-Time Recurrent Neural Networks",C[5]],"r2d2_sqlite":["SQLite @5 SQLCipher @j @0 @4 r2d2 connection pool",C[95]],"solana-ledger-tool":[C[58],"0.20.5"],"libp2p-deflate":[C[249],C[172]],"dinghy-lib":[C[895],"0.4.62"],"drone-stm32":["Drone @0 STM32.","0.8.3"],"ccsds_primary_header":["@v of @4 CCSDS Primary Header @0 space @P",C[23]],"peroxide":["@3 comprehensive scientific computation @1 contains linear algebra, numerical analysis, statistics @5 machine learning &1 @7 farmiliar syntax","0.30.9"],"stringprep":["An @2 of @4 stringprep $1",C[4]],"mini_paste-proc_@e":["See &Y://docs.rs/mini_paste",C[38]],"downloader":["A @d way to download things via ^s/HTTPS","0.2.6"],"lockless":["Composable, lock-free, allocation-light @w $k",C[3]],"amadeus-core":[C[179],"0.4.3"],"wascc-host":["$x Secure Capabilities Connector (waSCC) Host Runtime",C[24]],"gauss":["Sono bello.","0.5.0"],"tracing-json":["Tracing Structured Json Logging Adapter",C[0]],"memrange":["A @d @8 @l represents address ranges in $g images","0.1.3"],"libp2p-dns":[C[337],C[172]],"env-var":["^o ^R easier $X to ^K variables in @f.","1.0.1"],"wgpu-types":[C[301],C[16]],"boring":[C[198],"1.1.6"],"cargo-mod":["A @S sub @D @0 $E modules in $r ^g. Reducing $z spent $O boilerplate.","0.1.5"],"mmarinus":["A $M mmap @2",C[5]],"iota-lib-rs":["A @f @2 of @4 IOTA Client @x","0.4.1"],"edi":["&B @0 X12 EDI @z",C[5]],"ears":["Easy @3 @x to play audio @u OpenAL",C[7]],"scanner-rust":["@K ^D scanners $i can parse primitive @g @5 $p @u UTF-8 or ASCII.","2.0.15"],"dispatch":["@3 @h @0 Apple's Grand Central Dispatch.",C[3]],"ipmpsc":["Inter-^I Multiple Producer, Single Consumer Channels","0.5.1"],"cargo-nono":["Detect (possible) no_std compatibility of $r @8 @5 &c","0.1.9"],"libgerrit":[C[1017],"0.2.8"],"input":["libinput @6 @0 @f","0.7.0"],"pyo3-built":["Expose $j variables obtained @7 built as a PyDict","0.4.6"],"iron-drain":["Iron &G @l makes sure requests are read in full before reusing sockets",C[4]],"crowbook-intl-runtime":["Runtime @y @0 crowbook-intl",C[0]],"cpu-time":["Small @8 @l @s CPU $z measurement.","1.0.0"],"volatile":["A @d volatile @h $l","0.4.4"],"uniffi_$j":["a multi-@L @6 @B @0 @f ($j script &w)",C[24]],"cala":["Make portable apps @5 video games in @3!","0.9.0"],"easygpu-lyon":["A 2d ^T pipeline @0 easygpu utilizing lyon","0.0.14"],"filedescriptor":["More ergonomic &r $G RawFd @5 RawHandle","0.8.1"],"snow":["A ^X-@f @2 of @4 Noise ^c Framework",C[7]],"cpp-typecheck":["Type check a C++ source $0 @7 a clang compilation ^Q","0.5.0"],"tomlenv":["Manage $r ^K $H @7 TOML","0.4.1"],"chalk-rust-ir":["A @1 @l defines @4 IR @0 @3 concepts $C $3 @5 impls.",C[13]],"immutable-chunkmap":["A $I immutable map @5 set @7 batch insert @5 update &P, COW $B, @5 big O ^Z @T of set @5 merge $B","1.0.1"],"sunrise":["Sunrise @5 sunset calculator","1.0.0"],"marine-module-info-parser":["Fluence Marine Wasm ^F info (manifest @5 $4) @i",C[8]],"lp-modeler":["A linear $m modeller $A in @3. @Q ^S helps to &0 LP model @5 $d solver such as CBC, Gurobi, lp_solve, ...","0.5.0"],"esl01-minibytes":["Shared reference-counted bytes @7 zero-copy slicing @j.",C[3]],"csfml-system-sys":["@H to csfml-@O","0.6.0"],"tess2-sys":["$L $h @5 $j script @0 libtess2","0.0.1"],"sn_fake_clock":[C[199],"0.4.14"],"nvpair-sys":["@H to libnvpair.so (nvpair & nvlist)",C[2]],"unicode-security":["Detect possible security problems @7 &h usageaccording to &h Technical Standard #39 rules.","0.0.5"],"odbc-safe":["Deprecated. Try odbc-^S instead.","0.6.0"],"google-pubsub1-cli":[C[680],C[200]],"graft":["&V ^0 &I","0.1.7"],"range-collections":["Sets @5 maps of ranges, backed by smallvec",C[8]],"user-agent-parser":["A @i to get @4 product, OS, device, cpu, @5 $a $f @t a user agent, &X by &Y://github.com/faisalman/ua-@i-js @5 &Y://github.com/ua-@i/uap-@F",C[1]],"bindle":["An aggregate object ^x @O @0 @P","0.6.0"],"local_ipaddress":["Get $r local IP address ^Y panic","0.1.3"],"$P_credential":["^r credential tooling",C[27]],"xi-rpc":["^e @0 $K peers (both @c @5 @U side) @0 xi's ^k RPC variant.",C[1]],"winconsole":["A @h @0 console-related @y in @4 ^6 @x.",C[17]],"winrt":["^6 Runtime @L projection",C[7]],"fluence-app-service":["Fluence Application Service",C[12]],"latex":["An ergonomic @1 @0 programatically $E LaTeX documents @5 reports.","0.3.1"],"festive":[C[303],C[8]],"expect_@e":["$8 expect! @e",C[5]],"procedural-masquerade":["macro_rules @0 making proc_macro_derive pretending to be proc_macro","0.1.7"],"nifti":["@3 @2 of @4 NIfTI $0 @G",C[24]],"snarkos-consensus":["Consensus @0 a decentralized operating @O","1.3.17"],"colorsys":["A ^F @0 color conversion @5 mutation. Works @7 RGB(a)( as hexadecimal too), HSL(a), CMYK color models @5 @7 ANSI color codes","0.6.5"],"rusty-xinput":["Safe dynamic loading of xinput.","1.2.0"],"google-sheets4":["A @q @1 to @o @7 Sheets (@9 v4)",C[210]],"rill-engine":["$8 RillRate ^c @J $a.","0.41.0"],"phantom-fields":["^B-@e @0 sub-fields inside of an integer &5.",C[4]],"noble-balances":["FABRIC noble to manage balances","2.0.1"],"nested_intervals":["nested & overlapping interval set @y, overlap, union, etc",C[8]],"ndarray-rand":["Constructors @0 randomized arrays. `rand` $T @0 `ndarray`.",C[24]],"core-nightly":["Nightly $j of libcore @t @4 @f repo.","2015.1.7"],"libmdns":["mDNS Responder @1 @0 $K discoverable LAN services in @3","0.6.2"],"countme":["Counts @4 &a of live instances of @g","2.0.4"],"quat":["quat",C[5]],"$P_iotanalytics":["^r ^N @0 @3 - ^r IoT Analytics @ 2017-11-27",C[27]],"aspect-weave":[C[201],C[5]],"dicom-core":["Efficient @5 practical @F @1 @0 DICOM compliant systems","0.4.1"],"pony":["An Express-$C @h $G Hyper",C[32]],"imag-wiki":["Part of @4 imag @F ^m: imag-wiki @D",C[12]],"sentry-panic":[C[985],C[88]],"piston-gfx_texture":["A Gfx texture representation @l works nicely @7 Piston &4","0.41.0"],"imgui-opengl-renderer":["An OpenGL renderer @0 imgui-rs",C[16]],"trust-dns":["Trust-DNS is a $M @5 secure DNS @U @7 DNSec @j. Eventually this could be a replacement @0 BIND9. $8 DNSSec @j allows @0 live signing of all records, in it does not currently @j records signed offline. $8 @U supports dynamic DNS @7 SIG0 authenticated requests. Trust-DNS is @n on @4 Tokio @5 Futures &4, $i means it should be easily integrated ^d other software @l also $d those &4.",C[41]],"ink_lang_^H":["@w $k @5 ^3 @0 $E ink! IR @V",C[107]],"shutdown_hooks":["Shutdown hooks @0 @3. Currently a &E @h $G atexit, will eventually allow you to remove hooks",C[0]],"rand":["Random &a generators @5 other randomness $7.","0.8.4"],"descriptor-wallet":["@p @0 $K descriptor-@n bitcoin wallets","0.5.0-alpha.5"],"opcua-certificate-creator":["OPC UA certificate creator",C[7]],"zeta":["Compiler @0 @4 Zeta $m @L","0.1.6"],"cargo-frc":["A @S ^h @0 deploying @f @V to FRC robots.",C[2]],"dux":["X11 backlight &F.",C[3]],"i3-style":["Make $r i3 config a little more stylish","1.0.2"],"status":["Error container","0.0.10"],"yaml_$0_handler":["A Yaml File Handler @n on yaml-@f","0.1.4"],"faccess":["@K $0 accessibility checks","0.2.3"],"dotter":["A dotfile &F @5 templater $A in @f","0.12.7"],"help":[C[379],"0.0.0"],"coap":["A CoAP @1","0.11.3"],"actyxos_sdk":[C[202],"0.5.0"],"procs":["A modern replacement @0 ps","0.11.10"],"quick-error":[C[203],"2.0.1"],"typename_@b":["&n $Y @0 @4 typename @8.","0.1.4"],"$5_c":["C @x @0 encoding_rs","0.9.8"],"ergo":[" making rust's ecosystem more ergonomic, therefore more fun.",C[4]],"sconcat":["String concatenation",C[5]],"pirate":["A @d arrrguments @i","1.0.0"],"mock_@b":["An &x to setup, rich mocking @1 @0 @4 @3 $m @L.",C[7]],"criterion-papi":[C[698],C[0]],"gusto-api":["A fully ^8 & opinionated @x @c @0 @4 Gusto @x.","0.2.11"],"@f_decimal":["A Decimal @v $A in ^X @3 suitable @0 financial calculations.","1.17.0"],"rtti":["[very early WIP] Run-$z $l $f $y. Use @8 rtti-@b to implement.",C[2]],"entity_@f":["Event driven CES @k @0 @3 @7 a @e DSL","0.0.8"],"magenta":["@3 @6 @0 @4 Magenta kernel",C[3]],"libfonthelper":["Reads fonts in passed directories @5 return objects of fonts @0 Figma Font Helper","0.3.4"],"roughenough":["A Roughtime secure $z sync @U @5 @c $A in @3","1.1.8"],"abi_stable":["For doing @3-to-@3 ffi,$O &4 loaded at ^U startup.","0.10.2"],"gc":["Tracing garbage collector $Y @0 @3.","0.4.1"],"lapack":["$8 @X @s &r @0 LAPACK (Fortran).",C[95]],"KLPhash":["&7 hashing fn @1 - str -> u32","0.1.4"],"wasmer-runtime":[C[470],C[43]],"qcollect-traits":["Traits @0 being ^G &6 $b-@g.","0.7.4"],"glx":["GLX 1.4 @6 @0 &j","0.2.6"],"libparted":["@3 &r @0 libparted","0.1.4"],"slice-cast":["Support @0 casting $t slice @g",C[4]],"orbtk-tree":["Tree $V @n on DCES.",C[204]],"indy-sdk":["Note: @Q @8 is deprecated in favor of indy (&Y://crates.io/$R/indy). @Q is @4 official ^N @0 Hyperledger Indy (&Y://www.hyperledger.org/projects), $i @s a distributed-ledger-@n foundation @0 self-sovereign identity (&Y://sovrin.org). $8 major artifact of @4 ^N is a c-callable @1.","0.1.1"],"optional":["@Q @8 supplies a &a of Option-$C primitive @g","0.5.0"],"accessor":["A @1 to $X MMIO space","0.3.3"],"ark-ed-on-bls12-381":["A Twisted Edwards curve defined &6 @4 scalar field of @4 BLS12-381 curve",C[1]],"tracing-distributed":["Tracing layer @0 multiprocess telemetry","0.3.1"],"linapi":["High @C @6 to various &j APIs @5 interfaces","0.5.2"],"bitsy-parser":["A @i @5 @E @0 ^p @7 Bitsy game @w","0.75.0"],"base65536":["A $Q $5 optimized @0 UTF-32/UCS-4 encoded ^D @5 Twitter","1.0.1"],"sdf":["Read Riegl's .sdf full-waveform LiDAR @w @G",C[4]],"deepsize_@b":[C[1024],"0.1.1"],"osmpbf":["A reader @0 @4 OpenStreetMap PBF $0 @G (*.osm.pbf).","0.2.5"],"ntex-util":["^e @0 ntex @k","0.1.1"],"s2":["S2 geometric @1","0.0.10"],"wcstr":["@3 $L &w @0 ^p @7 win32 API's \"&h\" @y @l uses \"wide\" $p.","0.1.4"],"freedesktop_entry_@i":["A @1 @0 @R FreeDesktop entry @z","1.2.0"],"s3-ext":["@K Storage Service Extensions @0 @3",C[1]],"libffi":[C[487],"2.0.0"],"prototty_&s_render":["@v of prototty_render::ViewGrid @0 $d in &s frontend.","0.27.0"],"gridsim-ui":["Visualizing gridsim grids","0.4.1"],"knock":["Knock is a @d ^s Client @0 @3","0.1.8"],"rowdy":["`rowdy` is a Rocket @n ^k Web token @n authentication @U.","0.0.9"],"crc_all":["A Pure @3 @v of &W CRC Algorithm",C[3]],"ophelia-derive":["ophelia @b @a",C[1]],"cargo-dinghy":["Cross-compilation made easier","0.4.62"],"libimagmail":[C[39],C[12]],"blissb":["Post-quantum signature schemes - BLISS-B.","0.2.3"],"cfrp":["Concurrent Functional Reactive Programming @0 @3","0.0.4"],"stringreader":["@W a @h @0 $p so @l they can be consumed via @4 std::io::Read $y.","0.1.1"],"usdt-impl":["Main @2 @8 @0 @4 USDT @X","0.1.12"],"shout":["Higher @C libshout @6 in @3",C[5]],"cargo-index":["Cargo &i to manage a registry index.","0.2.4"],"wasmer-as":["Helpers to read @5 &0 $g in AssemblyScript &s modules executing in wasmer-@I",C[2]],"ckb-occupied-capacity-macros":[C[205],C[302]],"rumq-client":["An efficeint @5 robust mqtt @c @0 $r connected &N",C[206]],"retry-after":["Retry-After header @0 Hyper's header ^F","0.3.1"],"vlq":["Sourcemap-style VLQ encoder @5 decoder","0.5.1"],"oci-spec":["Open Container Initiative Specifictions in @3","0.5.2"],"compressor":["A high $J digital signal compressor, designed @0 compressing @4 amplitude of audio @w.",C[1]],"google-playcustomapp1-cli":[C[987],C[207]],"symbolic-unreal":["Parsing @5 &u @E @0 Unreal Engine 4 crash @z.","8.3.2"],"english-lint":["Find $u stylistic problems in english texts. Works well @0 technical or scientific documents.","0.1.1"],"bevy_mod_raycast":["Ray Casting @0 @4 Bevy Engine.",C[8]],"tinysearch-cuckoofilter":[C[665],"0.4.1"],"zoet":["Adds `#[zoet]` @e to reduce boilerplate when ^5 $u $3.","0.1.7"],"nsutils":["Command-$D @E @0 making $d of &j namespaces","0.0.5"],"tokio-file-unix":["&b @j @0 epollable @z via Tokio on Unix-$C platforms","0.6.0"],"zeroconf-macros":["^o @0 zeroconf @8",C[4]],"drm-ffi":[C[537],C[3]],"$b_$3":["Collection $3 & @E; work in progress","0.0.2"],"ed-derive":["&n @a @0 @4 ed @8","0.2.3"],"noteref":["Noteref helps you make notes in $r codebase @5 maintain references to them.","0.9.1"],"msgpack_@d":["Simplified, &x to $d, ^X @3 MessagePack @2 focused on ^a dynamic @w $k.","1.0.2"],"ffcnt":["Fast $0 counting on HDDs",C[9]],"$y_enum":["Easy enum @h @l implements all $3 @l @4 wrapped objects implement","0.5.0"],"tower-http-util":["^e @0 ^p @7 ^s services.",C[0]],"tetsy-impl-codec":["Tetsy Codec @M @j @0 uint @5 fixed ^z.","0.5.1"],"docuum":["LRU eviction of Docker images.","0.20.3"],"rocksdb-sys":["&M @6 to @4 rocksdb @1",C[8]],"actix-ioframe":["Actix framed &t","0.4.1"],"qbsdiff":["Fast @5 $g saving bsdiff 4.x ^i delta compressor @5 patcher.","1.4.0"],"opentelemetry-contrib":["@3 contrib repo @0 OpenTelemetry",C[7]],"openai":["OpenAI @c @0 @3","0.4.1"],"kas-macros":["KAS GUI / @a",C[12]],"rand_regex":["Generates &L $p @5 byte $p matching a regex","0.15.1"],"solana-logger":["Solana Logger","1.8.1"],"syntect":["@1 @0 high quality syntax highlighting @5 @V intelligence @u Sublime Text's grammars","4.6.0"],"exa":["A modern replacement @0 ls",C[12]],"eszip":["A $w @l can download JavaScript @5 TypeScript ^F graphs @5 store them locally in a special zip $0",C[15]],"^z_hasher":["A hasher $i is designed to work @7 already-hashed or ^z-$C @w.","2.0.3"],"diesel_as_jsonb":["Use $r &o as Jsonb @7 diesel @5 PG",C[4]],"escposify":["A ESC/POS ^j @0 @3## Minimum @3 $4 policy (MSRV)@Q crate's minimum supported &K $4 is 1.46.0.","0.4.1"],"cargo-release":["Cargo &i @0 you to smooth $r release ^I.","0.18.3"],"daemon":["@p @0 $Z @d &j demons @5 ^6 services.","0.0.8"],"timed_cache":["An @2 of a cache @l will regenerate a &5 if accessed after a certain amount of $z.","0.1.1"],"verify":["A validation @1",C[9]],"solana-archiver-utils":["Solana Archiver Utils","1.1.23"],"memcached-rs":["A MemCached @p in @3","0.4.2"],"minitt":["Mini-TT, a dependently-typed lambda calculus, extended @5 (re)implemented in @3","0.4.3"],"webdriver":["@p ^5 @4 wire @9 @0 @4 W3C WebDriver specification.","0.44.0"],"xz-embedded-sys":["@H to xz-^b, a @d decompression-only xz impl","0.1.1"],"docker":[C[527],"0.0.41"],"wgetj":["Use wget to grab Java distributions","1.0.4"],"emcee":["@v of Python's emcee affine-invariant mcmc ensemble sampler","1.0.0-alpha.2"],"gotham_restful":["RESTful additions @0 @4 gotham &e @k","0.4.6"],"standalone-syn":["Fork of syn @l turns of @4 ^B-@e feature in ^B-macro2 @5 standalone-quote so as to remove @4 &K dylib &m",C[15]],"textnonce":["Text @n &L nonce @B","1.0.0"],"rbtag":["A $e @e to add $j DateTime @5 git commit $f at compile $z",C[1]],"erlang_nif-sys":[C[208],"0.6.5"],"dbus-macros":["Convenient @a to $d @4 dbus @8","0.2.4"],"teensy3-sys":["Servo Bindgen ^8 @6, @5 Teensyduino ASM/C/CPP/Linker components",C[3]],"liquid-error":[C[87],C[335]],"^g_init":["Quickly initialize projects @t a template.","3.1.23"],"libp2p-noise":[C[222],C[739]],"xyzio":["A @d xyz reader @5 writer @1","0.3.1"],"thread-pool":["A &d pool @0 running a &a of jobs on &J worker threads.","0.1.1"],"tango":["Markdown-@n Literate $m in @3, integrated @7 Cargo.","0.8.2"],"wasm-timer":[C[702],"0.2.5"],"schnorr_fun":["BIP340 Schnorr signatures @n on secp256kfun","0.6.2"],"kwiwk-experimental":["Collection of WIPs @5 experimental &4",C[1]],"gstreamer-rtsp-server":["@3 @6 @0 GStreamer RTSP Server @1","0.17.2"],"forest_address":["Filecoin addresses @0 $d in Forest",C[9]],"wmata":["wmata is a high @C @3 @m to @4 Washington Metropolitan Area Transit Authority (WMATA) @x","7.1.0"],"lightspeed_cms":[C[209],"0.40.1"],"$6_asn1_der":["A basic ASN.1-DER @2 @0 `$6` @n upon `asn1_der`","0.7.4"],"@Z_cbor_codec":["A codec @0 framing an AsyncRead/AsyncWrite @7 cbor @0 all @g @l are serializable @7 $6","0.3.1"],"reef":["a @X to execute @5 log @O commands","0.0.79"],"thin-dst":["Thin pointers to inline-slice dynamically sized @g","1.1.0"],"thrussh_@c":["A high-@C SSH @c built @7 Thrussh @5 Mio.","0.5.0"],"damm":["@v of @4 Damm $1 in @3",C[0]],"scroll_phat_hd":["Scroll Phat HD @1.",C[9]],"relm-gen-widget":["Utility @8 @0 relm-attributes @5 relm-@b",C[72]],"base64-serde":["Integration $t @f-base64 @5 $6","0.6.1"],"gdk4-wayland":["@3 @6 of @4 GDK 4 Wayland @1","0.3.1"],"sx1509":["A @N &f ^j @0 @4 SX1509",C[3]],"bevy_^D":["@W ^D $7 @0 Bevy Engine","0.5.0"],"mccs":["VESA Monitor Control Command Set",C[0]],"distill-schema":["RPC schema $h @0 @4 asset pipeline `distill`.","0.0.3"],"$P_workspaces":["^r ^N @0 @3 - Amazon WorkSpaces @ 2015-04-08",C[27]],"lindera-ipadic":["A Japanese morphological dictionary loader @0 IPADIC.",C[7]],"beanstalkc":["Yet another @d Beanstalkd @c @0 @3.","1.0.0"],"ordered_iter":["Ordered iterators.",C[4]],"gstreamer-net-sys":["$L @6 to libgstnet-1.0",C[26]],"gfx_device_metal":["Metal $N @0 gfx-rs",C[1]],"substrate-bn":[C[81],"0.6.0"],"telos":["@3 @6 @0 libressl's libtls",C[5]],"google-gmail1":[C[717],C[670]],"sqlparser":["Extensible SQL Lexer @5 &B @7 @j @0 ANSI SQL:2011",C[28]],"i2cbus-api":[C[397],"0.1.9"],"solana-tokens":[C[58],"1.8.1"],"countdown":["A @d countdown timer",C[4]],"guilt-by-association":["Macro @0 declaring/^5 $3 @7 fake associated consts (in stable @3)","0.5.0"],"git-gamble":["blend TCR + TDD to make sure to develop @4 right thing, babystep by babystep","2.3.0"],"semver_rs":["Semantic $4 @R @5 comparison @n on NPM's node-semver @X.","0.1.3"],"nickel":["An express.js &X &e @k",C[16]],"heim-runtime":["Runtime shims @0 heim @8",C[59]],"pallet-elections":["FRAME &v @0 elections","3.0.0"],"sorted-collections":["A @1 ^R useful ^h $3 @5 convenience &P @0 ordered &C in @3. NOTE: @Q @1 is not currently in active &D, @5 much of @4 $7 has been either obsoleted by or superseded by similar or identical $7 of @4 ^E @1, or soon will be. Please $d @l instead, at least until I find a better direction to take this.","0.0.8"],"piston":["$8 Piston game $a @F &4","0.53.0"],"chbs":["A @8 ^R secure passphrase ^1 @n on a wordlist",C[0]],"apriltag-sys":["@3 @6 @0 AprilTag @1",C[3]],"google-monitoring3":[C[613],C[210]],"canteen":["A Flask-$C microframework @0 @3","0.5.5"],"auto_enums_@F":[C[211],"0.7.12"],"multitask":["An executor @0 running @J tasks",C[3]],"single_&5_channel":["Concurrent single-&5 update @5 receive channel","1.2.2"],"knx_rs":["KNX @p","0.0.6"],"functiontrace-server":["$8 @U component @l FunctionTrace (functiontrace.com) clients will spawn @5 connect to",C[2]],"debug-helper":["@Q @8 @s declarative @a to help you implement @4 `Debug` $y manually.","0.3.12"],"timer":["A @d timer. Use it to schedule execution of closures after a delay or at a given timestamp.",C[3]],"rocket-cache-response":["@Q @8 @s a response struct $2 @0 ^s cache control.","0.6.0"],"ggp-rs":["A @1 @0 $Z General Game Playing (GGP) players",C[4]],"xmlsec":["Wrapper @0 xmlsec1 @1",C[5]],"pact_mock_@U_ffi":["Pact mock @U @m @0 foreign languages [&T, replaced @7 pact_ffi]","0.1.1"],"mpi":[C[212],"0.5.4"],"tight":["A @d @D-$D expense tracker","1.0.1"],"egaku2d_@F":["@K 2D ^T @1 ^Y context creation @V","0.6.0"],"arrow":[C[751],"6.0.0"],"stdweb-derive":["&n @a @0 @4 `stdweb` @8","0.5.3"],"kvdb-memorydb":["A key-&5 in-$g ^Q @l implements @4 `KeyValueDB` $y",C[13]],"allegro_acodec-sys":["Allegro 5 acodec addon @3 $W","0.0.41"],"rbatis_sql_@e":["rbatis sql @e @O","2.0.21"],"jec":["My $b of general-purpose $R",C[5]],"micro-timer":["Dumb tiny &H timer",C[2]],"bitcoin-wallet":["Wallet @1 @0 Bitcoin","1.1.0"],"tendermint-proto":["tendermint-proto is a @4 @3 @2 of @4 Tendermint proto &o.",C[354]],"srx":["A mostly compliant @3 @2 of @4 Segmentation Rules eXchange (SRX) 2.0 ^E @0 ^D segmentation.","0.1.3"],"porter2":["An (incomplete) @2 of @4 Porter 2 English Stemmer","0.0.1004"],"rexpect":["Interact @7 unix processes/bash @4 same way as pexpect or Don libes expect does",C[2]],"captrs":["Cross-@N screen capture @1","0.3.1"],"u-siem":["A @k @0 $K custom SIEMs","0.0.70"],"&V_rpc":["^k-RPC 2.0 @v",C[3]],"$P_stepfunctions":["^r ^N @0 @3 - ^r Step Functions @ 2016-11-23",C[27]],"ppv-lite86":["@v of @4 &Q-simd @x @0 x86","0.2.15"],"paragraphs":["A Parallel Graph Execution @p","0.3.1"],"uri":["Deprecated, $d url @8 instead",C[2]],"tensor":["Currently, a sketch of a Tensor @1",C[4]],"enamel":["A @d OpenGL @m overlay @0 $d @7 Glium.",C[1]],"zerodrop":["Zero boxed @w when dropped. Nolonger maintained. Use ClearOnDrop at &Y://github.com/cesarb/clear_on_drop/ instead.","0.1.4"],"hex2ascii":["@D $D app @l converts hex ^V ^d ascii","1.0.2"],"gist":["A @d Github Gist @c","0.7.0"],"snmalloc-rs":["@f @6 of snmalloc.","0.2.28"],"unicorn_hat_hd":["@W an @m to @4 Pimoroni Unicorn HAT HD on a Raspberry PI",C[5]],"routing":[C[213],"0.37.1"],"gfx-auxil":["@v details &J $t gfx-rs backends",C[13]],"pin-weak":["Small @h $G an equivalent of Pin>","1.0.0"],"streebog":["Streebog (GOST R 34.11-2012) ^z @Y","0.9.2"],"k256":["secp256k1 elliptic curve @1 $A in ^X @3 @7 @j @0 ECDSAsigning/verification (including Ethereum-style signatures @7 public-keyrecovery), Elliptic Curve Diffie-Hellman (ECDH), @5 general purpose secp256k1curve arithmetic useful @0 ^5 arbitrary group-@n protocols.","0.9.6"],"chfft":["Fastest Fourier Transform @1 implemented @7 ^X @3.","0.3.4"],"cmdr_@e":["^o @0 $d @7 cmdr @8","0.3.12"],"abxml":["&B @0 resources.arsc contained on APKs @5 $Q XML decompresser.","0.8.2"],"hyper-native-tls":["&8-tls @j @0 Hyper",C[1]],"czmq-sys":["Low-@C @6 to @4 CZMQ @1",C[0]],"libvirt-rpc":["libvirt @9 @2 @5 @c","0.1.12"],"from-pest":["Convert @t a pest grammar to a typed AST","0.3.1"],"restson":["Easy-to-$d REST @c @7 automatic @M @5 &9.","1.0.0"],"dpc-simplemap":["@K map @7 default &5 @5 compacting.",C[0]],"gltf":["glTF 2.0 loader",C[72]],"libevent":["@3 @6 to @4 libevent @J I/O @k",C[0]],"r2d2_redis":["Redis @j @0 @4 r2d2 connection pool",C[24]],"tinystr-raw":["Raw $c-to-integer conversions @0 tinystr.","0.1.3"],"gluster":["A @1 to @m @7 Gluster's CLI. @Q is being leveraged by a Juju charm to manage a Gluster deployment","1.0.8"],"nrf52-hal-common":["&O HAL @0 @4 nRF52 family of $s. More specific HAL $R also exist.","0.8.1"],"rml_rtmp":["@3 @1 @0 ^a aspects of @4 RTMP @9.","0.5.0"],"google-deploymentmanager2":[C[691],"2.0.8+20210320"],"stdweb-internal-macros":["Internal $e @a @0 @4 `stdweb` @8","0.2.9"],"cargo-criterion":["Cargo ^h @0 running Criterion.rs benchmarks @5 reporting @4 results.","1.1.0"],"vgtk-macros":["Proc @a @0 vgtk",C[1]],"html5ever-atoms":["Static $p @0 html5ever",C[1]],"associative-cache":["A ^G N-way associative cache @7 fixed-size capacity @5 &L or least recently $2 (LRU) replacement.","1.0.1"],"mosquitto-client-wrapper":["@3 @m to @4 Mosquitto MQTT broker @c. @Q is a fork of &Y://github.com/jsloth/mosquitto-@c.","0.3.1"],"quircs":["QR @V detection @5 scanning. Pure @3.",C[13]],"angular":[C[481],"0.1.1"],"tmdb":["$8 Movie Database (TMDb) @x @0 @3","3.0.0"],"bits":["x86 BMI-style bit manipulation routines","0.0.4"],"heatseeker":["A $I, robust, @5 portable fuzzy finder.","1.7.1"],"google-freebase1":["A @q @1 to @o @7 freebase (@9 v1)","0.1.14+20150728"],"hcloud":["Unofficial @3 @8 @0 accessing @4 Hetzner Cloud @x","0.7.0"],"pcapng":["a pcapng @i, implemented in @f","1.0.0"],"stringmatch":["Allow @4 $d of regular expressions or $p wherever you need $c comparison",C[9]],"servo_arc":["A fork of std::sync::Arc @7 some extra $7 @5 ^Y weak references","0.1.1"],"advent-of-code":["Solutions to Advent of Code","2019.12.393"],"ndless-macros":["^o @0 Ndless @0 @4 TI-Nspire",C[2]],"oid":["@3-&8 @1 @0 $K, @R, @5 formating Object Identifiers (OIDs)",C[5]],"ddg":["An ORM @0 DuckDuckGo.","0.5.0"],"conrod_glium":[C[214],"0.75.0"],"ordinal":["Formatting of ordinals (1st, 2nd, 3rd etc)","0.2.3"],"azure_sdk_&t_bus":["@3 &r $G Microsoft Azure REST APIs - Service Bus @8","0.44.2"],"close-file":["Allows to close a $0 ^Y silently dropping errors",C[0]],"mangaplus-parser":["mangaplus @i @0 @f @u pb-rs","2.0.0"],"gpgme":["GPGme @6 @0 @3",C[13]],"octavo-mac":["Octavo - Message Authentication Codes. WARNING!!! Not suitable @0 production","0.1.1"],"near-sdk-core":[C[351],"3.1.0"],"tokio-macros":["Tokio's ^B @a.","1.5.0"],"challenge-bypass-ristretto":["A @f implemention of @4 privacy pass ^w @9 @u @4 Ristretto group (WIP)","1.0.0-pre.0"],"bitpack":["@3 bitpack @1, @j `no_std` ^K.",C[5]],"portaudio":["PortAudio @6 @0 @3.","0.7.0"],"distance-field":["Generate distance fields @t images @0 pseudo-vector &S","0.1.7"],"twasm-utils":["Collection of @D-$D @E @5 corresponding @3 ^S @0 producing twasm-^i executables",C[26]],"fluence-fork-libp2p-websocket":[C[546],"0.28.1"],"rustc-ap-rustc_parse":["^W published $4 of @4 @X `rustc_parse` in @4 @f-lang/@f repository @t commit 9a27044f42ace9eb652781b53f598e25d4e7e918 $8 publishing script @0 this @8 lives at: &Y://github.com/alexcrichton/&K-auto-publish",C[215]],"afsort":["American Flag sort @2 @0 faster sorting of Strings.","0.3.1"],"ra_ap_mbe":["TBD","0.0.79"],"nom-supreme":["A $b of excellent @E @0 nom","0.6.0"],"collision":["A collision ^h to cgmath","0.20.1"],"nu-build":["Core $j @O @0 nushell",C[26]],"cortex-m-quickstart":["A template @0 $K @P @0 ARM Cortex-M $s","0.3.4"],"dpdk-core":["A @h $G DPDK's @F @k","0.1.5"],"gazetta-cli":["A &k site @B @k. Shared CLI @V.",C[1]],"cosmwasm-storage":[C[216],C[97]],"google-tagmanager1":[C[490],C[92]],"xplm":["High-@C interfaces to @4 X-Plane $Y ^N","0.3.1"],"@w_$V_$3":["@w $V $b $3","0.1.12"],"genfsm":["A @d ^G finite state machine @1.","0.0.2"],"uhttp_sse":["Zero-copy, zero-allocation ^s Server-Sent Events @9","0.5.1"],"gouth":["@Q @1 @s auto-renewed tokens @0 GCP &t authentication.",C[5]],"dominant_color":["@K image color extractor $A in @3 @7 no external &c",C[1]],"lock_^S":["Wrappers to create fully-featured Mutex @5 RwLock @g. Compatible @7 no_std.","0.4.5"],"tokio-rustls":["&b TLS/SSL streams @0 Tokio @u Rustls.",C[88]],"logwatcher":["A lib to watch log @z @0 new Changes, just $C tail -f","0.1.1"],"phantom":["Phantom @g @0 $d in other $R.","0.0.4"],"gurobi":["An unofficial @3 @x @0 Gurobi optimizer","0.3.4"],"websocket-stream":["Non-blocking Websocket (RFC-6455) @h @0 TcpStream","0.0.5"],"easy-jsonrpc":[C[1045],"0.5.3"],"ccl":["Fast datastructures @0 $d in highly concurrent systems.","5.1.5"],"valgrind":["Small @1 of @w $k @0 representing Valgrind suppressions",C[4]],"dynamic-pool":["a lock-free, &d-$M, dynamically-sized object pool.",C[8]],"rust-graph":["A graph @1 @0 @3","0.0.3"],"twox-hash":["A @3 @2 of @4 XXHash @5 XXH3 ^3","1.6.1"],"autolink":["HTML auto-linking",C[1]],"rendy-factory":["Rendy's factory ^4","0.5.1"],"pix":["Pixel / raster image @1","0.13.1"],"bee-ternary":["Ergonomic ternary manipulation @E","0.5.0"],"pancurses":["pancurses is a curses libary @0 @3 @l supports both Unix @5 Windowsplatforms by abstracting away @4 $N @l it uses(ncurses-rs @5 pdcurses-@r respectively).",C[26]],"futures-stream-select-all":[C[217],C[4]],"libdbus-sys":["$L @6 to libdbus.",C[8]],"futures-backoff":["&b retry strategies @0 @Z",C[0]],"usbd-hid-descriptors":["Low-@C, wire-@G enums/bitfields $2 in HID descriptors","0.1.1"],"yaml":["LibYAML $W @0 @3",C[1]],"spurs":["^e @0 setting up @5 running experiments remotely","0.9.1"],"indexed_bitvec":["An indexed bitvector @7 (hopefully) $I rank @5 select $B.","4.0.1"],"eff":["Algebraic Effects @p @0 @3",C[0]],"serde-tc-macro":["Macro @0 $6-tc",C[8]],"byte_conv":["@K conversion $3 to bytes","0.1.1"],"webplatform_concat_bytes":["A concat_bytes! @e $i concat byte arrays","0.0.1"],"brainheck":["Brainheck interpreter $A in @3.","0.1.8"],"jrsonnet-interner":["Jrsonnet $c interning","0.4.2"],"bank":["Various bank related $3 @5 implementation.An abstract bank-transaction @i;easily add $r own bank.SEPA RF @2 @0 &x formatting @5 checking of RF fields.",C[2]],"reproto-path-lexer":["path lexer $2 @7 @4 reproto @i","0.3.36"],"tantivy-cli":["Command $D @m @0 Tantivy, a search $a @1.",C[23]],"ipconfig":["Get ^9 adapters $f @5 ^9 $H @0 windows.",C[8]],"lockfree-object-pool":["A &d-$M object pool $b @7 automatic return @5 attach/detach semantics.","0.1.3"],"signature_ps":["$8 Ockam PS signature impementation.","0.26.0"],"tower-timeout":["Apply a timeout to requests, ensuring completion within a fixed $z duration.",C[1]],"pistoncore-window":["A @1 @0 window $F",C[27]],"vk-sync":["Simplification of @F Vulkan synchronization mechanisms such as pipeline barriers @5 events.","0.1.6"],"ws_^L_&s":[C[218],"0.7.3"],"cloudflare-zlib":["Safe @h @0 Cloudflare's optimized zlib","0.2.9"],"zone_cfg_@b":["@3 @6 @0 Zone ^A (^B @e ^1 ^t)",C[4]],"json5":["A @3 JSON5 serializer @5 deserializer $i speaks Serde.","0.4.1"],"genawaiter-macro":["Convenience @a @0 generators (genawaiter)","0.99.1"],"diesel_^y_ext":["@W different &1 @0 projects @u @4 diesel_cli.","0.3.6"],"wasm-debug":["&W Wasm DWARF transformation @8",C[3]],"stomp":["A full STOMP 1.2 @c @2. Allows programs to @o @7 message queueing services $C ActiveMQ @5 RabbitMQ.",C[16]],"redhook":["Dynamic @Y call interposition / hooking (LD_PRELOAD) @0 @3","2.0.0"],"chacha20":["$8 ChaCha20 ^L cipher (RFC 8439) implemented in ^X @3 @u traitsfrom @4 RustCrypto `cipher` @8, @7 optional architecture-specifichardware acceleration (AVX2, SSE2). Additionally @s @4 ChaCha8, ChaCha12,XChaCha20, XChaCha12 @5 XChaCha8 ^L ciphers, @5 also optionalrand_core-^i RNGs @n on those ciphers.","0.8.1"],"libimagerror":[C[39],C[12]],"microamp":["Asymmetric Multi-Processing on $s","0.1.0-alpha.7"],"qml":["Safe QML @6 @0 @3","0.0.9"],"buzz":["A @d @O tray $U @0 notifying about unseen e-mail","1.6.0"],"ldap3_@U":["LDAP Server Codec @0 Tokio","0.1.9"],"filecheck":["@p @0 $O tests @0 @E @l read ^D @z @5 produce ^D &Z","0.5.0"],"compt":["A @q $Q ^0 visitor @1","1.10.1"],"bytecount":["count occurrences of a given byte, or @4 &a of UTF-8 @V points, in a byte slice, $I","0.6.2"],"dd":["a clone of @4 unix coreutil dd",C[2]],"rsntp":["An RFC 4330 compliant @K Network Time ^c (SNTP) @c @1 @0 @3","2.1.0"],"failchain":["Ergonomic companion @1 @0 failure.","0.1018.2"],"rust-base58":["@K @1 @0 converting to @5 @t base-58 $p.","0.0.4"],"docpars":["Ultra-$I @i @0 declarative @D-$D options",C[3]],"noise-ring":["Ring &r @0 nosie-@9.",C[0]],"signalbool":["A @d @8 to catch signals @5 set a boolean flag @0 later $d.","0.2.4"],"signatory-sodiumoxide":[C[229],"0.99.0"],"rrss2imap":["A @d script @l exposes RSS entries as mail &y, pushed directly @u IMAP","0.3.6"],"porthole":["Resolves open ^9 ports",C[0]],"libelf-sys":[C[141],"0.0.6"],"holochain_$u":["holochain @F commons",C[18]],"checksec":["Fast multi-@N (ELF/PE/MachO) $Q checksec @D $D $w @5 @1.","0.0.8"],"device-types":["&J device @g $2 throughout device-scanner @5 IML",C[1]],"azure-functions-shared-codegen":["Azure Functions @0 @3 &J @V ^1 @j.",C[16]],"hyper-alpn":["An ALPN @2 to be $2 @7 Hyper 0.12",C[1]],"xcb-imdkit":["Wrapper $G xcb-imdkit, ^R an IME @c @0 @4 XIM @9 @u XCB",C[4]],"async-tungstenite":["Async $W @0 Tungstenite, @4 Lightweight ^L-@n WebSocket @2",C[23]],"hoedown":["@6 @0 @4 Hoedown markdown processor","6.0.0"],"peg-syntax-ext":["Deprecated syntax ^h $Y @0 @3 nightly. See @4 `peg` @8 @0 other $T options.","0.5.7"],"snmp":["SNMP @c @1",C[8]],"atm-io-utils":["^e @0 ^5 @5 $S std::io @5 tokio_io related @V.","0.2.5"],"@Z":[C[219],"0.3.17"],"fbxcel":["Excellent FBX @1","0.7.0"],"glutin_@F_foundation":["$8 *real* core_foundation @8, under a temporary name.",C[4]],"ql2":["RethinkDB @9","2.1.1"],"@f_inbox":[C[495],"0.0.5"],"romulus":["a ^L editor $C sed",C[1]],"rbx_$Q":["@v of Roblox's $Q model (rbxm) @5 place (rbxl) $0 formats","0.6.4"],"flume":["A blazingly $I multi-producer channel","0.10.9"],"stable-eyre":["A custom context @0 eyre @l supports capturing Backtraces on stable",C[8]],"vec2d":["Very @d 2D container @0 storing rectangular @w",C[1]],"contract-address":["A $w @8 to create an ethereum contract address","0.6.0"],"dash2html":["Tool to ^n a HTML page of Dash snippets so they can &J.","1.1.0"],"shush":["A ^A ^4 @0 silencing Sensu checks $A in @3",C[8]],"bracket-lib":["Meta-@8 holding @4 entirety of bracket-lib (@5 exposing it). Use this @0 @4 full roguelike toolkit experience.","0.8.1"],"chunky-vec":["A pin $M, append only vector never moves @4 backing store @0 an element.",C[0]],"tincture":["A @8 @0 converting colors $t different color spaces","0.5.0"],"android_logger":["A &H @2 @0 `log` $i hooks to android log &Z.",C[12]],"charts":["A ^X @3 visualization @1 &X by D3.js",C[1]],"tab-command":["@4 ^y @D ^F @0 @4 tab $o multiplexer","0.5.7"],"dummy-rustwlc":["A dummy $4 of @4 @y defined in @f-wlc, to be $2 in $S @5 @0 travis builds","0.7.1"],"maud_htmlescape":["Internal @j @V $2 by Maud.","0.17.1"],"node-primitives":["Low-@C @g $2 throughout @4 Tetcore @V.","2.0.0"],"nodejs-helper":["Call Node.js @y @t @3","0.0.3"],"tabin-plugins":["Libs @0 $K nagios-^i check scripts, some scripts, @5 some libs to read @t /^B @5 /@r on &j.","0.3.1"],"plist-sys":["Raw @6 to @4 libplist @1.","0.1.5"],"drill":["Drill is a ^s load $S $U $A in @3 &X by Ansible syntax","0.7.2"],"stable_deref_$y":["An unsafe marker $y @0 @g $C Box @5 Rc @l dereference to a stable address even when moved, @5 hence can be $2 @7 &4 such as owning_ref @5 rental.","1.2.0"],"ghp":["Import a folder to gh-pages branch easily!",C[4]],"^x":["$8 @X @s @w ^x schemes.","0.5.0"],"blingfire-sys":["@H to @4 BlingFire C++ @1","1.0.1"],"olpc-cjson":["serde_json Formatter to serialize as OLPC-style canonical ^k","0.1.1"],"reproto-backend-reproto":["Rethinking ^c Generatorsreproto $N @0 reprotothis @8 writes a schema out as a schema again.","0.3.36"],"async-injector-derive":["A @b to help construct dependent ^V in @J-injector.","0.17.1"],"libappindicator":[C[399],"0.6.1"],"fixed_circular_buffer":["A queue (@4 abstract @w $V) implemented @u a fixed size circular buffer",C[8]],"dotenv-linter":["Lightning-$I linter @0 .env @z","3.1.1"],"trellis_m4":["Board Support @8 @0 @4 Adafruit NeoTrellis M4 Express","0.9.0"],"sled":["Lightweight high-$J ^X-@f transactional ^b ^Q.","0.34.7"],"pcd8544":["@v to communicate @5 &0 to PCD8544 @u embedded_hal as $F layer. WIP",C[3]],"helix":["Embed @3 in $r Ruby","0.7.5"],"lightspeed_^z":["Hash @y.","0.40.1"],"xml5ever":["Push @n streaming @i @0 xml","0.16.2"],"macroquad_@e":["Proc @e @0 macroquad","0.1.7"],"ktmpl":["Parameterized templates @0 Kubernetes manifests.","0.9.1"],"muta-apm":["Muta $U $J monitor.","0.1.0-alpha.15"],"bankholidays":["Bank Holidays @0 England & Wales in @3","1.1.2"],"root-io":["Reading of `.root` $Q @z $i are commonly $2 in particle physics",C[1]],"travis-after-all":["$8 missing `after_all_success` hook @0 Travis","2.0.0"],"trust-dns-client":["Trust-DNS is a $M @5 secure DNS @1. @Q is @4 Client @1 @7 DNSec @j. DNSSec @7 NSEC validation @0 negative records, is @q. $8 @c supports dynamic DNS @7 SIG0 authenticated requests, ^5 &x to $d high @C funtions. Trust-DNS is @n on @4 Tokio @5 Futures &4, $i means it should be easily integrated ^d other software @l also $d those &4.",C[41]],"utf8":["...",C[0]],"tokio-io-pool":["Alternative $v &d pool @0 executing short, I/O-heavy @Z efficiently","0.2.0-alpha.4"],"pathfinder_canvas":["A GPU-accelerated vector ^T renderer @l works $C HTML canvas","0.5.0"],"geodate":["Geodate computes geocentric expressions of points in $z @u a naturallunisolar calendar @7 metric $z @n on decimal fractions of @4 meansolar day.",C[2]],"arraydeque":["A ring buffer @7 a fixed capacity, $i can be stored on @4 stack.","0.4.5"],"mowl":["@K &H @7 coloring @j","2.1.1"],"crev-common":["Scalable, social, Code REView @O @l we desperately need - $u @V","0.21.1"],"bitcoincash-addr":["A @d @1 ^R @4 $5/^P of Bitcoin Cash addresses.","0.5.2"],"ripping":["Ripping is @4 ping toolbox","0.1.6"],"allo-isolate":["Run Multithreaded @3 along @7 Dart VM (in isolate).",C[32]],"letsencrypt-inwx":["A &7 ^y $w @0 automating @4 letsencrypt dns-01 challenge @0 domains hosted by inwx","2.0.2"],"rust-fsm":["A @k @0 $K finite state machines in @3","0.6.0"],"ilda":["A @1 @0 &3 ILDA laser projection display @z.",C[3]],"polly":["A templating @L @0 @3.",C[4]],"google-searchconsole1":[C[220],C[85]],"pallet-contracts-primitives":["A @8 @l hosts a $u $h @l are relevant @0 @4 &v-contracts.","3.0.0"],"lci":["A LOLCODE interpreter $A in @3","0.1.8"],"http-signature-normalization-actix":[C[221],"0.5.0-beta.11"],"ndless":["@3 @1 @0 &2 @7 Ndless @0 @4 TI-Nspire","0.8.7"],"@f_hamming_distance":["Hamming distances @5 bitwise hamming distances","0.1.1"],"libzfs-types":["Shared @g @0 libzfs",C[4]],"shrust":["A @1 @0 $Z interactive @D $D shells in @3","0.0.7"],"buildchain":["Software @0 $Z @5 managing a distributed @5 reproducible chain of builds","0.4.11"],"forkjoin":["A work stealing fork-join parallelism @1 @0 @3","2.3.0"],"rox":["Translates Rox source @V to VHDL","0.1.6"],"aml":["@p @0 @R AML",C[72]],"interval_^0":["A variant of interval ^0 @w $V.",C[3]],"ndarray-csv":["Easily read @5 &0 homogeneous CSV @w to @5 @t 2D ndarrays","0.5.1"],"gimli":["A @1 @0 &3 @5 $O @4 DWARF debugging @G.","0.26.0"],"bitrate":["Extension $3 @l add convenience &P @0 ^p @7 bitrates @5 frequencies.","0.1.1"],"unicode_reader":["Adaptors $i wrap byte-oriented readers @5 yield @4 UTF-8 @w as &h @V points or grapheme clusters.","1.0.1"],"atomic_float":["Floating point @g $i can be safely &J $t threads",C[0]],"xio_webclient":["XIO &e @c","0.18.1"],"derive-newtype":["Proc-@e @2 @0 `newtype`","0.2.3"],"multiarray":["Small @3 @1 @0 ^a multi-dimensional @w","0.1.3"],"cql-ffi-safe":["A $M @h of @4 cql-ffi @8","0.0.7"],"tagsearch":["Filter plaintext @z @n on @keyword tags","0.32.0"],"chema":["An external DSL @0 ^k Schema","0.0.9"],"cfg-regex":["Conversion @t a regular expression to a context-free grammar.","0.1.1"],"fluence-fork-libp2p-noise":[C[222],C[98]],"punycode":["Functions to decode @5 encode Punycode","0.4.1"],"memfd":["A ^X-@3 @1 to work @7 &j memfd @5 sealing","0.4.1"],"rendy-shader":["Rendy's shader compilation ^4","0.5.1"],"raw-window-handle":["Interoperability @1 @0 @3 Windowing @P.","0.3.3"],"$P_batch":["^r ^N @0 @3 - ^r Batch @ 2016-08-10",C[27]],"^L_delimit":["length delimited protobuf ^L separator","0.5.6"],"ruma-identifiers-macros":["$q @a @0 $Z Matrix identifiers.",C[42]],"magic-crypt":["MagicCrypt is a Java/PHP/NodeJS/@3 @1 to encrypt/decrpyt $p, @z, or @w, @u Data Encryption Standard(DES) or Advanced Encryption Standard(AES) ^3. It supports CBC block cipher mode, PKCS5 padding @5 64, 128, 192 or 256-bits key length.","3.1.9"],"sawtooth-zmq":[C[223],"0.8.2-dev5"],"bitbit":["Bit-at-a-$z reader/writer @g",C[3]],"anchor-attribute-state":["Attribute @0 defining a ^U state struct",C[43]],"kf-protocol-derive":["Procedure @e to encode/decode @f $V/enum @u kafka @9",C[3]],"aarch64":["@3 @1 to $d aarch64 specific $7 @5 registers","0.0.6"],"char_reader":["Safely read wild streams as chars or lines",C[0]],"tokio-http2":["^s/1.1 @p (^s/2 coming soon) @u Tokio Project (@F, proto, &t). Used @7 &Y://github.com/lambdastackio/httpd.","0.1.9"],"validr":["Validate @5 modify Deserialize request body @w.",C[3]],"arithmetic":["Minimal fixed point arithmetic $9 @5 @g @0 tetcore @I.","2.1.2"],"tp-runtime":[C[836],"2.1.2"],"xcp":["xcp is a (partial) clone of @4 Unix `cp` @D @7 some more user-&E feedback @5 some optimisations.","0.9.0"],"google-cloudtrace1":[C[674],C[224]],"drm-fourcc":["@W an enum @7 every valid Direct Rendering Manager (DRM) @G fourcc","2.2.0"],"jagged_array":["Owned `[[T]]`-$C 2D array where each row can differ in length.","0.2.4"],"pear_^H":["A (^H) pear is a fruit.","0.2.3"],"enumflags2_@b":["Do not $d directly, $d @4 reexport in @4 `enumflags2` @8. @Q allows @0 better compatibility across versions.","0.7.0"],"crowbook":["Render a Markdown book in HTML, PDF or Epub","0.15.2"],"clap_@b":[C[414],C[225]],"oasis-borsh-derive-internal":[C[226],"0.2.14"],"zlib-src-sys":["@3 $j &w @0 zlib. Licensed as GPL2 or FreeType License",C[4]],"reproto-backend-csharp":[C[89],"0.3.36"],"etcd-rs":["etcd @c @0 @f","0.5.0"],"c2rust-refactor":["C2Rust refactoring ^4 @2",C[23]],"max17048":["A I2C ^j @8 @0 @4 max17048/9 LiPo Fuel gauge IC",C[0]],"otpauth":["Two-step verification of HOTP/TOTP @0 @3","0.4.1"],"math2d":["2D Mathematics @1 designed @0 $d @7 2D drawing applications.Primarily designed @0 @4 needs of Direct2D, but this @1 shouldbe perfectly capable of filling in @4 needs of other &4 suchas Cairo. If you would $C interoperability defitions added please feelfree to open a pull request on @4 repository.Currently ^i @7:- `Direct2D` (winapi @g)- `Mint` (@8)","0.2.0-alpha8"],"gdk4-x11":["@3 @6 of @4 GDK4 X11 @1","0.3.1"],"panic-handler":["Tetcore custom panic hook @7 bug report link","2.1.2"],"rui":["reactiv @f ui a ReactJS $C UI @1","0.0.2"],"plotters-backend":["Plotters Backend @x",C[9]],"gluon_@i":["$8 @i @0 @4 gluon $m @L",C[43]],"tp-state-machine":["Tetcore State Machine","2.1.2"],"keystroke":["Send a $c, character, or keystroke event to @4 @O.","0.0.3"],"raui-ron-renderer":["RAUI renderer @0 RON @G","0.38.2"],"pallet-identity":["FRAME identity ^A &v","3.0.0"],"sophia_iri":["A @3 toolkit @0 RDF @5 Linked Data - IRI ^A","0.7.0"],"pandoc":["a @1 @x @l wraps calls to @4 pandoc 2.x executable","0.8.6"],"dbmigrate":["CLI ^4 to create @5 run ^Q migrations. Postgres, MySQL supported.","0.3.6"],"numext-fixed-uint-hack":[C[903],"0.1.6"],"dummy":["^o @2 of #[@b(Dummy)]",C[2]],"pest-ast":["&n to convert @t pest parse ^0 to typed syntax ^0","0.3.3"],"httpapi-sys":["$L @6 to httpapi. @Q @8 is a placeholder @0 @4 future. If you are interested in this @1 feel free to get in touch @7 me: &z://www.rustaceans.org/retep998","0.0.1"],"jni-bindgen":["Code @B @0 $W to JVM APIs @t @3","0.0.10"],"multi_log":["Logger $i passes &y on to any &a of other loggers.",C[4]],"solana-vote-program":["Solana Vote ^U","1.8.1"],"glass_pumpkin":["A cryptographically secure prime &a @B @n on rust's own num-bigint @5 num-integer","1.2.0"],"dynamic-array":["A dynamically-allocated array of fixed size",C[5]],"deno_webstorage":["@v of WebStorage @x @0 Deno",C[43]],"tokio-xmpp":["&b XMPP @0 @3 @7 $v","3.0.0"],"fastq":["A @i @0 fastq","0.6.0"],"touptek":["@H @0 Touptek ToupLite image acquisition @1","1.1.0"],"json-rules-engine":["&V rules $a","0.9.4"],"frame-support-procedural-tools":[C[250],"3.0.0"],"pic8259":["Abstractions @0 @4 8259 @5 8259A interrupt controllers","0.10.2"],"twilight-http":["Discord REST @x @c @0 @4 Twilight ecosystem.","0.7.0"],"grok":["A @f @2 of @4 popular java & ruby grok librarywhich allows &x ^D @5 log $0 &u @7 composable patterns.","1.2.0"],"robin_@F":["A @d (custom) Lisp to JavaScript source-to-source ^2","0.4.13"],"$Q_@a_impl":["$q @e @T @0 ^P base64-$C encodings in $c literals to [u8] literals.","1.0.0"],"msp430g2211":["Peripheral $X @x @0 MSP430G2211 microcontroller",C[5]],"ruplicity":["@p to read duplicity backups",C[8]],"fluvio-future":[C[403],"0.3.10"],"rustasm6502":["A 6502 assembler in macro_rules!","0.1.3"],"delog":["Deferred &H, an @2 @5 ^h of Rust's ^E &H facade.",C[4]],"braid-triggerbox":["camera synchronization trigger box @0 Braid",C[5]],"rtop":["A @O monitor implemented in @3, Monitors both @O activity @5 GPU activity @0 NVIDIA GPUs","0.1.3"],"earlgrey":["A @1 @0 @R context-free grammars @u Earley $1",C[1]],"subtle-encoding":["Encoders @5 decoders @0 $u @w encodings (base64, bech32, hex)$i avoid @w-dependent branching/table lookups @5 thereforeprovide \"best effort\" constant $z. Useful @0 $5/decodingsecret ^V such as ^w keys.","0.5.1"],"objpool":["Thread-$M ^G object pool",C[3]],"rust-webvr":[C[980],C[95]],"signature_bls":["$8 Ockam BLS signature impementation.","0.26.0"],"libmodbus-rs":["libmodbus @6 @0 @3","0.8.3"],"schemamama_rusqlite":["Rusqlite SQLite3 adapter @0 @4 Schemamama migration @O",C[13]],"btrup":["@K $w to perform BTRFS-@n backups to an external disk","0.1.1"],"serum-borsh":[C[226],"0.8.1-serum.1"],"near-primitives-core":["@Q @8 @s @4 @F set of $9 $2 by other nearcore $R including near-$9",C[2]],"photon-rs":["High-$J image &u @1 @0 &8 $d @5 @4 &e","0.3.1"],"autocxx-macro":[C[227],C[15]],"elastic_requests":["Code ^8 request @g @0 @4 Elasticsearch REST @x.",C[384]],"xcursor":["A @1 @0 loading XCursor themes","0.3.4"],"wedpr_ffi_c_$u":["@p of WeDPR ffi c &J $u ^u.","1.0.0"],"ssd1306":["I2C/SPI ^j @0 @4 SSD1306 OLED display controller","0.7.0"],"gltf-viewer":["@K glTF 2.0 viewer","0.4.1"],"subparse":["Load, change @5 &0 $u subtitle formats (srt/ass/idx/sub)","0.7.0"],"deno":["@W @4 deno executable","1.15.3"],"telium":["Eventually a suite a &4 @0 medical science",C[4]],"character_converter":["Turn Traditional Chinese script ot Simplified Chinese script @5 vice-versa.","1.0.0"],"gstreamer-editing-services":["@3 @6 @0 GStreamer Editing Services","0.17.2"],"google-adexchangebuyer1d4-cli":[C[228],C[63]],"deno_@I":["@W @4 deno @I @1","0.31.0"],"owned-fd":["Ownership @5 lifetimes @0 $0 descriptors",C[0]],"calx-ecs":["Serializable entity component @O @0 games","0.6.1"],"whatlang":["Natural @L detection @1. Identifies @L of a given ^D.",C[28]],"icecream":["Print debugging @7 inspection.",C[0]],"opencc-rust":["Open Chinese Convert(OpenCC, 開放中文轉換) $W @0 @4 @3 @L @0 conversion $t Traditional Chinese @5 Simplified Chinese.","1.1.10"],"xhci":["A @1 to handle xHCI","0.8.2"],"signatory-secp256k1":[C[229],"0.99.0"],"libtor-sys":["@3 @8 @l internally compiles Tor @5 its &c","46.7.1+0.4.6.7"],"charmhelpers":["charmhelpers @s an opinionated set of &1 @0 $K Juju charms","0.1.3"],"gcast-wire":[C[483],"0.1.5"],"solana-remote-wallet":[C[58],"1.8.1"],"dynamic":["A dyanmically typed &5 @7 $I downcasting.",C[5]],"cpp_synom":["Stripped-down Nom @i $2 by cpp_syn",C[28]],"glib-2-0-sys":["Import @8 @0 GLib","0.46.4"],"doccy":["Doccy is a @d brace @n markup @L.",C[9]],"$P":["^r ^N @0 @3","0.24.2"],"yanix":["Yet Another Nix @8: a Unix @x ^t @1 (deprecated)",C[88]],"fern":["@K, ^Z &H","0.6.0"],"speech-dispatcher-sys":["speech-dispatcher @O @6","0.5.2"],"options":["$8 @X @s a @w $V @0 managing named parameters.","0.5.1"],"rectangle-pack":["A general purpose, deterministic bin packer designed to conform to any two or three dimensional $d case.","0.4.2"],"cargo-modules":["A @S $Y @0 showing a ^0-$C overview of a crate's modules.","0.5.6"],"shadertoy":["@3 @1 wrapping @4 Shadertoy REST @x to be able to easily search through @5 download Shadertoy assets.","0.6.1"],"body-image-futio":["Futures @n $n I/O @0 body-image.","2.2.1"],"bailamos":["@K notification &F...","0.11.2"],"wavy":["&b cross-@N real-$z audio recording & playback.","0.9.1"],"shared-bus-rtic":["@W @E @0 sharing peripheral communication buses in an RTIC $U",C[8]],"cryptonote-raw-crypto":["Cryptography Primitives @0 Cryptonote","0.5.7"],"$o_thrift":["Thrift @I @1 @0 @f.",C[9]],"cocoon":["A @d protected container @7 strong encryption @5 @G validation.",C[1]],"ledger-transport":["Ledger Hardware Wallet - &W Transport",C[7]],"ra_ap_^B_@e_^S":["TBD","0.0.79"],"bitvec":["A @8 @0 manipulating $g, bit by bit","0.22.3"],"serde-bytes-repr":["Serde adapter @0 controlling @4 representation of bytes","0.1.5"],"lucet-runtime-macros":["^o @0 @4 Lucet $x @I","0.6.1"],"hyperderive":["Custom derives @0 @4 `hyperdrive` crate.You should never $d this @8 directly. It does not expose a stable @x andmay break at any $z. Use `hyperdrive` directly instead.",C[0]],"unidecode":["@W ^X ASCII transliterations of &h $p.",C[1]],"parse-zoneinfo":["Parse zoneinfo @z @t @4 IANA ^Q",C[1]],"hematite":["A @d Minecraft @c","0.0.34"],"unixbar":["unixbar","0.1.3"],"cs_$6_cbor":[C[653],C[28]],"yacli":["@p @0 $Z CLI &1 @7 a look @5 feel similiar to Cargo","0.6.1"],"alcro":["A @1 to create desktop apps @u @f @5 modern &e technologies","0.5.3"],"$o_^T":["A basic ^T ^S @0 @4 $o @7 an example $U.","0.1.5"],"crfsuite-sys":["@3 $W to crfsuite","0.3.1"],"dicom-test-files":["A $b of DICOM @z @0 $S DICOM parsers.",C[3]],"term-table":["Tables @0 CLI apps","1.3.2"],"rustc-ap-syntax":["^W published $4 of @4 @X `syntax` in @4 @f-lang/@f repository @t commit 834bc5650acf7019a53b409db68986857822812c $8 publishing script @0 this @8 lives at: &Y://github.com/alexcrichton/&K-auto-publish","645.0.0"],"rustc-ap-rustc_span":["^W published $4 of @4 @X `rustc_span` in @4 @f-lang/@f repository @t commit 9a27044f42ace9eb652781b53f598e25d4e7e918 $8 publishing script @0 this @8 lives at: &Y://github.com/alexcrichton/&K-auto-publish",C[215]],"seed":["A @3 @k @0 $Z &e apps, @u $x",C[7]],"urlencoded":["Decoding &G @0 url-encoded @w. For $d @7 Iron.","0.6.0"],"solana-rpc":["Solana RPC","1.8.1"],"pkgar":["Redox Package Archive","0.1.6"],"gitlab_clippy":["Convert clippy warnings ^d GitLab Code Quality report","1.0.2"],"thunder":["Create @d commandline apps @7 *zero* boilerplate!","0.3.1"],"veclist":["@Q @1 contains single @d $b. It can be $2 to push, $X @5 pop @7 `O(1)` complexity",C[4]],"moz-cheddar":[C[230],"0.4.2"],"^B_@e_roids":["Traits @5 @y to make $O ^B @a more ergonomic.","0.7.0"],"wasm-gc":["A CLI ^4 to garbage collect webassembly modules","0.1.6"],"xio_webapi":["XIO &e @x @w $k",C[95]],"gdkx11":["@3 @6 @0 @4 GDK X11 @1",C[24]],"fuchsia-zircon":["@3 @6 @0 @4 Zircon kernel","0.3.3"],"xlsx_reader":["Reader of XLSX @z (only @w)","3.1.1"],"web-sys":["@H @0 all Web APIs, a procedurally ^8 @8 @t WebIDL","0.3.55"],"libftd2xx":["@3 $M @h $G @4 libftd2xx-ffi @8.","0.31.0"],"ipaddress":["an @1 to handle ipv4 @5 ipv6 ^M",C[4]],"default-boxed-derive":["Custom @b @0 default-boxed","0.1.6"],"amethyst_audio":["Audio @j @0 Amethyst",C[99]],"prost":[C[231],"0.9.0"],"peek":["A query @L @0 serializable @w $k.","0.3.1"],"lhi":["Lightweight ^s @1","0.0.2"],"rci":["Check if $r tests are running in a continuous $T &t","0.1.1"],"xmc4700":["XMC peripheral @1 @0 XMC4700 ^8 @t SVD",C[2]],"proxer":["Access @4 ProxerMe @x @7 @3","0.3.5"],"extend":["Create &p @0 @g you don't own @7 ^h $3 but ^Y @4 boilerplate.","1.1.2"],"gstreamer-app":["@3 @6 @0 GStreamer App @1","0.17.2"],"mqttc":["Mqttc is a @c @0 @4 MQTT @9.","0.1.4"],"swc_ecma_transforms":[C[151],"0.90.0"],"zcash_history":["@p @0 Zcash blockchain history &1",C[3]],"$M_&Q":["A convenience @1 ^R abstractions @0 ^w @y.",C[7]],"gstreamer-video-sys":["$L @6 to libgstvideo-1.0",C[26]],"rzbackup":["RZBackup","3.4.0-alpha0"],"mioco":["Scalable, $n IO coroutine-@n ^a (aka MIO COroutines).","0.8.1"],"fat-macho":["Mach-O Fat Binary Reader @5 Writer","0.4.4"],"vm-superio":["Emulation @0 legacy &N","0.5.0"],"actionable":["An enum-@n @J @k @0 $K permission-driven APIs",C[59]],"rec":["Regular Expression Constructor",C[16]],"bufkit-data":["A @8 to manage an archive of bufkit @z.","0.21.0"],"mscorlib-sys":["Raw $L @6 @0 mscorlib",C[38]],"pcsclite-sys":["$L @6 @0 pcsclite.",C[4]],"cargon":["Thin @h $G @4 Argon2 C @1. Used in argon2rs' bench suite.","0.0.1"],"bincode_ext":["Types & @y to extend @4 $7 of bincode.","0.0.7"],"trip":["Finds tripcodes @l contain patterns","0.1.12"],"brain":["Compiler @0 @4 brain $m @L. Compiles brain ^d optimized brainfuck @V. Also includes a brainfuck interpreter.",C[4]],"nginx":["@3 @6 @0 NGINX @x",C[13]],"nextcloud_appinfo":["@p to read app info of an Nextcloud app","0.6.0"],"librespot":["An open source @c @1 @0 Spotify, @7 @j @0 Spotify Connect","0.3.1"],"match_all":["@Q @8 @s a match_all! @e @0 matching &l patterns","0.2.5"],"log4rs":["A highly configurable multi-&Z &H @2 @0 @4 `log` facade","1.0.0"],"framp":["Fork of James Miller's Ramp, a high-$J &l-precision arithmetic @1","0.3.7"],"amy":["Polling @5 Registration abstractions $G kqueue @5 epoll @0 multithreaded @J ^9 $m",C[13]],"libenclave-tools":["Tools @0 $K @5 linking enclaves @u libenclave","0.1.4"],"harp":[C[232],C[0]],"nanopow-rs":["Small @3 @1 to ^n proof of work @0 @4 Nano cryptocurrency.","0.3.3"],"radix-tree":["A radix ^0 @2 @0 router, path search",C[0]],"mashup":[C[233],C[234]],"reed-solomon":["Reed-Solomon BCH encoder @5 decoder @7 @j of no_std ^K",C[5]],"diwata_^y":["Command $D @0 diwata","0.1.6"],"rp2040-boot2":["Raspberry Pi RP2040 SoC second stage bootloader.",C[3]],"redshift":["@3 @1 @0 @R redshift @z ^8 by @4 UNLOAD @D.","1.0.3"],"atomicring":["AtomicRingBuffer is a constant-size almost lock-free concurrent ring buffer","1.2.8"],"anchor-attribute-account":["Anchor &U @e @0 defining an account",C[43]],"vrp-pragmatic":["An ^h logic @0 solving rich VRP","1.11.5"],"z3tracer":["&B @0 Z3 &g logs","0.11.2"],"quick-protobuf":["A ^X @3 protobuf (de)serializer. Quick.",C[7]],"hyper-multipart-rfc7578":["An @2 of multipart/form-@w (RFC7578) @0 Hyper","0.5.1"],"capnp-nonblock":["[deprecated] A Cap'n Proto message serializer @5 deserializer @l works @7 non-blocking streams.",C[2]],"blobber":["Create an arbitrary length of $c.","0.1.7"],"cipher-crypt":["A ^w tomb of ciphers forgotten by $z.",C[43]],"moodyblues-sdk":["A tracer ^N @0 Overlord $C &A $1",C[1]],"ra_ap_base_db":["TBD","0.0.79"],"wavelet-matrix":["A wavelet matrix @2. Supports various near-O(1) queries on large &a of symbols or integers.","0.4.7"],"prototty_input":["Normalized input $l @0 prototty @P","0.29.0"],"gelatin":["A basic UI @k","0.7.0"],"futex":["&j futex-@n lock @T.","0.1.3"],"add-remote":["An interactive CLI ^4 to add a remote fork to a local Git repository.","3.0.1"],"nonblock":["Read available @w @t $0 descriptors ^Y blocking (e.g. sockets, streams, child stdout, named pipes)",C[0]],"yard":["shunting yard @2 in @f","1.0.0"],"udp_@U":["$I udp @U frame.","0.4.1"],"metadeps":["Run pkg-config @t declarative &c in Cargo.toml","1.1.2"],"diesel_^y":["@W @4 CLI @0 @4 Diesel @8","1.4.1"],"banyan":["Persistent indexable ^0 @w $V",C[72]],"freefare":["@3 @6 @0 @4 libfreefare @1",C[3]],"w5500-hl":["Driver @0 @4 Wiznet W5500 internet offload chip.","0.5.0"],"parze":["A clean, ^Z @i combinator","0.7.3"],"ttdl":["TTDL - Terminal ToDo List &F","3.1.0"],"block-buffer":["Fixed size buffer @0 block &u of @w","0.10.0-pre.4"],"vergen":["Generate 'cargo:rustc-env' instructions via 'build.rs' @0 $d in $r @V via @4 env! @e","5.1.16"],"spandoc-attribute":[C[460],"0.1.1"],"libh3-sys":["@H to Uber's Hexagonal Hierarchical Spatial Index - H3","0.1.3"],"content_inspector":["Fast inspection of $Q buffers to guess/determine @4 $5","0.2.4"],"alsa-sys":["$L @6 @0 @4 ALSA ^g (Advanced &j Sound Architecture)","0.3.1"],"rcon":["An rcon @9 @2","0.5.1"],"prost-amino":["An @2 of @4 Amino @M @0 Tendermint/Cosmos in @4 @3 &R. See &Y://github.com/tendermint/go-amino @0 details.","0.6.0"],"ilda-idtf":["A @q @2 of @4 ILDA Image Data Transfer Format Specification, Revision 011, 2014-11-16.",C[0]],"pastebin_@f_^S":["@p @0 posting content to pastebin.com","0.5.14"],"c3p0_in_$g":[C[334],"0.63.1"],"daemonizer":["A @d @1 to privdrop @5 daemonize $r ^U.","0.4.2"],"evercrypt":["Crypto @1 @u formally verified @V @t HACL/Evercrypt","0.0.10"],"warp":["serve @4 &e at warp speeds","0.3.1"],"raui-core":[C[235],"0.38.2"],"kad":["A ^G / @Z @n @2 of @4 Kademlia Distributed Hash Table (DHT)","0.6.1"],"groupby":["Group lines by regex","0.1.5"],"badtouch":["Scriptable ^9 authentication cracker","0.7.3"],"bittrex":["Bittrex @x @6 @0 @3.",C[7]],"postgis":["An ^h to @f-postgres, adds @j @0 PostGIS.","0.9.0"],"os-id":["@W OS ids abstractions @0 ^I @5 &d","2.0.2"],"tempan":["$8 @1 @s an exponential-integrator-@n solver @0 systems ofdifferential-algebraic equations modeling temperature of electronic systems.","0.0.7"],"RustyXML":["A SAX-$C streaming XML @i, @5 a DOM-$C @m @n on @l",C[1]],"functor":["Covariant, contravariant, invariant @5 bivariant functors.",C[4]],"operator-sugar":["Makes operator overloading in @3 more concise @5 intuitive",C[4]],"coral":["A @1 @l parses &Z @t `@S check`, @5 a ^y ^4 @l uses @4 @1 to print compact ^q &y.","0.9.2"],"ruin":["Future proof ^s Web @U $A in @3",C[0]],"lab":["Tools @0 converting RGB colors to @4 CIE-L*a*b* color space, andcomparing differences in color.",C[16]],"threshold-secret-sharing":["A ^X-@3 @2 of various threshold secret sharing schemes",C[8]],"basebits":["A @1 @0 $5 DNA ^d u64 to allow @0 constant $z hamming distance calculations.","1.2.0"],"lamedh_attributes":[C[236],C[1]],"please":["Foundation @0 ^5 long-lived ^Q locks",C[5]],"sauron-core":[C[237],"0.43.9"],"jrpc":["@g @0 @4 jsonrpc specification, ultra ^O","0.4.1"],"nuklear-backend-gfx":["A gfx-rs drawing $N @0 @3 @h @0 Nuklear 2D GUI @1","0.9.0"],"matrix-sdk-base":["$8 base component to $j a Matrix @c @1.","0.4.1"],"delegate":["Method delegation @7 less boilerplate","0.6.1"],"googapis":["@Q @1 ^8 @t Google @x @u tonic-$j.","0.5.0"],"peg":["A @d Parsing Expression Grammar (PEG) @i @B.","0.7.0"],"cranelift-codegen":[C[852],"0.77.0"],"post-expansion":["Strip attributes after #[@b(...)] expansion",C[3]],"atomic-polyfill":["Atomic polyfills, @0 targets where they're not available.","0.1.4"],"simplebase":["A @d to $d ^Q @1","0.3.35"],"asn1_@b":["#[@b] @j @0 asn1","0.8.5"],"t1ha":["An @2 of @4 T1AH (Fast Positive Hash) ^z @Y.",C[0]],"codegenta":["A model @V @B @t ^Q table @u rustorm ORM","0.0.8"],"^q_def":["A @3 syntax ^h @0 $E ^q-^a boilerplate @V.","0.3.16"],"mtdparts":["parses /^B/mtd",C[3]],"newbee":["this is a rdb streamed @i","0.1.7"],"bashdoc":["A ^4 @0 $E documentation/help menu @0 user defined bash @y.","0.5.2"],"tide-server-timing":["Server-Timing @j @0 Tide + Tracing",C[72]],"sqlite3-sys":["$8 @X @s @6 to SQLite.",C[15]],"enum_@t_str":[C[272],C[0]],"jammdb":["An ^b single-$0 ^Q @0 @3","0.5.0"],"openblas-src":["$8 @X @s a source of BLAS @5 LAPACK via OpenBLAS.","0.10.4"],"classifier-measures":["Receiver Operating Characteristic (ROC) @5 Precision-Recall curve (PR) computation","0.4.3"],"piston-float":["Traits @0 ^G floats in game &D","1.0.1"],"cgroups-rs":[C[308],"0.2.6"],"enum_to_u8_slice_@b":["A @d fork of enum_to_str_derive (by @DCjanus), convert enum to u8 slice ref",C[3]],"markab_@i":["A @d, copy-less @5 rich-^q-message @i combinator @1.","0.7.0"],"snarkvm-utilities":["^e @0 a decentralized virtual machine","0.7.9"],"$6_^H_internals":[C[477],"0.14.2"],"dgraph_query_lib":["A @1 @l allows you to express dgraph queries, mutations, upserts, @5 schemas in @V.",C[0]],"mio-uds":["Unix domain socket @6 @0 mio","0.6.8"],"carrier":["carrier is a ^G secure message @O @0 IoT","0.12.2"],"fit":["A &7 @8 $2 @0 &3 @5 ^P FIT @z ^8 by sports &N.","0.5.0"],"rsmorphy":["Morphological analyzer / inflection $a @0 Russian @5 Ukrainian (soon) languages (WIP)",C[2]],"lightspeed_scheduler":[C[531],"0.40.1"],"mmal-sys":["@3 $h @0 mmal","0.1.0-3"],"tower-util":["^e @0 ^p @7 `Service`.","0.3.1"],"sha2-asm":["Assembly @2 of SHA-2 ^C @y","0.6.2"],"parse_int":["Parse &str @7 $u prefixes to integer ^V","0.6.0"],"systemstat":["systemstat",C[32]],"iota-spammer":["A iota transaction spammer","0.0.11"],"flexlint":["A flexible linter @7 rules defined by regular expression","0.2.6"],"edit-distance":["Levenshtein edit distance $t $p, a measure @0 similarity.","2.1.0"],"vulkano-win":["Link $t vulkano @5 winit","0.26.0"],"hotwatch":["A @3 @1 @0 conveniently watching @5 ^a $0 changes.","0.4.6"],"dump":["A @d @e @l takes one or more variables @5 prints @4 name, $l, andvalue of each variable. $8 &Z is also prefixed @7 [source_file:line_no].","0.1.1"],"empty":["$8 empty list @5 iterator","0.0.4"],"blinds":["Wrap an @J $F &6 a window",C[3]],"ff_derive-zeroize":[C[238],"0.6.2"],"jsonrpc-stdio-server":["STDIN/STDOUT @U @0 ^k-RPC","18.0.0"],"sentiment":["Sentiment analysis ^4","0.1.1"],"ownedbytes":["Expose @w as &k slice",C[3]],"google-speech1_beta1":["A @q @1 to @o @7 Speech (@9 v1beta1)",C[239]],"stackfmt":["Write formatted $c to a buffer ^Y alloc","0.1.1"],"display-interface":["Traits @0 interfaces $2 to drive displays","0.4.1"],"c2rust-transpile":["C2Rust transpiler @2","0.15.1"],"fftw3-sys":["Low-@C @6 to @4 FFTW3 @1.","0.0.2"],"size_@G":["Allows @0 easier formatting of sizes.","1.0.2"],"libflo_dynamic_event":["A deprecated @1 @0 $E ids in libflo.",C[4]],"cpython":["@H to Python","0.7.0"],"pagecache":["lock-free pagecache @5 log @0 high-$J databases","0.19.4"],"oxygengine-integration-vn-cr":["Integration ^F of visual novel @5 composite &S @0 Oxygen Engine","0.19.2"],"hexf-impl":["Hexadecimal float @j @0 @3 (auxiliary @8; see also hexf)",C[0]],"pallet-finality-tracker":["FRAME Pallet @l tracks @4 last finalized block, as perceived by block authors.","2.0.1"],"nu_$Y_fetch":["A URL fetch $Y @0 Nushell","0.36.0"],"swc_ecma_preset_env":["preset-env @0 @4 swc","0.61.0"],"luminance-derive":["$q @a @0 deriving luminance $3","0.7.0"],"csrf":["CSRF protection $9","0.4.1"],"utf-8":["Incremental, zero-copy UTF-8 ^P @7 ^q ^a","0.7.6"],"google-youtube3":[C[240],C[92]],"yaxpeax-x86":["x86 decoders @0 @4 yaxpeax ^g","1.1.1"],"chipmunk-sys":["System @C @6 to @4 chipmunk 2d game $a.","0.0.4"],"drone-stm32-map-pieces-4":[C[46],C[24]],"generic-bytes-derive":["A @e @0 derivation of SizedBytes, a $y @0 conversion to @5 @t an array of bytes @7 a $l-@C size",C[0]],"sparkpost":["@3 @6 @0 sparkpost email ^S v1","0.5.4"],"holochain_persistence_mem":["persistence @0 content addressable ^x @5 entity &U &5 indexes. A @d, &d-$M in $g store.","0.0.18"],"kpathsea":["@3 @m to @4 kpathsea TeX $0 ^A @1.",C[8]],"ggez-goodies":["Various &7 useful add-ons @0 @4 ggez game @k","0.5.0"],"sct":["Certificate transparency SCT verification @1","0.7.0"],"trim":["trim whitespaces @t @z","2.0.2"],"fd-lock":["Advisory cross-@N lock on a $0 @u a $0 descriptor to it.","3.0.0"],"streampager":["streampager is a pager @0 @D &Z or large @z",C[13]],"ark-ff-macros":[C[809],C[1]],"genco-macros":[C[609],"0.15.1"],"devicon-lookup":["Prepend @4 correct devicon to @4 beginning of each filename",C[7]],"auto-enum":["@W &U @a @0 $K enums $i are convenientfor $d @7 $L, along @7 \"enum\" flags.","0.2.0-alpha1"],"brain-brainfuck":["Brainfuck interpreter companion to @4 brain $m @L","1.3.0"],"tail":["Tail @2 in @3 @l is performant @5 resistant to $0 truncations",C[1]],"rocket_cors":["Cross-origin resource sharing (CORS) @0 Rocket.rs @P","0.5.2"],"quic-p2p":[C[1015],"0.7.1"],"twitter_^D_@i":["&B @0 twitter-^D in @3.",C[3]],"modexp":["A modular exponentiation @8 @0 BigInts",C[8]],"noble-society":["FABRIC society noble","2.0.0"],"google-cloudtasks2_beta2-cli":[C[241],"2.0.4+20210315"],"domain-resolv":["An $n DNS stub resolver.","0.5.1"],"rusty-tcl":["Run tcl in @3!",C[13]],"hello_exercism":["how to create an own @8","0.5.5"],"roux":["@K @5 asyncronous Reddit @x @h","1.3.7"],"@f_icu_ustring":["&M @6 to @4 ICU4C @1 @t Unicode.ustring.h","1.0.3"],"^B_self":["Cross-@N `/^B/self` functionality.This @1 enables limited `/^B/self` $7, including getting @4 current executable, open $0 descriptors, @5 paths @0 open $0 descriptors @l can be passed to e.g. `exec` (@0 those systems ^Y `fexecve`).Integrated ^d &Y://github.com/alecmocatta/palaver",C[3]],"serdeval":["Serde dummy @g @0 $I @5 $g ^Z typed validation.",C[0]],"cache_loader_@J":["A &d $M loading cache @7 @J loader @y @n on $v",C[4]],"glib":["@3 @6 @0 @4 GLib @1","0.14.8"],"croaring-mw":[C[596],"0.4.5"],"ilc":[C[164],C[1]],"enso-generics":["A @1 @0 supporting ^G $m.",C[3]],"yubirs":["A @1 @0 &2 @7 YubiKeys (OTP @5 PIV $7)","0.7.0"],"sdset":["Set $B @0 sorted @5 deduplicated slices.Much performances! Such Wow!",C[2]],"fluence-fork-libp2p-uds":[C[242],"0.27.1"],"teleborg":["A Telegram bot @x.","0.1.32"],"chess_pgn_@i":["Chess Portable Game Notation @i",C[4]],"numrs":["A numerical computations @1 @0 @3",C[3]],"scoped-tls-hkt":["A more flexible $4 of `scoped-tls`, allowing @4 following additionalfeatures:- Storage of references to dynamically sized @g.- Storage of mutable references.- Storage of @g containing unbound lifetime parameters (higher-kinded @g).- Some combination of @4 above.",C[4]],"sysadmin-bindings":["@3 @6 @0 StarryInternet/sysadmin. Sysadmin is an ^b ^Q @5 @O $H ^4","2.1.0"],"relm-core":["Core streams @5 event loop $9 @0 $n GUI in @3. Foundation @0 @4 relm @8.",C[72]],"datasize":["A simplified heap $g size estimator","0.2.9"],"async-native-tls":["&M TLS @u @Z","0.3.3"],"influxdb-line-protocol":["@3 @2 of InfluxDB's $D @9",C[3]],"google-siteverification1-cli":[C[799],"2.0.4+20191119"],"hunter":["Fast, lag-free $o $0 browser","1.3.5"],"memory-cache-rs":["@K local in-$g cache @0 @3",C[3]],"order-stat":["Compute order statistics efficiently via @4 Floyd-Rivest algorithmand estimate a median via @4 median-of-medians $1.","0.1.3"],"crypto-crawler":["A rock-solid cryprocurrency crawler.","3.1.6"],"expression-closed01":["Expression terms in @4 closed [0,1] interval",C[5]],"imag-bookmark":["Part of @4 imag @F ^m: imag-bookmark @D",C[12]],"$P_dynamodbstreams":["^r ^N @0 @3 - Amazon DynamoDB Streams @ 2012-08-10",C[27]],"columnar":["High-throughput @M @5 &9 @0 some @3 @g","0.0.19"],"sendfd-new":[C[610],C[2]],"dbghelp-sys":["Contains @Y $h @0 @4 ^6 @x @1 dbghelp. See winapi @0 @g @5 constants.",C[3]],"cosmwasm-crypto":["Crypto @6 @0 cosmwasm contracts",C[97]],"handlebox":["A map-$C $b @l reuses unused keys",C[1]],"parsec":["@v of ^c @0 &b, Reliable, Secure @5 Efficient Consensus","0.7.3"],"iata":["Some @T of IATA resolutions","0.8.0-alpha.2"],"envconfig":[C[243],C[13]],"zuse":["$8 flexible uptime bot, a descendant of @4 @3 @J masterrace.","0.4.11"],"fctool":["Tool @0 Creating Files","0.5.0"],"int-enum":[C[363],C[2]],"nuklear-sys":["Raw @6 to Nuklear 2D GUI @1","4.0.5"],"iron-csrf":["CSRF protection @0 @4 &e @k Iron",C[2]],"parity-util-mem-derive":["Crate @0 $g reporting",C[0]],"@f_sodium":[C[244],"0.10.2"],"wccg-models":[C[500],"0.10.7"],"sn_url":["Safe URL","1.1.5"],"pallet-balances":["FRAME &v to manage balances","3.0.0"],"shared-bus":["Abstraction @0 sharing a bus $t &l &N.",C[8]],"idcontain":["Generational (or tagged) ID-@n containers.","0.7.6"],"simplesvg":["Very @d drawing/diagramming @1 @7 svg &Z.",C[2]],"endian_codec":["(De/En)@V @f @g as packed bytes @7 specific order","0.1.1"],"$Y":["Lazily evaluated, order-independent plugins @0 extensible @g.","0.2.6"],"oauthcli":["@v of OAuth 1.0 (@5 Twitter's f*ckin' OAuth) Client","2.0.0-beta-2"],"fasteval":["Fast evaluation of algebraic expressions","0.2.4"],"nature-demo":["Demo to show how to $d Nature","1.0.0"],"mli":["Machine Learning Interface @0 @3",C[16]],"chainerror":["Make chaining errors &x.","0.7.0"],"codeviz":[C[75],C[8]],"double-checked-cell":[C[245],"2.1.0"],"binwrite":["A @3 @8 @0 helping &0 &o as $Q @w @u ✨@e magic✨",C[5]],"http-endpoint":["Declarative specification of ^s endpoints.","0.5.0"],"golem":["A (mostly) $M @1 @0 ^T $m","0.1.7"],"kooka_lib_messenger":["Communication $t services by @u Nats",C[4]],"includedir_^H":["Include a whole directory ^0 at compile $z! - Compile $z part","0.6.0"],"batchcensor":["A ^4 @0 batch-censoring audio @z.","0.5.0"],"flat-tree":[C[246],"5.0.0"],"jl-sys":["jl-@r contains @4 ^8 @6 @0 @4 Julia C @x $2 by jlrs.",C[15]],"fsio":["File System @5 Path $w @y.",C[1]],"cassandra":["A usable Cassandra CQL ^j (this replaces @4 previous cql-ffi @X).Wraps @4 DataStax c++ &8 ^j @5 uses cql-bindgen via @f-bindgen.Works @7 nightly","0.8.1"],"wasmtime-provider":["A wasmtime $a provider @0 @4 waPC host","0.0.7"],"amethyst_&1":["Game &D &1 @0 @4 Amethyst $a",C[16]],"ncount":["A word count ^4 intended to @b useful stats @t markdown.","0.5.7"],"frunk-enum-derive":["&n @a to implement @4 frunk::LabelledGeneric $y on enums",C[5]],"bit-array":["A compile $z sized array of bits","0.4.4"],"type-info":["Meta $l $f @5 $l reflection at compile-$z @5 @I.",C[5]],"js_ffi":["A $L @1 @0 calling javascript",C[7]],"rustacuda_@b":["Custom &n Macro @0 RustaCUDA",C[4]],"sentry-anyhow":["Sentry $T @0 anyhow.",C[88]],"tz":["@p @0 @R zoneinfo @z",C[5]],"runtime-attributes":["Proc Macro attributes @0 @4 Runtime @8.",C[197]],"sgx_serialize_@b_internals":[C[21],"1.1.1"],"clokwerk":["A @d @3 recurring task scheduler, similar to Python's schedule","0.4.0-rc1"],"lnpbp_@b":["LNP/BP Core @p @b @a",C[119]],"osmesa-sys":["OSMesa @1 @6 @0 @3",C[4]],"gfx-descriptor":[C[247],C[3]],"open":["Open a path or URL @u @4 ^U configured on @4 @O","2.0.1"],"iced_@F":["$8 essential concepts of Iced",C[2]],"avro":["A @3 @2 of Apache Avro",C[5]],"vecfx":["Extra batteries @0 a vec of floats",C[3]],"clingo-derive":["&n @e @0 @4 clingo @8",C[3]],"ritelinked":[C[494],C[9]],"stm32f30x-hal":["HAL @0 @4 STM32F30x family of $s",C[3]],"stream-reduce":["Fold a ^L ^Y an initial &5",C[0]],"wf2_@F":["$8 $a @0 WF2","0.31.0"],"aes-gcm-siv":["Pure @3 @2 of @4 AES-GCM-SIV Misuse-Resistant AuthenticatedEncryption Cipher (RFC 8452) @7 optional architecture-specifichardware acceleration","0.10.3"],"codespan":["Data $k @0 tracking locations in source @V",C[17]],"easy-error":["@K ^q @E","1.0.0"],"repsheet_etl":["ETL &1 @0 repsheet","0.0.4"],"mousse":["A set of encoder @5 decoder @0 @U sent events","0.1.1"],"heaptrack":["Easily track heap usage @7 this ^l @h.",C[2]],"ntp":["@p @0 @R @5 communicating &6 Network Time ^c.","0.5.0"],"map_in_place":["Reuse @4 $g of a Vec, Box<[T]> or Boxwhen mapping @4 elements if possible.",C[0]],"^u":["&O @E suitable @0 $d in @3 Builders","0.0.3"],"google-storage1":[C[248],C[92]],"lep":["Mini @L @0 interactive consoles, featuring &7 @V footprint.","0.4.5"],"mownstr":["Maybe Owned String","0.1.1"],"exonum-api":["^s @x $a of @4 Exonum @k","1.0.0"],"posix_mq":["(Higher-@C) @3 @6 to POSIX message queues","0.9.0"],"sanitize-filename-reader-friendly":["A filename sanitizer aiming to produce reader &E filenames.","2.1.1"],"pyproject-toml":["pyproject.toml @i in @3",C[3]],"arrsac":["From @4 paper \"A Comparative Analysis of RANSAC Techniques Leading to Adaptive Real-Time Random Sample Consensus\"","0.9.0"],"@d_bencode":["@K bencode encoder @5 decoder, @l uses neither &K-serialize or Serde. Instead, it serializes @t / deserializes to a ^0 @u a 4-branch enum.","0.1.4"],"lorawan":["Crate lorawan @s $k @5 &1 @0 &3 @5 $O LoRaWAN &y @t @5 to a slice of bytes.","0.6.1"],"dircpy":["Copy directories recursively @7 flexible options.","0.3.8"],"cargo-web":["A Cargo &i @0 @4 @c-side Web","0.6.26"],"google-sqladmin1_beta4-cli":[C[950],"2.0.4+20210321"],"gemma_m0":["Board Support @8 @0 @4 Adafruit Gemma M0",C[13]],"telegram-bot-fork":[C[443],"0.7.8"],"lebicon":["Implements codicon $3 @0 LEB128 $5 / ^P","4.0.0"],"network-ethernet":["A domain model of ethernet @5 virtual LAN packets @5 associated @g.","0.1.9"],"twiddle":["Bit-twiddling $w @y","1.1.0"],"log-once":["Collection of ^t @a @0 &H some events only once.","0.3.1"],"pallet-multisig":["FRAME multi-signature dispatch &v","3.0.0"],"mime-db":["Media Type Database, looks up `^h` or `media $l`.","1.6.0"],"pbp":["bridge non-PGP @O to PGP @w @G",C[2]],"fluence-fork-libp2p-deflate":[C[249],"0.27.2"],"rstatic":["Static $0 serve by @3","0.1.3"],"genio":["A $l $M, low @C replacement @0 `std::io`.Supports `no_std` @0 ^b &D, just disable @S feature`std`.Because of limitations of `std::io::Error` $l, `genio` @s `Read` @5`Write` $3 @l allow implementors to choose their own $l. @Q $l canbe better at expressing what kinds of ^q can happen.",C[5]],"@b":["A @1 ^R a minimal example of a derivable $y (via companion @8 @b-@b) @0 $S @5 illustration","1.0.0"],"casual_logger":["What a bother. I want to &H it ^Y setting it.","0.6.5"],"toml-cli":["A @d CLI @0 editing @5 querying TOML @z.",C[3]],"inet2_addr":["Internet2 addresses @7 @j @0 Tor v2, v3","0.5.0"],"calculate":["@3 @1 @0 @R @5 &u arithmetic expressions","0.5.1"],"stringslice":["A $b of &P to slice $p @n on character indices rather than bytes",C[4]],"zeroize_@b":["Custom @b @j @0 zeroize","1.2.0"],"&L_color":["@3 @8 @0 $E &L attractive colors","0.6.1"],"imag-tag":["Part of @4 imag @F ^m: imag-tag @D",C[12]],"grin_keychain":[C[168],"5.1.0"],"goldentests":["A golden $0 $S @1 where tests can be configured within @4 same ^7 $0","0.3.8"],"samp-sdk":["@H @0 C SA:MP ^N","0.9.2"],"rustbox":["A @f @2 of @4 termbox @1",C[16]],"leftwm":["A window &F @0 Adventurers","0.2.9"],"lut_@i":["&B @0 LUT @z","2.1.1"],"risp":["A rusty Lisp &X by Clojure @0 usage as @d $H @L","0.7.0"],"jsonpath_lib-fl":[C[489],"0.3.7"],"git-version":["Compile @4 git $4 (tag name, or ^z otherwise) @5 dirty state ^d $r ^U.","0.3.5"],"wsl":["Detect if @4 ^U is running under ^6 Subsystem @0 &j",C[0]],"lttb":["An @2 of @4 Largest Triangle Three Buckets $1",C[3]],"cargo-sort":[C[446],"1.0.5"],"gen-z":["Macro-free ^L construction through $n generators via an awaitable sender",C[0]],"uni-app":["&8/&s compatibility layer @0 window creation, input @5 filesystem","0.1.3"],"dma_gpio":["Just @4 name repo",C[3]],"oftlisp":["A ^2 @5 interpreter @0 OftLisp, in @3.","0.1.3"],"bitfinex":["@3 @p @0 @4 Bitfinex @x","0.5.0"],"shellwords":["Manipulate $p according to @4 word @R rules of @4 UNIX Bourne shell.","1.1.0"],"rlink":["High $J Stream Processing Framework","0.6.16"],"versionize":["A $4 tolerant @M/&9 @k.","0.1.6"],"bmemcached":["Memcached $Q @9 in ^X @f @7 @j @0 'pools' @5 consistent hashing. (For now minor versions will break @x until v1 is released)","0.5.0"],"ece":["Encrypted Content-Encoding @0 ^s @3 @2.","2.1.0"],"civil":["a @1 to @j civil engineering @P (WIP)","0.1.7"],"libv4l-sys":["A $L to libv4l",C[8]],"elliptic-curve":["General purpose Elliptic Curve Cryptography (ECC) @j, including typesand $3 @0 representing various elliptic curve forms, scalars, points,@5 public/secret keys composed thereof.","0.10.6"],"poisson":["Poisson-disk ^m @B.",C[12]],"mailstrom":["Email sender","0.7.0"],"crypto-pair":["Normalize cryptocurrency trading pairs","2.0.7"],"bvh":["A $I BVH @u SAH","0.6.0"],"qp-trie":["An idiomatic @5 $I QP-trie @2 in ^X @3, $A @7 an emphasis on safety.","0.7.7"],"fabric-support-procedural-tools":[C[250],"2.0.1"],"freetype":["@H @0 Freetype $2 by Servo","0.7.0"],"stoppable_&d":["A @h @0 &d @l allows it to be easily stopped cooperatively",C[5]],"chronoutil":["Powerful &p to rust's Chrono @8","0.2.3"],"mongodb-cursor-pagination":["@W cursor @n pagination @0 @4 &8 MongoDB ^j in @3.","0.2.9"],"serde-xml-rs":["xml-rs @n deserializer @0 Serde (^i @7 0.9+)","0.5.1"],"cmdex":["Search @0 those commands you don't remember!","0.2.7"],"clapme_@b":[C[251],C[32]],"target_info":["Get ^D $p of attributes concernign @4 $j target.",C[0]],"blocking-permit":["Permits @5 a &d pool @0 blocking $B","1.3.2"],"json-trait-rs":["@3 @m (aka $y) to deal @7 objects as they are ^k objects",C[16]],"bevy_math":["@W math $7 @0 Bevy Engine","0.5.0"],"wasmer-clif-backend-fl":[C[360],C[26]],"yacrd":["Using all-against-all read mapping, yacrd performs: computation of pile-up coverage @0 each read @5 detection of chimeras","0.6.2"],"uciengine":["Use chess $a @h supporting uci @D necessary @0 playing a game. Analysis is not supported.","0.1.33"],"actix-governor":["A rate-limiting &G @0 actix-&e backed by @4 governor @8","0.2.4"],"gluon_repl":["REPL @0 gluon. A &k, $l inferred $m @L @0 $U embedding",C[43]],"persia-speedy":[C[264],"0.9.0"],"password-store":["gopass @h @1.",C[2]],"cosey":["Data @g @5 $6 @0 public COSE_Keys",C[1]],"phaser":["High-$J attack surface mapper @5 vulnerability scanner","0.7.8"],"noble-membership":["FABRIC membership ^A noble","2.0.0"],"rustpython-bytecode":["RustPython specific bytecode.",C[4]],"plotters":["A @3 drawing @1 focus on @w plotting @0 both WASM @5 &8 @P","0.3.1"],"veml6030":["Platform-&f @3 ^j @0 @4 VEML6030 @5 VEML7700 high-accuracy ambient light sensors.",C[4]],"background-jobs-actix":["in-^I jobs processor @n on Actix",C[12]],"text2checkstyle":["^D to checkstyle.","1.0.2"],"ag":["CLI App to slice @5 dice logfiles",C[43]],"keccakrs":["A verbose, readable @2 of Keccak in @3","0.1.6"],"mcai_worker_sdk":[C[970],"1.1.0-rc3"],"wascap":["Wascap - $x Standard Capabilities. @p @0 extracting, embedding, @5 validating claims","0.6.1"],"str-buf":["Static $c buffer","2.0.2"],"syntex_fmt_@a":["Export of fmt_macros @V ^1","0.5.0"],"skulpin-renderer-winit":["Support @0 winit in skulpin","0.5.1"],"cargo-check":["@h $G @S &K -- -Zno-trans",C[8]],"binary-space-partition":["Abstract BSP ^0",C[4]],"rust-scrypt":["@H ^d C @0 Tarsnap's `Scrypt` $1","1.3.0"],"sysfs-pwm":["@W $X to @4 &j sysfs interfaces to PWMs.Via this @8 you can export, unexport, @5 control PWM pins forwhich there is an appropriate ^j loaded in @4 kernel.See &Y://www.kernel.org/doc/Documentation/pwm.txt",C[0]],"okta":["A fully ^8 & opinionated @x @c @0 @4 Okta @x.",C[8]],"leaky-bucket-lite":["Slimmed down, lazy @Z-aware rate limiter @2.",C[9]],"wasmer-compiler":[C[252],"2.0.0"],"naughty-strings":["$8 Big List of Naughty Strings is a list of $p $i have a high probability of causing issues when $2 as user-input @w.","0.2.4"],"osaka":[C[253],C[1]],"firestore_grpc":["A gRPC @c @1 @0 Firestore, ^8 automatically @t @4 @x definition @z in Google APIs.","0.31.0"],"udsx":["Some &p @0 Unix domain sockets","0.9.0"],"twitch_oauth2":["Oauth2 @0 Twitch endpoints","0.6.0"],"numid":["A @e @0 $E $k $i behave $C numerical id.","0.2.9"],"layered-io":["I/O $3 extending Read @5 Write",C[7]],"elasticlunr-rs":["A partial port of elasticlunr.js to @3 @0 $E &k document search indexes","2.3.13"],"runtime-raw":["Traits to implement custom Runtimes.",C[254]],"kvlite":["key &5 store backed by local @z","0.1.3"],"form_urlencoded":["&B @5 serializer @0 @4 $U/x-www-form-urlencoded syntax, as $2 by HTML forms.","1.0.1"],"eth2_hashing":["Hashing $9 $2 in Ethereum 2.0",C[3]],"spectral":["Fluent ^7 assertions","0.6.0"],"gfx-backend-empty":["Empty $N @0 gfx-rs","0.9.0"],"bb8-postgres":["Full-featured @J ($v-@n) postgres connection pool ($C r2d2)","0.7.0"],"elastic":["A modular sync @5 @J @c @0 @4 Elasticsearch REST @x.",C[705]],"ripemd256":["RIPEMD-256 ^z @Y",C[0]],"cbloom":["Concurrent @2 of Bloom filters.","0.1.3"],"wasmer-engine-dylib":["Wasmer Dylib Engine","2.0.0"],"kf-protocol-api":["@3 kafka @9 @x $h","2.0.0"],"quickercheck":["Automatic property-@n $S.",C[3]],"rumqtt":["Mqtt @c @0 $r IOT needs","0.31.0"],"intern-arc":[C[255],"0.5.0"],"erst-shared":["Embedded @3",C[1]],"postcard-cobs":[C[256],C[3]],"fluvio-test-derive":[C[652],"0.1.1"],"kdri":["@p @l lets you control Kettler &N via bluetooth","0.4.3"],"zeebe":["A @f @c @0 defining, orchestrating, @5 monitoring business processes across microservices @u Zeebe.","0.3.1"],"frunk_^B_@a":["Proc @a @0 Frunk",C[0]],"envelope_detector":["A $b of @g @5 $3 useful @0 high $J envelope detection &6 a signal.",C[3]],"tweetnacl-sys":["tweetnacl & $L @6 to it","0.1.5"],"emacs-rs-module":["An Emacs dynamic ^F @l helps developing other dynamic modules, in @3",C[43]],"xoodyak":[C[969],"0.7.3"],"tvis_util":["Cross-@N $w @y @0 $o interfaces.","0.5.2"],"mm_math":["Mathematics @1.","0.1.4"],"snappy-sys":["Raw @6 to @4 Google ^C @1 'snappy'",C[0]],"imgui-rs-vulkan-renderer":["A Vulkan renderer @0 imgui-rs @u Ash.","0.8.1"],"exonum":["An extensible @k @0 blockchain software projects.","1.0.0"],"libeko":["Create a @D $D @m $Q @7 some $u &c ((clap || docopt) @5 error_chain)","0.1.5"],"stochastic":["$8 @X @s means of simulating stochastic processes.","0.5.2"],"dusk-bytes":["A $y @l uses constant generics to implement de/@M on sized $l",C[3]],"lindera-tantivy":["A Tokenizer @0 Tantivy, @n on Lindera.",C[7]],"bee-pow":["@W Proof of Work @E @0 @4 IOTA @9",C[0]],"caf":["Pure @f Core Audio Format container decoder",C[0]],"sgx-isa":["Constants @5 $k related to @4 Intel SGX ISA extension.These $h correspond to those found in @4 Intel Software DevelopersManual (SDM), volume 3.","0.3.3"],"validators-derive":["@Q is a @1 @0 validating @5 modeling user input @5 this @8 @s a $e @e to define validators @7 optional parameters.","0.23.1"],"silk":["A silky smooth @2 of @4 Loom architecture","0.3.3"],"rr-mux":["A Request Response Multiplexer @0 $K @9 handlers etc.",C[12]],"elias-fano":["An @2 of Elias-Fano $5 in @3","1.1.0"],"overlord":["Overlord &A procotol.",C[5]],"metrics-tracing-context":["A @8 to $d &g context as &q labels.",C[7]],"csv-index":["On disk CSV indexing @w $k.","0.1.6"],"winrt-notification":["An incomplete @h &6 @4 WinRT toast ^S",C[2]],"ndless-sdl":["SDL @6 @0 Nspire & Ndless",C[3]],"orml-nft":["Non-fungible token &v @s basic @y to create @5 &F NFT",C[2]],"nom-tracable-macros":["Helper @8 of nom-tracable",C[7]],"czkawka_gui":["GTK frontend of Czkawka","3.2.0"],"locate-header":["@p to simplify locating header @z when $K -@r $R","0.1.1"],"tracing-span-tree":["@K &g subscriber @0 hierarchical profiling",C[0]],"jobserver":["An @2 of @4 GNU make jobserver @0 @3","0.1.24"],"geoq":["Geospatial $w CLI","0.0.19"],"scoped_log":["A helpful @h to @4 log @8 offering scoped $f",C[0]],"pushb":["Like `pushd`, but @0 git branches",C[8]],"sawtooth-intkey":["Sawtooth Intkey is a Sawtooth transaction handler @0 executing intkey transactions as part of Hyperledger Sawtooth","0.5.0"],"alloc-shim":["A shim @8 @0 to import items of alloc @8 ergonomically. (deprecated).","0.3.5"],"graph_@d":[C[50],"0.1.3"],"code-sandwich-crates-io-release-test":["outer @8 ^7 releaase","0.1.4"],"crfsuite":["Safe @h of crfsuite","0.3.1"],"bevy_sprite":["@W sprite $7 @0 Bevy Engine","0.5.0"],"bzip2":[C[257],"0.4.3"],"gtk-macros":["Few @a to make gtk-rs &D more convenient",C[1]],"sbd":["Read @5 &0 Iridium Short Burst Data (SBD) &y",C[3]],"ogg_vorbis_ref":["libogg @5 libvorbis &r @0 pure_vorbis reference tests","0.0.3"],"phf_^H":["Codegen @1 @0 PHF @g",C[13]],"aligned_ptr":["Wrappers of @y defined in @F::ptr @5 @F::slice modules @7 alignment @5 null checks",C[0]],"xoshiro":[C[258],"0.0.5"],"global_counter":["Global, &d-$M counters",C[8]],"rustbar":["Set of progressbars @0 @f",C[3]],"uefi-macros":["$q @a @0 @4 uefi-rs @8",C[2]],"shakmaty":["Chess @5 chess variant rules @5 $B","0.20.2"],"$l_^z_@F":["Internal @g @0 @4 type_hash @8.",C[3]],"bencode":["Bencode @1 @0 &x $5/^P",C[60]],"reool":["An asynchrounous connection pool @0 Redis @n on $v @5 redis-rs",C[53]],"tracing-wasm":["&g subscriber @0 browser WASM",C[3]],"tink-prf":["PRF $7 @0 @3 port of Google's Tink cryptography @1",C[5]],"elma":["@p @0 &3 @5 $O Elasto Mania @z.","0.1.14"],"lyon":["2D Graphics &S on @4 GPU @u tessellation.","0.17.10"],"bandwhich":[C[1036],C[42]],"rtdlib":["TDLib @0 @f",C[871]],"faiss":["High-@C @6 @0 Faiss, @4 vector similarity search $a",C[13]],"rouler":["A container-$C @O @0 $E dice rolls",C[5]],"winrt_gen_@a":["Macro &w @0 @4 winrt_gen @8","0.7.2"],"linux-stats":["typesafe procfs info","0.3.1"],"pond":["A @1 @0 scoped @5 cached threadpools @l keep a state.","0.3.1"],"postgres_array":["Array @j @0 @f-postgres",C[16]],"smith_waterman":["$8 Smith–Waterman $1 performs local sequence alignment.","0.1.1"],"ntest_^7_cases":["Test cases @0 ntest @k.","0.7.3"],"bootloader_precompiled":["Precompiled $4 of @4 bootloader @8",C[1]],"zip-extract":["Archive extraction via zip-rs, automated.",C[0]],"plain":["A &7 @3 @1 @l allows users to reinterpret @w of certain @g safely.","0.2.3"],"hcid":["Holochain base32 $5 scheme @0 keys, agents, identifiers, etc","0.0.6"],"google-analytics3":[C[429],"2.0.8+20190807"],"rust-dwm-status":["A status bar @0 tiling window managers @7 pretty unicode symbols $A in @f","0.5.0"],"relm":["&b, GTK+-@n, GUI @1, &X by Elm, $A in @3",C[74]],"finitediff":["Finite/numerical differentiation","0.1.4"],"ockam":["End-to-end encryption @5 mutual authentication @0 distributed @P.","0.36.0"],"cap-primitives":["Capability-@n $9",C[42]],"linfa-reduction":["A $b of dimensionality reduction techniques","0.5.0"],"arya":["@d &V validation. @d &V repair. lightning $I.","0.0.3"],"grpcio-compiler":["gRPC ^2 @0 grpcio","0.9.0"],"tor-stream":["@3 @m @0 proxying ^9 streams &6 @4 Tor ^9",C[1]],"raw":["^e @0 unsafely manipulating raw representations in @3","0.0.6"],"fixt":["minimum viable fixtures","0.0.7"],"async-scoped":["Spawn scoped (non '&k) $n @Z @0 async_std @5 $v runtimes","0.7.0"],"libxml":["A @3 @h @0 libxml2 - @4 XML C @i @5 toolkit developed @0 @4 Gnome ^g",C[1]],"ntex-redis":["Redis @c","0.2.3"],"log-mdc":["A mapped diagnostic context (MDC) @0 $d @7 @4 `log` @8",C[0]],"emu-audio-types":["Audio $F @g @0 @4 emu ^g.",C[0]],"stm32f30x-memory-map":["Memory map @0 STM32F30X $s",C[4]],"bdk-testutils-macros":["Supporting $S @a @0 `bdk`","0.6.0"],"align-data":["Simply increase @4 alignment of any statics or include_bytes!",C[0]],"cratedb":["CrateDB ^j @0 @3.","1.1.0"],"glium_sdl2":["An SDL2 $N @0 Glium - a high-@C OpenGL @h @0 @4 @3 @L.",C[23]],"iron-json-response":["Json response &G @0 Iron &e @k","0.6.0"],"servo-freetype-sys":["FreeType is a freely available software @1 to render fonts.","4.0.5"],"const-sha1":["A sha1 @2 @0 $d in const contexts",C[3]],"multi_try":["Safely combine results",C[1]],"elasticsearch":["Official Elasticsearch @3 @c","7.14.0-alpha.1"],"deno_@F":["A modern JavaScript/TypeScript @I built @7 V8, @3, @5 Tokio","0.105.0"],"winrt_@a":["^o @0 @4 winrt @8","0.7.2"],"wasmer-win-exception-handler":["Wasmer @I exception ^a @0 ^6","0.17.1"],"gluon-salsa":[C[259],"0.15.2"],"rst_renderer":["a reStructuredText renderer",C[2]],"$S_@a":["General purpose $S @a","0.2.3"],"wheelbuf":["$8 wheelbuffer @8 offers a ringbuffer-$C $V ^Y a read pointer, making &l reads of a buffer possible. $8 store behind @4 buffer is flexible @5 can be a &k array, a vector or any other $V @l can be converted ^d a slice.",C[3]],"@f_tokenizers":["High $J tokenizers @0 @3","6.2.5"],"bracket-color":["RGB @5 HSV color ^a @5 @E, including lerp @5 W3C named colors. Part of @4 bracket-lib family.","0.8.2"],"secp256k1-sys":["$L @0 Pieter Wuille's `libsecp256k1` @1.","0.4.1"],"upower_dbus":["UPower info via Dbus",C[0]],"zbar-rs":["High-@C @f @6 zo @4 zbar @1","0.2.7"],"urdf-viz":["URDF visualization","0.31.0"],"smallstr":["String-$C container @n on smallvec",C[3]],"juice":[C[260],"0.2.5"],"factori-impl":["You shouldn't $d this @8 directly. It's ^J to factori.","1.1.0"],"nj-derive":["procedure @e @0 node-bindgen","3.4.1"],"ark-r1cs-std":["A ^E @1 @0 constraint @O gadgets","0.3.1"],"$P_health":["^r ^N @0 @3 - ^r Health APIs @5 Notifications @ 2016-08-04",C[27]],"mould-file":["File &3/$O services @0 Mould @k.","0.0.8"],"glib-sys":["$L @6 to libglib-2.0",C[24]],"casey":["Case transforming @a @0 ident tokens","0.3.3"],"r2fa":["@3 Two-Factor Authentication (R2FA) is a $b of &1 @0 two-factor authentication.","0.5.0"],"membuf":["A $M-ish @h @0 allocating @5 reallocating heap buffers.","0.0.5"],"libcgroup-sys":["$L @6 to libcgroup",C[1]],"yaxpeax-core":["^U analysis @0 machine @V","0.0.4-vw-tweaks"],"cli-log":["a @d &H @5 timing facility configured @7 an env variable","2.0.0"],"marine-rs-sdk":[C[261],"0.6.14"],"fetch_unroll":["@K @E @0 fetching @5 unrolling .tar.gz archives",C[1]],"tree-sitter-python":["Python grammar @0 @4 ^0-sitter @R @1","0.19.1"],"xid":["Globally unique sortable id @B. A @3 port of &Y://github.com/rs/xid.","1.0.0"],"ihex":["A @3 @1 @0 @R @5 $E Intel HEX (or IHEX) objects. @Q @G is commonly $2 @0 representing compiled ^U @V @5 @w to be loaded ^d a microcontroller, flash $g or ROM.","3.0.0"],"cargo-suity":["Utility to automate ^7 runs @5 report results in JUnit @G",C[1]],"aesm-client":["RPC @c @0 Intel SGX AESM (Architectural Enclave Service Manager).With this @c, @P can obtain launch tokens @0 enclaves @5 turnattestation reports ^d quotes.","0.5.3"],"postgresql-to-amqp":["PostgreSQL to AMQP, forward PostgreSQL notifications to an AMQP queue.","0.1.4-pre"],"jconfig":["Configuration / settings backed by ^k @z",C[0]],"metal-rs":[C[713],"0.10.6"],"wasm-bindgen-wasm-interpreter":["Micro-interpreter optimized @0 &s-bindgen's $d case","0.2.78"],"xenvmevent-sys":["@3 unsafe @6 @0 Xen VM event $h","0.1.3"],"ocaml-derive":["OCaml $e @a",C[74]],"sp-consensus-vrf":[C[262],"0.9.0"],"raptorq":["RaptorQ (RFC6330)","1.6.4"],"dono":["@3 @8 @0 Dono Key Derivation Function","2.0.0"],"typed-generational-arena":["A $M arena ^l @l supports deletion ^Y suffering @t @4 ABA problem by @u generational indices. Now @7 typed indices @5 custom integer @g @0 generations!","0.2.5"],"ntrumls-plus":["@3 @6 @0 Jeffrey Hoffstein's `NTRUMLS` @1.","0.0.6"],"rlinks":["Rusty Links (rlinks) finds dead links in $r website","0.6.5"],"screenruster-saver-laughing_man":["Ghost in @4 Shell &X screen saver @0 ScreenRuster.",C[5]],"lzw":["LZW ^C @5 decompression.",C[13]],"async-graphql-tide":["@J-graphql @0 tide","2.10.6"],"tokio-scoped":["Scoped Runtime @0 $v",C[0]],"c-types":["Re-exports of cross-@N @g, gathered @t libc @5 winapi","2.0.2"],"refpool":["Efficient $g pool @7 reference counting","0.4.3"],"concat-arrays":["A @e @0 concatenating fixed-size arrays",C[4]],"molecule-codegen":["Code @B @0 molecule.","0.7.2"],"containers-rs":["'Collections' interfaces @0 describing objects @l contain other objects","0.5.1"],"impl-template":["A $e @e @0 $E impl-blocks @n on a @d template.",C[789]],"ra_ap_la-arena":[C[263],"0.0.79"],"deno_broadcast_channel":["@v of BroadcastChannel @x @0 Deno",C[26]],"nshare":["Conversion $t n-dimensional @g in different @3 $R","0.7.0"],"fastnbt":["Serde deserializer @0 Minecraft's NBT @G","1.2.0"],"secretbox":["@3 @2 of @4 secretbox encryption $1",C[4]],"tokio-native-tls":["An @2 of TLS/SSL streams @0 Tokio @u &8-tls giving an @2 of TLSfor nonblocking I/O streams.",C[1]],"cargo-expand":["Wrapper $G &K -Zunpretty=expanded. Shows @4 result of @e expansion @5 #[@b] expansion.","1.0.9"],"rerast":["An AST (abstract syntax ^0) @n search replace ^4 @0 @V $A in @3","0.1.95"],"docopt":["Command $D argument @R.","1.1.1"],"embedded-graphics-simulator":["Embedded ^T simulator",C[1]],"wabt":[C[314],C[13]],"imagesize":["Quick probing of image dimensions ^Y loading @4 entire $0.","0.9.0"],"fluence-fork-parity-multiaddr":[C[297],"0.11.2"],"devx-pre-commit":["^e @0 $Z git pre-commit hooks useful in @f projects","0.5.0"],"anyrange":["Small ^t $y @l helps dealing @7 range arguments",C[0]],"tinystr":["A &7 ASCII-only bounded length $c representation.","0.4.11"],"protobuf-json":["@p @0 serializing Google protobuf objects as ^k @u @3.",C[1]],"gfx_scene":["Space-aware scene &S @5 culling",C[7]],"serial-line-ip":["Serial Line Internet ^c (SLIP) @x.","0.5.0"],"furnace":["A @1 @0 $K GUI $U, heavily &X @t React, Redux, @5 Relm.",C[1]],"@f_sodium_holochain_fork-sys":[C[1000],"0.10.4"],"$P_kinesis_video_archived_media":["^r ^N @0 @3 - Amazon Kinesis Video Streams Archived Media @ 2017-09-30",C[27]],"creep":["context",C[1]],"google-storagetransfer1":[C[381],C[101]],"termbox_@d":["A hacked $4 of termbox (see README)","0.2.3"],"inventory":["Typed distributed $Y registration",C[32]],"pbjson":["^e @0 pbjson conversion",C[3]],"bitops":["Miscellaneous bit $B @0 any Integer.",C[0]],"cloud-storage-rs":["MOVED TO crates.io/$R/cloud-^x A @8 @0 uploading @z to Google cloud ^x, @5 @0 $E download urls.","0.4.3"],"rexrocksdb":["Fork of @f @h @0 Facebook's RocksDB embeddable ^Q.",C[9]],"tower-load":["Strategies @0 measuring @4 load of a &t",C[1]],"smawk":["Functions @0 finding row-minima in a totally monotone matrix.","0.3.1"],"lindera-fst":["@Q is a lindera-specific fork @t @4 fst @8 @t Burntsushi. (Please $d @4 fst @8 instead.)","0.1.1"],"snowchains_@F":["Crate @0 accessing competitive $m websites @5 $S $r @V.",C[15]],"htwdresden":["@p @0 accessing organisational @w @t @4 University of Applied Sciences Dresden (HTW Dresden).","0.3.4"],"embedded-serial":["Some $3 to describe @4 features of ^b Serial (UART) &N.","0.5.0"],"polylog":["@3 @2 of polylogarithms.","1.6.1"],"speedy":[C[264],C[7]],"scoped-pool":["A flexible &d pool ^R scoped threads.","1.0.0"],"dissimilar":["Diff @1 @7 semantic cleanup, @n on Google's diff-match-patch","1.0.3"],"aerospike":["Aerospike Client @0 @3","1.2.0"],"async-net":["Async networking $9 @0 TCP/UDP/Unix communication","1.6.1"],"resast":["Rusty-ECMAScript Abstract Syntax Tree","0.4.1"],"concourse-resource":["Helper create to create resources @0 Concourse CI",C[5]],"libavif":["High-@C @x @0 AVIF image @z","0.7.1"],"statrs":["Statistical computing @1 @0 @3",C[23]],"keystream":["Cryptographic keystream $3","1.0.0"],"uriparse":["A URI @i including relative references","0.6.3"],"unify":["Trait-@n equality constraint @0 @3","0.0.3"],"async-std-resolver":["Trust-DNS is a $M @5 secure DNS @1, @0 @J-std. @Q Resolver @1 uses @4 trust-dns-proto @1 to perform all DNS queries. $8 Resolver is intended to be a high-@C @1 @0 any DNS record resolution see Resolver @5 AsyncResolver @0 supported resolution @g. $8 Client can be $2 @0 other queries.",C[41]],"tremor":["Utility @1 @0 &2 @7 baserock $h",C[4]],"regex-cache":["Lazy @5 cached regular expressions.",C[5]],"git-repository":["Abstractions @0 git repositories",C[16]],"near-runtime-fees":["Fees applied to near @I encapsulated in a separate @8. Might merge it later.","2.2.0"],"vrp-cli":["A @D $D @m @0 VRP solver","1.11.5"],"higher":["Higher kinded @g, in a way","0.1.1"],"google-cloudtasks2":["A @q @1 to @o @7 Cloud Tasks (@9 v2)",C[265]],"probabilistic-collections":["Various @T of &C @l $d approximations to improve on running $z or $g,but introduce a certain amount of ^q.","0.7.0"],"slabmalloc":["@K slab @n malloc @2 in @f. Can be $2 stand-alone or in order to provide @4 necessary @m to rusts liballoc @1. slabmalloc only relies on libcore.",C[13]],"blockish":["display images in a $o @7 UTF8 blocks","0.0.9"],"cryptographic-message-syntax":["A ^X @3 @2 of Crypographic Message Syntax (RFC 5652)","0.5.0"],"flags-macro":["@W a ^t @e @0 $O bitflags.","0.1.4"],"tari_^x":["Key-Value store @x @0 @4 Tari ^g","0.8.1"],"secp256kfun_parity_$N":["Vendored $4 of paritytech/libsecp256k1 @0 secp256kfun","0.1.5"],"cursebox":["Cell-grid TTY UI @1","0.2.11"],"exr":["Read @5 &0 OpenEXR @z ^Y any unsafe @V","1.3.0"],"syn-select":["A ^O selector $a @0 searching @3 source @V.",C[3]],"logfmt":["logfmt @i @0 @3","0.0.2"],"zmq-pw-sys":[C[577],"0.9.8"],"dsn":["DSN (Data Source Name) @i","1.0.2"],"reg-index":["@p to manage a registry index.",C[2]],"qjsonrpc":["^k-RPC &6 QUIC comm","0.2.3"],"rand_distr":["Sampling @t &L &a distributions","0.4.2"],"special":["$8 @X @s special @y.","0.8.1"],"decimal":["Decimal floating point arithmetic @0 @3","2.1.0"],"xsalsa20poly1305":["Pure @3 @2 of @4 XSalsa20Poly1305 (a.k.a. NaCl crypto_secretbox)authenticated encryption $1",C[7]],"eml-parser":["A @1 @0 @R .eml @z.",C[4]],"pop3":["POP3 @c @0 @3","1.0.6"],"runiq":["An ^Z way to filter duplicate lines @t input, à la uniq.","1.2.1"],"acyclic-network":["Acyclic ^9 representation @5 construction",C[3]],"regex_^n":["Use regular expressions to ^n ^D.",C[5]],"mixer_&r":["Wrappers $G @4 Mixer APIs",C[12]],"ra_ap_hir_expand":["TBD","0.0.79"],"chill":["Client-side CouchDB @1",C[1]],"syndication":["@p @0 serializing Atom @5 RSS &e feeds","0.5.0"],"sixtyfps-macros":["Macro ^t @0 sixtyfps @8","0.1.4"],"fp-core":["A @1 @0 functional $m in @3","0.1.9"],"pn-editor":["A powerful ^U to view, edit @5 simulate petri nets","0.8.1"],"patternfly-yew":["Patternfly 4 components @0 Yew","0.0.26"],"owasm-std":["A ^E @1 @0 &2 @7 @4 Oasis @N.","0.20.1"],"terrain":[C[61],C[62]],"dwrote":["Lightweight $W to DirectWrite.",C[16]],"mediasoup":["Cutting Edge WebRTC Video Conferencing in @3","0.8.5"],"termbg":["Terminal background color detection",C[1]],"tp-consensus":["&O @E @0 $K @5 @u &A engines in tetcore.","0.8.2"],"google-cloudfunctions1-cli":[C[370],C[34]],"sasl":["A @8 @0 SASL authentication. Currently only does @4 @c side.","0.5.0"],"shorty":["shorty is a @1 @0 assigning short IDs to long URL, @5 store them on redis","0.5.4"],"bulletproofs":[C[266],"4.0.0"],"blake2s_simd":["a ^X @3 BLAKE2s @2 @7 dynamic SIMD","0.5.11"],"steganography":["A @d steganography @1","1.0.2"],"futures-locks":["Futures-aware lock $9","0.6.0"],"wlroots":["Wayland compositor @k",C[2]],"solana-jsonrpc-server-utils":[C[405],C[2]],"gflags":["Command $D flags @1 @l does not require a central list of all @4 flags.","0.3.8"],"ioctl":["&T in favor of nix","0.3.4"],"dav1d":["libdav1d @6","0.6.0"],"dubp-wallet":["Provide wallet definition @0 DUBP @9","0.58.0"],"bumpalo":["A $I bump allocation arena @0 @3.","3.8.0"],"libsbc":["@H to @4 &j Bluetooth low-complexity, subband codec (SBC) @1.","0.1.5"],"raft-proto":["^c $h @0 @4 @f @L @2 of @4 Raft $1.","0.6.0"],"nitox":["Nitox is a `$v`-@n @c @0 NATS.","0.1.9"],"wasmcloud-provider-core":["Core @g @5 $3 $2 @0 $K wasmcloud capability providers","0.1.1"],"diesel-factories-code-gen":["Internals @0 diesel-factories","2.0.0"],"command-extra":["Additional &P @0 std::^I::Command","1.0.0"],"esprit":["An ECMAScript @i @1.","0.0.5"],"arcball":["An @2 of @4 Shoemake Arcball camera","1.0.0"],"link-ippcore":["link ippcore @1 (part of ipp-@r Intel IPP @6)","0.1.1"],"rustc-ap-rustc_cratesio_shim":["^W published $4 of @4 @X `rustc_cratesio_shim` in @4 @f-lang/@f repository @t commit 4393768faa104b9879c601feee71eb0207dc4fe1 $8 publishing script @0 this @8 lives at: &Y://github.com/alexcrichton/&K-auto-publish","520.0.0"],"crowbook-localize":["@Q @8 has been renamed crowbook-intl. Please $d this one fom now on.",C[0]],"digilent-waveforms":["@H @0 Digilent Waveforms @x","0.0.16"],"try_or_wrap_s":["`?` or `try!` @e, @7 an additional wrapping of @4 ^q in something else",C[3]],"form":["A &7 script to move inline modules ^d @4 proper directory $V",C[7]],"monero":["@3 Monero @p.",C[23]],"nu_$Y_match":["A regex match $Y @0 Nushell","0.39.0"],"lyon_bezier":["[Deprecated] @Q @8 was renamed ^d lyon_geom.","0.9.0"],"google-blogger3-cli":[C[683],C[207]],"libads":["For &2 @7 @x of @4 Astonomy Data System","0.1.0-beta"],"cpuio":["Bare metal (no_std) inb, outb, inw, outw, inl, outw instructions @7 @3-$C @x",C[1]],"conv":["@Q @8 @s a &a of conversion $3 @7 more specific semantics than those provided by 'as' or 'From'/'Into'.","0.3.3"],"sqlx-macros":["^o @0 SQLx, @4 @f SQL toolkit. Not intended to be $2 directly.","0.5.9"],"av-data":["Multimedia @w $k",C[1]],"intovec":["IntoVec, a $y @0 converting @g ^d Vec, avoiding copies when possible.","0.0.6"],"packed":["A $M #[repr(packed)] @m","0.4.2"],"no-std-compat":["A `#![no_std]` compatibility layer @l will make porting $r @8 to no_std *&x*.","0.4.1"],"tari_mmr":["A Merkle Mountain Range @2","0.9.5"],"kv_cab":[C[863],"0.6.0"],"grpcio":[C[267],"0.9.1"],"scgi":["@K SCGI @i","0.3.4"],"actix-web-grants":["Extension @0 `actix-&e` to validate user permissions",C[656]],"$P_kms":["^r ^N @0 @3 - ^r Key Management Service @ 2014-11-01",C[27]],"blas-src":["$8 @X @s a BLAS source of choice.",C[7]],"elliptic-sys":["$L @6 @0 agl/curve25519-donna @5 trevp/ref10_extract.",C[1]],"luminal-router":["Minimalist router @0 hyper.rs","0.0.12"],"request":["Request","0.0.8"],"strophe":["Moved to libstrophe-@r","0.1.1"],"cid":[C[268],"0.7.0"],"dhall":["@v of @4 Dhall $H @L",C[12]],"simdnoise":["SIMD accelerate noise @1 @7 @I feature detection","3.1.6"],"libcmark-sys":["&M @6 to @4 libcmark @1",C[0]],"mat":["Statically sized matrices @0 `no_std` @P",C[3]],"clit-rs":[C[806],C[38]],"async-speed-limit":["Asynchronously speed-limiting &l byte streams",C[2]],"mqttbytes":["MQTT 4/5 @M @5 &9","0.5.0"],"sensehat":["Interface @7 @4 Raspberry Pi Foundation's official Sense HAT sensor board.","1.1.0"],"cpuid":["@3 @6 @0 libpcuid CPU detection @5 feature extraction @1.","0.1.1"],"struple":["Convert $k @t @5 to tuples",C[0]],"fixed_width":["A fixed width @w @i.",C[2]],"effective-limits":["Estimate effective resource limits @0 a ^I e.g. how much RAM is available @0 $d.","0.5.3"],"rlua":["High @C @6 to Lua 5.3","0.17.1"],"naia-client-socket":["Abstraction to expose $u @x &6 a UDP socket on &j, @5 a unreliable WebRTC datachannel on @4 browser",C[120]],"galil-seiferas":["General $c search in constant space, linear $z, @0 nonorderable alphabets.","0.1.5"],"logos":[C[269],C[28]],"hyper-socks2":[C[498],"0.6.0"],"asn1_der":["@Q @8 @s an ASN.1-DER en-/decoder","0.7.5"],"file-watcher":["A @8 @0 watching @z @0 changes.","0.0.18"],"fed":["A sketch @2 of anonymous, tagged unions in stable @3","0.4.4"],"oasis-types":["Types $2 by @4 Oasis blockchain @k.",C[2]],"observer":["Observer","0.2.5"],"foundationdb-sys":["@H to @4 C ^S @0 FoundationDB","0.5.0"],"concrete-fftw-sys":["Sources of FFTW @5 unsafe $W",C[4]],"minterpolate":["Data set interpolation @0 mint $9 @5 raw arrays",C[2]],"turbosql":["An &x local @w persistence layer, backed by SQLite.","0.3.1"],"uwuify-mdbook":["UwUifies $r mdbooks",C[3]],"fragula":["View shaders in real-$z",C[13]],"shiva-dto":["DTO @0 Shiva","0.7.0"],"fibers_rpc":["RPC @1 built on top of fibers @8","0.3.4"],"tsar":["Tsar $m @L",C[1]],"wundergraph_@b":["Internal ^B @e @2 @0 wundergraph",C[0]],"gutenberg":["Static site @B","0.0.7"],"hue_persistence":["Hue persistence @0 Philips Hue lights","0.2.5"],"wasmer-singlepass-backend":[C[270],"0.17.1"],"dpdk-unix":["An ^J @8 to make it easier to iterate on unix requirements",C[1]],"ddcutil-sys":["libddcutil $L @6","0.0.3"],"fluent-locale":[C[452],C[12]],"BrewStillery":["BrewStillery is a brewer's, vintner's, @5 distiller's calculator. It has a multitude of great @y, such as calculating ABV, determining carbonation, @5 total sparge water needed.","6.2.0"],"libpg_query-sys":["$L @6 to libpg_query-10-1.0.2","0.1.3"],"floaty":["A $y @l abstracts &6 @4 $u $7 of f32 @5 f64",C[0]],"$I_chemail":[C[673],"0.9.6"],"yarte_@b":["$q @e @X @0 yarte","0.15.4"],"grpcio-health":["Health check &r @0 grpcio","0.9.0"],"coi-derive":["coi-@b @s $e @a @0 coi",C[13]],"svg2polylines":["Convert SVG @w to a list of polylines (aka polygonal chains or polygonal paths).","0.6.0"],"recur-fn":["A @1 @l @s you a more flexible way to construct @5 extend @4 recursive @Y.","2.2.0"],"simplecss":["A @d CSS 2 @i @5 selector.",C[5]],"single-instance":["A @f @1 @0 single instance $U.",C[9]],"pokemon_go_@w":["A convenient @m @0 Pokemon Go @w","0.6.0"],"winres":["Create @5 set windows icons @5 metadata @0 executables","0.1.12"],"structopt-utilities":["Small @E related to structopt @5 clap",C[0]],"natls":["nat - @4 'ls' replacement you never knew you needed","2.1.14"],"$P_ssm":["^r ^N @0 @3 - Amazon @K Systems Manager (SSM) @ 2014-11-06",C[27]],"bluetooth-serial-port-async":[C[598],"0.6.3"],"syslog-ng-common":["High @C @6 @0 syslog-ng",C[7]],"xlog":["Xlog can add key/&5 pairs to $r log lines.",C[8]],"nom_locate":[C[731],"4.0.0"],"enum_kind":["Easily manage ^V related to enum.",C[5]],"taplo":["A TOML @i, analyzer @5 formatter @1","1.0.0-alpha.6"],"qregister":["A @d IoC (Inversion of Control) container.",C[8]],"gluon_@G":["Code formatting @0 @4 gluon $m @L",C[43]],"seqdiff":["Diff $t two sequences",C[1]],"azure_jwt":["A @d JWT validator @0 Microsoft Azure Id tokens.",C[5]],"tectonic_bridge_flate":["Exposing flate ^C to @4 Tectonic C @V.","0.1.5"],"async-stream-impl":["^B @a @0 @J-^L @8",C[9]],"ping":["ICMP @1",C[1]],"jmespath":[C[942],C[3]],"evm":[C[271],"0.31.1"],"acl-sys":["$L @m @0 POSIX Access Control Lists","1.2.2"],"typedef":["Identify, compare @g or print $l names.",C[9]],"sqa-jack":["JACK @6 @0 @3 (part of @4 SQA ^g)","0.6.1"],"delegatemethod":["Delegate method calls to a field.",C[8]],"know-thy-shell":["Command $D ^4 @0 know-thy-shell.info","0.1.12"],"macroquad-particles":["Visual effects editor @n on macroquad @5 megaui.","0.1.1"],"p-macro":["p!() is a @e $2 @0 printing ^V while debugging",C[3]],"convco":["Conventional commit &1","0.3.7"],"user32-sys":["Contains @Y $h @0 @4 ^6 @x @1 user32. See winapi @0 @g @5 constants.",C[3]],"glyph_brush":["Fast cached ^D render @1 @u ab_glyph","0.7.2"],"unix":["Interface to Unix @O facilities","0.6.12"],"count_sort":["O(n) sorting @1 @0 large datasets @7 &7 range of possible ^V",C[1]],"pyo3-macros-backend":[C[471],"0.14.5"],"$P_lambda":["^r ^N @0 @3 - ^r Lambda @ 2015-03-31",C[27]],"future":["future @7 continuations @0 @3","0.1.3"],"approveapi_openapi":["INTERNAL USE ONLY. OpenAPI-^8 ApproveAPI @f @c, $2 by @4 official @c: &Y://crates.io/$R/approveapi.","0.1.9"],"android_liblog-sys":["&M @6 to liblog on Android","0.1.4"],"stable_bst":["An ordered map @5 set @n on a $Q search ^0. Works @7 stable @3 1.9.0.",C[3]],"rerun_except":["Rerun a @S $j except when specified @z are changed","1.0.0"],"bulk":["A @d ^4 @0 making deb packages, repositories, @5 update $4 ^M.","0.4.9"],"error-code":["Alternative Error @0 @3","2.3.0"],"libtar-sys":["$8 @X facilitates &k linking @7 libtar.","0.1.9"],"osm4routing":["Convert OpenStreetMap @w ^d routing &E CSV",C[1]],"enum_@t_str_@b":[C[272],C[0]],"xdrgen":["XDR codec @B @t specification. Designed @0 $d @7 xdr-codec.","0.4.4"],"websocket-codec":["A Tokio codec @0 @4 websocket @9","0.5.0"],"curl":["@3 @6 to libcurl @0 making ^s requests","0.5.0"],"grex":["grex generates regular expressions @t user-provided ^7 cases.","1.3.0"],"imgui-sdl2":["SDL2 Input ^a @0 imgui-rs",C[24]],"send_@h":["@Q @3 @1 implements a @h $l called SendWrapper $i allows you to move $G non-Send typesbetween threads, as long as you $X @4 contained &5 only @t within @4 original &d. You also have tomake sure @l @4 @h is dropped @t within @4 original &d. If any of these constraints is violated,a panic occurs.","0.5.0"],"sea-query":["🌊 A dynamic query &I @0 MySQL, Postgres @5 SQLite","0.18.1"],"rscam":["Wrapper @0 v4l2.","0.5.5"],"stream-cancel":["A @1 @0 interrupting $n streams.","0.8.1"],"mbedtls-sys-auto":["@3 @6 @0 MbedTLS.This $4 generates @4 correct @6 at compile $z @u bindgen.","2.26.1"],"sntpc":["@p @0 making SNTP requests",C[3]],"@d_stats":["Deprecated in favor of @4 statistical @8!","0.1.1"],"graphannis-malloc_size_of_@b":["@Q is a fork of @4 `malloc_size_of_derive` @8, $i is part of @4 Servo codebase, to make it available to @4 graphANNIS corpus search @1 as &m.","2.0.0"],"noble-contracts-primitives":["A @8 @l hosts a $u $h @l are relevant @0 @4 noble-contracts.","2.0.0"],"oxen":["A game $a $A in @f.","0.0.2"],"lib3h_mdns":["lib3h mdns LAN discovery ^F","0.0.42"],"compile-time-crc32-impl":[C[273],C[0]],"libprosic":[C[274],"0.7.3"],"megaui-macroquad":["Macroquad renderer @0 megaui","0.1.4"],"^q":["A fancy ^q $l @0 highly ^G cases.","0.1.9"],"nano-leb128":["Little endian base 128 variable-length @V ^C",C[0]],"k2i":["Kernel Parameters Interface @u ^s","0.2.3"],"sozu":["sozu, a $I, reliable, hot reconfigurable ^s reverse proxy","0.13.1"],"stijl":["Cross-@N @d styled ^D streams","0.5.2"],"google-kgsearch1-cli":[C[540],"1.0.4+20170109"],"bytepack_@b":["bytepack_derive offers a custom @b of @4 Packed $y",C[3]],"sputnikvm-network-classic":["Ethereum Classic patches @0 SputnikVM.",C[306]],"elog":["@K &H @0 debugging.",C[1]],"openhmd-rs":["Safe OpenHMD @6",C[3]],"wgpu-conveyor":["Buffer belt $F @0 wgpu",C[3]],"http-file-headers":["A @k-&f ^t @1 @0 serving &k @z. It makes very &x to &0 full-featured &k $0 @U (incl. conditional headers, encodings, range requests, etc)","0.1.8"],"s3-algo":["High-$J ^3 @0 batch $B to Amazon S3","0.5.1"],"input_buffer":["A peekable FIFO-$C buffer @0 receiving ^9 @w efficiently","0.5.0"],"timekeeper":["A @d @1 to track how much $z is $2 in different parts of a ^U",C[9]],"byte-strings-proc-macro":["&Y://crates.io/$R/byte-$p backing ^B-@a","0.1.1"],"pomelo":["@v of @4 Lemon @i @B as a @3 $e @e","0.1.5"],"game-2048":["A ^y @2 of @4 popular 2048 game writen in @f","0.5.1"],"cast_$y":["cast $y",C[4]],"filesystem":["Real, fake, @5 mock @T of $0 @O $B","0.4.4"],"sort":["sort ^3","0.8.5"],"noble-vesting":["FABRIC noble @0 manage vesting","2.0.0"],"rustygit":["A @d @m @0 runnig Git commands","0.4.2"],"postgres-service":["Parse Postgres &t $H @z",C[95]],"any_ascii":["&h to ASCII transliteration",C[1]],"num-rug-adapter":["An adapter to $d num @8 where rug is needed.","0.1.5"],"proxy-protocol":["PROXY @9 serializer @5 deserializer","0.5.0"],"fasthash-sys":[C[1091],C[9]],"batch_oper":["batch_oper @s some batch operation @e @0 some $B","2.3.1"],"tower-discover":["Abstracts &6 &t discovery strategies.",C[1]],"approx":["Approximate floating point equality comparisons @5 assertions.","0.5.0"],"tailrec":["Trait-@n stack-$M recursion in @3","0.0.4"],"pnet_bandwhich_fork":[C[1009],"0.23.1"],"prototty_render":["Traits @0 defining a renderer @5 a view","0.29.0"],"cell-gc":["A fun garbage collector @0 @l virtual machine you're $O in @3",C[5]],"keccak":["Keccak-f sponge @Y",C[0]],"ip_^9":["IPv4 @5 IPv6 ^9 &o.",C[2]],"kvmi":["Safe @3 @6 @0 libkvmi (v6)",C[2]],"ina260":["A @N &f ^j to @m @7 @4 I2C @n TI INA260 power monitor","0.3.1"],"gltf-derive":["Internal @a @0 @4 gltf @8",C[72]],"rocket-sentry":["Simplifies $T $t @4 Rocket &e @k @5 Sentry $U monitoring @O.","0.7.0"],"ole":["@K @i @5 reader @0 Microsoft Compound Document File.","0.1.15"],"mocktopus":["Mocking @k @0 @3","0.7.11"],"xpsupport":["Hook serveral APIs to enable XP @j @0 @f.",C[8]],"git-find":["A ^4 (^y & lib) to find local git repositories.","0.5.0"],"tp-sandbox":[C[858],"0.8.2"],"varlociraptor":[C[274],"4.5.0"],"ssdp-probe":["@K @f @8 to perform SSDP discovery",C[5]],"carboxyl_$z":["FRP timing @E","0.0.3"],"howto":["instant coding answers via @4 @D $D",C[2]],"indextree-ng":["Arena @n ^0 $V by @u indices instead of reference counted pointers. Fork of indextree by Sascha Grunert $i allows to remove nodes","1.0.5"],"gpu-allocator":["Memory ^l @0 GPU $g in Vulkan @5 in @4 future DirectX 12",C[13]],"simplog":["An extremely &7 @5 @d logger to stdout/stderr, @7 controllable levels of verbosity","1.3.0"],"volatile_cell":["Cell @h $G volatile $g $B.","1.0.0"],"vkxml":["Parse vulkan's XML @x registry.","0.3.1"],"$6_^H":[C[300],"0.9.0"],"varbincode":["A $Q encoder / decoder @7 variable length integer $5 @2 in @3.",C[0]],"ttrpc-codegen":["@3 ^H @0 ttrpc @u ttrpc-^2 @8",C[3]],"shared-mutex":["A RwLock @l can be $2 @7 a Condvar.","0.3.1"],"wf":["A Unix-style @D-$D $w @0 counting word frequencies",C[8]],"monadic":["@a to define Haskell style monadic action blocks @0 IntoIterators, Reader, Writer, State, @5 @a @0 @4 transformers ReaderT @5 WriterT &6 Vec, LinkedList @5 VecDeque","0.5.5"],"piston-viewport":["A @1 @0 storing viewport $f","1.0.1"],"scoped_threadpool":["A @1 @0 scoped @5 cached threadpools.","0.1.9"],"postgres_query_@e":[C[275],"0.3.1"],"dsl_@a":["Convenience @a @l rewrites method calls inside a &I closure.",C[4]],"google-discovery1":[C[918],"2.0.8+20200806"],"coap-lite":["A ^O CoAP message manipulation @8, ideal @0 ^b environments.","0.7.0"],"authy":["@H @0 @4 Authy two factor &e &t.","0.9.8"],"@b_@h":["@3 custom @b @e @0 wrapping @g","0.1.7"],"tp-session":[C[276],"2.0.2"],"glsl":["A GLSL450/GLSL460 @i.","6.0.1"],"inotify":["Idiomatic @h @0 inotify","0.9.5"],"wasmer-compiler-singlepass-near":[C[877],"2.0.1"],"tc-consensus-uncles":[C[277],C[7]],"fungus":["@3 @E to reduce @V verbosity","0.1.27"],"avm1-parser":["AVM1 @i",C[15]],"rstest":["@3 fixture @n ^7 @k. It $d $e macroto implement fixtures @5 table @n tests.",C[16]],"urdf-rs":["URDF @i @u $6-xml-rs","0.6.1"],"slog-loggly":["@Q is an unofficial Loggly drain @0 @4 slog &H infrastructure in @3.",C[2]],"tp-runtime-interface-proc-macro":["@Q @8 @s $e @a @0 usage within @4 context of @4 Tetcore @I @m.","2.1.2"],"reproto":["reproto ^2","0.3.36"],"favicon-generator":["It helps you ^n favicons @7 different formats @5 sizes.","0.3.14"],"sacabase":["Base @g @5 @y @0 suffix arrays @5 longest substring search","2.0.0"],"webkit2gtk-webextension":[C[986],C[13]],"$P_qldb_session":["^r ^N @0 @3 - Amazon QLDB Session @ 2019-07-11",C[27]],"odbcsv":["Query an ODBC @w source @5 print @4 result as csv.","0.3.47"],"orml-utilities":["Various @E including `FixedU128` @5 `LinkedList`.",C[2]],"gradle-sync":["Small $w to synchronize @4 gradle $4 @7 @4 @S $4.",C[3]],"google-dfareporting2d8-cli":[C[953],C[525]],"crossbeam-stm":["Atomically updatable Arc","0.6.1"],"wasmer-wasi-types":["WASI @g @0 Wasmer $x @I","2.0.0"],"radio":["&W $3 @0 ^b packet radio &N","0.9.1"],"noop_^B_@e":["No-op proc_macro, literally does nothing",C[1]],"echoloc":["Generated by template 'rustyhorde-lib-template' by @S-^n",C[32]],"ngrams":["Generate n-grams @t sequences","1.0.1"],"fmi":["A @3 @m to FMUs (Functional Mockup Units) @l follow @4 FMI Standard. See &z://www.fmi-standard.org/",C[5]],"setupapi-sys":["$L @6 to setupapi. @Q @8 is a placeholder @0 @4 future. If you are interested in this @1 feel free to get in touch @7 me: &z://www.rustaceans.org/retep998","0.0.1"],"ddc-winapi":["DDC/CI monitor control on ^6",C[3]],"xxhash-sys":["Raw @6 to libxxhash $i contains an @2 of xxHash",C[0]],"^I_path":["Gets @4 path of @4 currently executing ^I or dynamic @1.","0.1.3"],"sub-strs":["For finding sub $p...","0.25.0"],"every_variant":["@W an EveryVariant $y @l @s @4 every_variant method on types.Allows you to easily ^n every combination of variants in $k @l contains Enums,or in nested enum trees. @Q to allow @0 additional $S of codepaths","0.4.3"],"libosu":["General-purpose osu! @1.","0.0.26"],"oxygengine-integration-p2d-cr":["Integration ^F of 2D physics @5 composite &S @0 Oxygen Engine",C[42]],"macaw":["An opinionated game math @1 built on top @4 excellent glam","0.14.1"],"rabble":["A @1 @0 $Z location transparent actor @n systems","0.4.1"],"slog":["Structured, extensible, composable &H @0 @3","2.7.0"],"libp2p-tokio-socks5":["TCP/IP (via a SOCKS5 proxy) transport @9 @0 ^v",C[7]],"criterion-perf-events":["Measure perf events @0 criterion","0.1.3"],"tibrv":["@H to @4 C @1 provided by TIBCO Rendezvous, a \"high performancemessage oriented &G\" commonly $2 in @4 financial industry.","0.6.0"],"pnet_base":[C[339],"0.28.0"],"wasmer-compiler-cranelift":["Cranelift ^2 @0 Wasmer $x @I","2.0.0"],"stainless":["Organized, flexible $S @k.","0.1.12"],"riemann_@c":["A Riemann @c @1","0.9.0"],"criterion-linux-perf":["A measurement $Y @0 Criterion.rs @l @s measurements @u Linux's perf @m",C[0]],"fabric-system-rpc-runtime-api":[C[278],"2.0.0"],"iso4217":["ISO 4217 @w.",C[9]],"xplm-sys":["Low-@C @6 @0 @4 X-Plane $Y ^N",C[2]],"desed":["Sed script debugger. Debug @5 demystify $r sed scripts @7 TUI debugger.","1.2.0"],"big_s":["Rust's missing `String` literal","1.0.2"],"ckb-always-success-script":["CKB always success script","0.0.1"],"riak":["A Riak @c @0 @3.","0.3.4"],"git-who":["List remote branches by author @5 date of last commit","0.1.3"],"substorager":["substorager","0.3.1"],"unicode-truncate":["&h-aware $1 to pad or truncate `str` in terms of displayed width.",C[3]],"segments":[C[499],C[1]],"amethyst_@b":["Amethyst @b",C[99]],"charset":["Thunderbird-^i character $5 ^P @0 email",C[4]],"odoh-rs":["@3 @2 of @4 Oblivious DNS &6 HTTPS (ODoH) @9 $4 1",C[279]],"spirv-std":["Standard @y @5 @g @0 SPIR-V",C[280]],"glyph_packer":["A @1 @0 packing glyphs ^d a texture.","0.0.2"],"rawbytes":["Transtype any sized &5 to a &[u8].",C[4]],"stackdriver_logger":["A logger @0 Google's Stackdriver @7 a ^y-&E fallback @0 local &D",C[7]],"offscreen_gl_context":["Creation @5 manipulation of HW accelerated offscreen &S contexts in &l platforms. Originally intended @0 @4 Servo project's WebGL @2.","0.25.1"],"google-safebrowsing4":[C[905],C[92]],"gilrs-core":["Minimal event @n $F @0 ^p @7 gamepads","0.3.1"],"owasm-ethereum":[C[1034],C[7]],"basic_dsp":[C[281],"0.9.4"],"const_env_impl":[C[191],C[4]],"tokio-socketcan":["&b &j SocketCAN sockets @7 $v",C[1]],"drop-derive":["&n @a @0 drop",C[0]],"chlorine":["Just @4 C @g @0 `no_std`, but builds faster.","1.0.8"],"gstreamer-gl":["@3 @6 @0 GStreamer GL @1","0.17.2"],"slices":["Convert $c literals to &k unsigned integer slices in compile $z.",C[3]],"tobj":["A ^O OBJ loader in @4 spirit of tinyobjloader","3.2.0"],"l337-postgres":["l337 &F @0 $v-postgres","0.9.0"],"vswhom":["$L to Jon Blow's VS discovery script",C[0]],"sliceslice":["A $I @2 of single-pattern substring search @u SIMD acceleration","0.3.1"],"dw1000":["Driver @0 @4 Decawave DW1000 UWB wireless transceiver chip, ^R radio communication @n on IEEE 802.15.4 @5 distance measurement","0.5.0"],"flowrlib":["$8 run-$z @1 @0 executing 'flow' programs compiled @7 @4 'flowc' ^2","0.8.8"],"lancelot":["$Q analysis @k @0 x32/x64 PE @z","0.6.5"],"colorous":["Professional color schemes ported @t d3-scale-chromatic","1.0.5"],"struct2swagger_@b":[C[342],"0.1.6"],"framed-serial":["Add frames to serial connections. Useful @0 ^b &N. Can be built @7 no_std.",C[2]],"holochain_persistence_pickle":[C[315],"0.0.18"],"$P_xray":["^r ^N @0 @3 - ^r X-Ray @ 2016-04-12",C[27]],"witnet-bn":[C[81],"0.4.5"],"crev-lib":["@p @m @0 programmatic $X to @8 reviews of @S-crev",C[74]],"google-calendar3-cli":[C[282],C[296]],"ensicoin_&y":["Data @g $2 in @4 ensicoin @9","0.7.5"],"readline":["Wrapper $G readline on &j @5 Mac OS X, a shim on ^6. DO NOT USE: `rustyline` does @4 same job much better","0.0.13"],"libwebp-sys":["@H to libwebp (bindgen, &k linking)",C[2]],"rusty_express":["A @d &z @U @1 $A in @3 @5 provide Express-alike APIs. We know @l @3 is hard @5 daunting, so we will make sure $r @U can be &x to $d ^Y fear!","0.4.3"],"google-ml1_beta1":[C[293],C[294]],"td_proto_@f":["bin @9 @0 @3","0.1.4"],"matterdb-derive":["$q @a @0 matterdb.","1.0.0"],"timecode":["@1 to manipulate timecode",C[1]],"libflycapture2-sys":["@6 to @4 FlyCapture @1","0.1.1"],"solvent":["Dependency Resolver @1","0.8.2"],"emojicode-sys":["Emojicode @x @6","0.1.4"],"geojson":["@p @0 serializing @4 GeoJSON vector GIS $0 @G","0.22.2"],"substrate-test-utils":["Substrate ^7 @E","3.0.0"],"texture":["Micro-$a @0 $Z ^D-@n adventures",C[0]],"wasmtime-rust":["@3 ^h @0 Wasmtime","0.27.0"],"solana-program":["Solana Program","1.8.1"],"argparse-rs":["A @d argument @i, meant to parse @D $D input. It is &X by @4 Python ArgumentParser",C[0]],"bevy_transform":["@W hierarchy @5 transform $7 @0 Bevy Engine","0.5.0"],"pretable":["show pretty table","0.3.3"],"bloomfilter":["Bloom filter @2","1.0.9"],"seahorse":["A minimal CLI @k $A in @3","1.1.2"],"appscraps_event":["A @1 @0 $W @y to events in appscraps.",C[0]],"nu_$Y_inc":["A $4 incrementer $Y @0 Nushell","0.39.0"],"pyro":["Entity component @O","0.2.5"],"intertrait":["Allow @0 inter-$y casting",C[8]],"bittorrent":["Bittorrent Client And @p Written In @3, Using bip-rs",C[3]],"stubborn-io":["io $3/&o @l automatically recover @t potential disconnections/interruptions.","0.3.1"],"sqlx-adapter":["Sqlx adapter @0 casbin-rs","0.4.2"],"cargo-wasi-exe-x86_64-pc-windows-msvc":["Precompiled $Q of `@S-wasi` @0 x86_64-pc-windows-msvc","0.1.23"],"lucet-validate":["Parse @5 validate webassembly @z against witx @m","0.6.1"],"zellij-client":["$8 @c-side @1 @0 Zellij",C[95]],"connected_socket":["Connect() @0 UDP sockets","0.0.6"],"clickhouse-driver-cth":["CityHash $W @0 ClickHouse &b Driver.",C[0]],"$P_appsync":["^r ^N @0 @3 - ^r AppSync @ 2017-07-25",C[27]],"google-replicapoolupdater1_beta1-cli":[C[283],"2.0.4+20161003"],"signature_@F":["Signature @F @g of @4 Ockam @1.","0.28.0"],"std_prelude":["prelude @l @4 @f stdlib should have always had","0.2.12"],"cint":["A lean, minimal, @5 stable set of @g @0 color interoperation $t $R in @3.",C[8]],"num_enum":["$q @a to make inter-operation $t $9 @5 enums easier.","0.5.4"],"grid_search":["Collection of searching ^3","0.15.1"],"google-adsensehost4d1":[C[526],"2.0.8+20200930"],"router-rs":["A router @0 @c side &e @P @7 @U side &S @j",C[5]],"card-validate":["@3 card validate detects @5 validates credit card ^M","2.2.2"],"libquickjs-sys":["QuickJS Javascript Engine $L @6",C[13]],"rusticata-macros":["Helper @a @0 Rusticata","4.0.0"],"tree-sitter":["@3 @6 to @4 Tree-sitter @R @1",C[42]],"async-graphql-warp":["@J-graphql @0 warp","2.10.6"],"minidl":["Extremely lean cross @N @1 @0 loading symbols","0.1.1"],"f3":["Board Support Crate @0 @4 STM32F3DISCOVERY","0.6.1"],"merk":["Merkle key/&5 store","2.0.1"],"bincode-grpc":["grpc @7 bincode codec instead of protobuf","0.7.2"],"fabric-support-procedural-tools-derive":[C[627],"2.0.1"],"mp3-metadata":["Metadata @i @0 MP3 @z","0.3.3"],"solana-ownable":["ownable ^U","1.8.0"],"rocket_contrib_^H":["$q @a @0 @4 Rocket contrib &4.","0.4.10"],"dw":["An @m to libdw",C[3]],"fluent-fallback":["High-@C $F model @0 managing localization resourcesand @I localization lifecycle.","0.5.0"],"rust-tcl-sys":["Raw Tcl @6 @0 @3, $2 internally @f-tcl",C[3]],"interledger-service":["$8 @F $F @0 @4 Interledger.rs @2",C[2]],"petgraph-evcxr":["Draw petgraph graphs in jupyter notebook @u @4 evcxr $a",C[3]],"postgres-native-tls":[C[284],"0.5.0"],"mongo-file-center":["To store perennial @z @5 temporary @z in MongoDB.","0.6.4"],"owned_ttf_@i":["ttf-@i plus @j @0 owned @w",C[15]],"gfx_phase":["Render phase $F @0 gfx-rs","0.6.0"],"deb-version":["Compare (Debian-style) $4 ^M","0.1.1"],"try-guard":["A guard! @e &X by @4 guard Alternative @Y @t Haskell.",C[3]],"streaming-iterator":["Streaming iterators","0.1.5"],"minidom_writer":["Helper to &0 ^d a std::io::Write a minidom::Element","1.0.0"],"rtrace":["A pet raytracer to ^7 overall pseudo-$J @5 multi-threading","1.0.0"],"wide":["A @8 to help you go wide.","0.7.1"],"handlebars-fluent":["Handlebars &w @0 @4 Fluent internationalization @k",C[1]],"plumbum":["Conduit-$C @w &u @1","0.0.8"],"runestick":["Runescript, a ^G stack-@n virtual machine @0 @3.","0.9.1"],"flowr":["A runner @0 compiled 'flow' programs","0.36.0"],"iota-rs":["A @f @e @0 other Go refuges who miss const blocks @5 iota.",C[4]],"getpass":["unistd.h getpass @h","0.0.2"],"unic-ucd-version":["UNIC — &h Character Database — Version","0.9.0"],"dumbmath":["A pretty dumb math @1 oriented towards computer ^T",C[8]],"bevy_winit":["A winit window @5 input $N @0 Bevy Engine","0.5.0"],"teko-rs":["Command $D @m @0 Teko","0.1.9"],"kcat":["Kind of $C cat, but @7 syntax highlighting @5 keypathing ^d ^k @z.","0.1.6"],"bitset-fixed":["Bitset @0 DP.",C[0]],"kite":[C[285],C[5]],"bytebuffer":["A byte buffer @0 networking @5 $Q protocols",C[5]],"ommui_@w":["OMMUI @w $k","0.39.0"],"vhdl_ls":["VHDL &R Server","0.17.1"],"geo-booleanop":["@3 @2 of @4 Martinez-Rueda Polygon Clipping Algorithm",C[9]],"educe":["@Q @8 @s $e @a to help you implement @3-built-in $3 quickly.","0.4.18"],"kdtree":["K-dimensional ^0 in @3 @0 $I geospatial indexing @5 nearest neighbors lookup","0.6.0"],"alphanumeric-sort":["@Q @8 can help you sort order @0 @z @5 folders whose names contain numerals.","1.4.3"],"functional":["Functional $3","0.0.7"],"csv-core":["Bare bones CSV @R @7 no_std @j.",C[32]],"prima_bridge":["A @1 to implement @4 bridge pattern",C[7]],"datachannel-sys":["&M @6 to libdatachannel.",C[23]],"ipld-block-builder":[C[286],"0.4.1"],"nintendo-lz":["A &7 @1 @0 compressing/decompressing Nintendo's LZ10/LZ11 ^C formats","0.1.3"],"mysql_@J":["Tokio @n $n MySql @c @1.","0.28.1"],"proxy-wasm-experimental":[C[287],C[288]],"r2d2_arangors":["ArangoDB @j @0 @4 r2d2 connection pool","0.2.3"],"tracing-journald":["rich journald subscriber @0 `&g`",C[3]],"z3-sys":["Low-@C @6 @0 @4 Z3 SMT solver @t Microsoft Research","0.7.1"],"jsonl":["An @2 of ^k Lines @0 @3","4.0.1"],"libuv-sys2":["Thin $L @6 @0 libuv","1.41.0"],"exprtk_rs":["@3 @6 to @4 ExprTk C++ @1 (&z://www.partow.net/$m/exprtk)",C[0]],"cargo-brew":["A @S install @h to automatically install binaries ^d Homebrew.","0.1.4"],"duckdb":["Ergonomic @h @0 DuckDB","0.2.9"],"gifski":["pngquant-@n GIF maker @0 nice-looking animGIFs","1.5.1"],"qmetaobject":["Expose @f object to Qt @5 QML.","0.2.4"],"webrtc-mdns":["A ^X @3 @2 of mDNS",C[2]],"google-slides1-cli":[C[962],C[963]],"stream-dct":["Discrete Cosine Transform computation @7 controlled allocations.",C[0]],"grid_2d":["A general purpose 2d grid","0.15.1"],"conventional_commits_linter":["A tooling @5 @L &f Git commit linter @0 @4 Conventional Commits specification.","0.9.0"],"oxygengine-script-web":["Web scripting ^F @0 Oxygen Engine","0.12.5"],"rust-bert":["Ready-to-$d NLP pipelines @5 transformer-@n models (BERT, DistilBERT, GPT2,...)",C[72]],"tm4c129x":["Peripheral $X @x @0 TI TM4C129x $s","0.9.0"],"bitsparrow":["BitSparrow @2 in @3","2.0.0-rc4"],"sloggers":["@Q @1 @s frequently $2 slog loggers @5 convenient @y","2.0.2"],"switchyard":["Real-$z compute focused @J executor",C[5]],"^2_builtins":["Compiler intrinsics $2 by @4 @3 ^2. Also available @0 other targetsif necessary!","0.1.51"],"kucoin_rs":["@3 @J @1 @0 @4 Kucoin @x","0.4.4"],"trompt":["A @d prompting @1 @0 @f","0.0.4"],"timely":["A low-latency @w-parallel dataflow @O in @3",C[28]],"autogui":["GUI Automation toolbox @0 @3",C[2]],"dirty2":["Fork of @4 Dirty @8, @7 a few more features. Holds a &5 @7 a dirty flag $i is set on writes @5 cleared on clear()",C[0]],"nonmax":["Numeric @g @l cannot hold maximum ^V","0.5.0"],"decent-toml-rs-alternative":["A fork of @4 toml-rs @8 (by Alex Crichton) @l does not depend on $6. It is much less powerful, less documented, @5 not well-tested yet, but it is $I to compile @5 does what I want @0 my own $d case. It might grow ^d a very capable @8 at some point. Pair it @7 @4 decent-$6-toml-@b-alternative @8 to @b @4 (de)@M @2 @0 $r own @g, @5 thus avoid syn, quote, @5 $6 entirely.",C[1]],"pistoncore-current":["&T. Use `current`.","0.0.3"],"twilight-model":["Discord @x models @0 @4 Twilight ecosystem.","0.7.0"],"git_statusline":["A @d, sweet, $I statusline fragment @0 git repos","2.0.1"],"hansard":["Gets @4 last 20 Hansard Bound Volumes @0 @4 UK Parliament","0.1.3"],"hnsw":["Fast approximate nearest neighbors",C[16]],"sawtooth-sdk":[C[289],"0.5.0"],"tower-reconnect":["^W recreate a new `Service` instance when an ^q is encountered.",C[119]],"stackvector":["StackVec: vector-$C facade @0 stack-allocated arrays.","1.1.1"],"wascc-httpsrv":["^s Server capability provider @0 @4 waSCC &s host @I","0.9.2"],"google-appstate1-cli":[C[290],"2.0.4+20190627"],"libstorage":["Storage ^t @y","0.4.8"],"seccompiler":["@W &x-to-$d seccomp-bpf jailing.",C[3]],"sp-staking":[C[901],"3.0.0"],"cmake":["A $j &m @0 running `cmake` to $j a &8 @1","0.1.46"],"network-internet-control-message-protocol":["A domain model of Internet Control Message ^c (ICMP) packets @5 associated @g.","0.1.15"],"piston2d-scroll_controller":["A Piston @1 @0 ^a scroll areas",C[28]],"ever":["Print @4 $j $f of $r ^U @7 minimal boilerplate",C[3]],"actix-swagger":["Code @B @t swagger $0 @0 actix-&e @k",C[1]],"union-future":["Macro @l allows &x construction of explicit Future state machines @l result @t branching","0.1.1"],"msgpack":["MessagePack @M @2 @0 @3",C[0]],"cfg-match":["Compile-$z conditionals",C[5]],"google-books1":[C[291],C[33]],"sid":["@K Id. Tiny @8 ^R strongly typed ids @5 an id-@n vector.","0.6.1"],"zermelo":["A @1 @l retrieves a schedule @t Zermelo.","0.4.1"],"text-block-macros":["Create a multiline $c literal","0.1.1"],"^f_libra_vm":["Libra vm",C[10]],"internet2":["@3 @2 @0 @4 stack of Internet2 protocols",C[292]],"coremidi-sys":["Low-@C $L @6 @0 @4 CoreMIDI @k","3.0.1"],"tarpc-lib":[C[424],"0.7.0"],"hkd32":["HMAC-@n Hierarchical Key Derivation: deterministically derivea hierarchy of symmetric keys @t initial keying material throughrepeated @P of @4 Hash-@n Message Authentication Code(HMAC) construction. Optionally supports storing root derivationpasswords as a 24-word mnemonic phrase (i.e. BIP39).","0.6.0"],"cargo-count":["Cargo &i @0 displaying statistics about projects, such as @V, comments, @5 unsafe counters","0.2.4"],"libsystemd":["A ^X-@3 @c @1 to @o @7 systemd","0.3.1"],"dia-hammer":["A ^U helping @7 hashing @w via Keccak ^3","2.1.0"],"amadeus-aws":[C[179],"0.4.3"],"json-decode":["An elm &X @I ^k decoder @0 @3","0.6.0"],"unleash-api-client":["An &Y://unleash.github.io/ @x @c","0.6.0"],"sapp-windows":[C[532],"0.2.18"],"bitstream":["Bit @C IO","0.1.1"],"glfw":["GLFW3 @6 @5 idiomatic @h @0 @3.","0.42.0"],"circular-queue":["A circular buffer-$C queue.","0.2.6"],"apple-crash-report-parser":["Parses apple crash report ^D @z.","0.4.2"],"rustls-split":["A rustls TCPStream @h @l can send @5 receive @t separate threads.",C[8]],"flarelog":["flarelog is an ergonomic &H @1 @0 @3 @7 a focus on simplicity @5 speed.","0.5.0"],"libloading":["@H $G @4 platform's dynamic @1 loading $9 @7 greatly improved $g safety.","0.7.1"],"sphinxad-sys":["Sphinxad low-@C @h, @l allows to read @w @t microphone","0.1.3"],"monto":["A @8 @0 @4 Monto @9. @Q @8 implements $4 3.0.0-draft03 of @4 @9.","0.1.12"],"sfml":["@3 $W @0 sfml",C[72]],"ironstorm_lookup":["Lightning $I lookup table @0 auto completion, $l ahead, suggestion engines.","1.0.4"],"without-alloc":["Replacements @0 `Box`, `Rc`, `Vec`, .. ^Y `alloc`",C[5]],"ttrexec":[C[35],"0.2.35"],"tokio-modbus":["Tokio-@n Modbus @1","0.5.0"],"ink_^l":["[ink!] @H to @4 Wasm heap $g ^l.",C[107]],"odbc32-sys":["$L @6 to odbc32. @Q @8 is a placeholder @0 @4 future. If you are interested in this @1 feel free to get in touch @7 me: &z://www.rustaceans.org/retep998","0.0.1"],"geographiclib-rs":["A port of geographiclib in @3.",C[3]],"ifmt":["Inline expression interpolation @0 @3.","0.3.3"],"slice-of-array":["Extension $3 @0 casting $t slices @5 slices of arrays. (&[T] <-> &[[T; n]])","0.3.1"],"unicode-bidi-mirroring":["&h Bidi Mirroring propery detection",C[0]],"google-ml1_beta1-cli":[C[293],C[294]],"google-surveys2-cli":[C[828],"2.0.4+20180508"],"filecoin-proofs":["$8 Filecoin specific aspects of ^x-proofs, including a C @n $L, to ^n @5 verify proofs.","10.1.0"],"uaparser":["A @3 @2 of @4 UA &B",C[2]],"set_slice":["A @e @0 assigning ^V to slices",C[1]],"kernlog":["Kernel logger @2 (@0 low @C &H to `/dev/kmsg`).","0.3.1"],"dusk-jubjub":["Dusk's fork of @4 @2 of @4 Jubjub elliptic curve group",C[12]],"peek-nth":["An iterator adapter @l allows you to efficiently peek @4 nth item of an iterator.",C[3]],"handlr":["Manage mimeapps.list @5 default @P @7 ease","0.6.4"],"gate":["A specialized 2D game @1","0.6.3"],"heapsize":["Infrastructure @0 measuring @4 total @I size of an object on @4 heap","0.4.2"],"evm-core":[C[958],"0.31.0"],"hex_fmt":["Formatting @5 shortening byte slices as hexadecimal $p",C[1]],"interprocess":["Interprocess communication toolkit","1.1.1"],"py_literal":["Read @5 &0 Python literals",C[2]],"coin_cbc_@r":[C[295],"0.1.1"],"solana-sdk":["Solana ^N","1.8.1"],"runny":["Run a ^U inside its own ^I group","1.2.5"],"rustc-ap-rustc_@w_$k":["^W published $4 of @4 @X `rustc_data_structures` in @4 @f-lang/@f repository @t commit 9a27044f42ace9eb652781b53f598e25d4e7e918 $8 publishing script @0 this @8 lives at: &Y://github.com/alexcrichton/&K-auto-publish",C[215]],"rmpv":["Value variant @0 RMP","1.0.0"],"mpack":["An alternative MessagePack @2 @0 @3.",C[4]],"oasis-test":["A $S @k @0 Oasis executables.","0.4.1"],"wombo":["^e @0 managing event loop threads.",C[4]],"fixed-sqrt":["Square root @0 fixed-point ^M","0.2.4"],"nrf51-hal":["HAL @0 nRF51 $s",C[24]],"bacon-sci":["Scientific computing in @3",C[28]],"etcd-client":["An etcd v3 @x @c","0.7.2"],"avif-serialize":["Minimal writer @0 AVIF header $V (MPEG/HEIF/MIAF/ISO-BMFF)","0.7.5"],"cloud-storage":["A @8 @0 uploading @z to Google cloud ^x, @5 @0 $E download urls.",C[420]],"hex-view":["Easily @G a &[u8] as hex.","0.1.3"],"c3p0":[C[620],"0.63.1"],"eclectic":["Experimental $b $3.",C[28]],"dbcrossbar":["Program @0 copying @w $t databases (pre-release)",C[292]],"ttyaskpass":["a safely passphrase prompt @1.","2.0.1"],"npm_scripts":["Check @4 availability of npm scripts @5 execute them",C[3]],"xcb-util":["@3 @6 @5 &r @0 XCB $w @y.",C[2]],"unsegen_jsonviewer":["An unsegen widget @0 viewing structured @w (&V)",C[1]],"hotg-runecoral":["@H to @4 librunecoral @1 @0 doing hardware-accelerated inference.","0.3.6"],"list_&I":["Python-$C list comprehensions in @3","0.0.2"],"prototty_decorator":["Prototty views @0 decorating other views","0.29.0"],"plain_enum":["Mimicing Java's enum::^V() @5 EnumMap","0.9.10"],"libsystemd-sys":["$L @6 to libsystemd @5 libelogind","0.9.0"],"serdeconv":["@Q @8 @s convenient $3 @5 @y @0 converting $t TOML/^k/MessagePack $p @5 serializable ^V.",C[2]],"fake_clock":[C[199],"0.3.1"],"gstreamer-gl-sys":["$L @6 to libgstgl-1.0",C[26]],"sync_@h":["A ^4 @0 enlisting @4 compiler’s help in proving @4 absence of concurrency","0.1.1"],"async-rustls":["Async TLS/SSL streams @u rustls",C[3]],"jed":["Produces Json Iterators &6 instances of io.Read",C[4]],"str_stack":["A $c ^l @0 allocating many &0-once strings.This @1 is primarily useful @0 @R where you need to repeatedly buildmany $p, $d them, @5 then throw them away. Instead of allocating many independent $p, this @1 will put them all in @4 same buffer.",C[0]],"google-bigquery2-cli":[C[533],C[296]],"parity-multiaddr":[C[297],"0.11.2"],"rabbiteer":["AMQP/RabbitMQ input/&Z CLI ^4","1.4.1"],"fastobo-validator":["Faultess validation ^4 @0 OBO products",C[2]],"coalesce":["Combine disjoint @g @l share $u $3.","0.1.1"],"png-framing":["Encoding @5 ^P PNG images. That's it.","0.5.0"],"cvar":["Configuration variables.",C[1]],"julius":["Wrapper @0 Julius","1.0.0"],"pnet_@r":[C[345],"0.28.0"],"xcompress":["XCompress is a free $0 archiver $w on &j, ^R multi-@G archiving to @5 extracting @t ZIP, Z, GZIP, BZIP2, LZ, XZ, LZMA, 7ZIP, TAR, RAR @5 ZSTD.","0.11.6"],"rsgenetic":["A @1 ^R genetic $1 execution.","1.8.1"],"tynm":["Returns $l names in shorter form.","0.1.6"],"simplisp":["A @d lisp interpreter.",C[2]],"bevy_window":["@W windowing $7 @0 Bevy Engine","0.5.0"],"switchboard-program":["A @3 @1 to @o @7 Switchboard @w feeds.","0.1.57"],"rbatis_sql":[C[870],"2.0.21"],"stack-sizes":["Tools to print stack usage $f emitted by LLVM in human readable @G",C[2]],"vsss-rs":["Verifiable Secret Sharing Schemes @0 splitting, combining @5 verifying secret shares","2.0.0-pre0"],"hypercore":["Secure, distributed, append-only log","0.11.1-beta.10"],"cuckoo":["Cuckoo search $1",C[7]],"primesieve-sys":["Raw @6 to @4 [primesieve](&z://primesieve.org) C @1","0.2.3"],"if-addrs-sys":["if_addrs @r @8",C[9]],"sawtooth-sabre":["Sawtooth Sabre Transaction Processor","0.7.2"],"jemallocator-global":["Sets `jemalloc` as @4 `#[global_allocator]`",C[9]],"coll":["Some basic (persistent) &C","0.1.3"],"nu_$Y_to_bson":[C[298],"0.39.0"],"argmin_^H":["Pure @3 optimization &1 (@V ^1)","0.1.8"],"sval":["A no-std, object-$M @M @k",C[299]],"cw20":["Definition @5 @g @0 @4 CosmWasm-20 @m",C[12]],"yj":["Command $D ^4 @l converts YAML to ^k","1.1.33"],"bmrng":["@J MPSC request-response channel @0 Tokio","0.5.2"],"v_escape_@b":["$q @e @X @0 v_escape","0.9.1"],"syn-test-suite":["Test suite of @4 syn @8","0.0.0+test"],"ted":["Core ^D editor $7.","0.7.0"],"sheesy-vault":["Vault $7 $2 by 'share-secrets-safely' CLI. Use it to @o @7 GPG @n vaults.","4.0.11"],"find-places-db":["Quick @5 dirty @8 @0 finding a user's local places databases",C[3]],"utmp":["utmp(x) $0 @i.","0.0.2"],"omnom":["Streaming @i &p @0 BufRead","3.0.0"],"dia-time":["Small kit @0 $z","6.1.0"],"rson_rs":["@3 Object Notation",C[5]],"vpx-encode":["@3 @m to libvpx encoder","0.6.0"],"&V_typegen":["$q @e @l generates @3 @g @t ^k samples","0.7.0"],"$6_@a":[C[300],"0.8.9"],"osm-xml":["OSM xml @i @0 @3","0.6.2"],"formality":["An ^Z $m @L featuring formal proofs.",C[38]],"askama_tide":["Tide $T @0 Askama templates",C[15]],"cart-tmp-wgt":[C[301],C[0]],"tokio-boring":["An @2 of SSL streams @0 Tokio backed by BoringSSL","2.1.3"],"bevy-inspector-egui-derive":["@v detail of @4 `bevy-inspector-egui` @8","0.6.1"],"singleton":["Singleton holder @0 convenient global state ^A.",C[8]],"set-error":["A very @d $y @l overwrites errors.","1.0.1"],"tabbycat":["A @f @8 @0 $E graph scripts @7 dot @L",C[4]],"custom_@b":["(Note: superseded by `@e-attr`) @Q @8 @s a @e @l enables @4 $d of custom @b attributes.","0.1.7"],"ckb-channel":["Channel @h.",C[302]],"slice-pool":["A @1 @0 @u a slice as a $g pool","0.4.1"],"geozero":[C[946],"0.7.4"],"yenc":["Encodes @5 decodes @u @4 yEnc $5.",C[8]],"blockchain_contracts":["Blockchain contracts $2 by COMIT-^9 daemons to execute ^w protocols.","0.4.1"],"hostlist-parser":["Parses hostlist expressions ^d a Vec of Strings","0.1.3"],"simsearch":["A @d @5 ^O fuzzy search $a @l works in $g, searching @0 similar $p (a pun here).","0.2.3"],"pyo3-asyncio-macros":["Proc Macro Attributes @0 PyO3 Asyncio","0.14.1"],"rmessenger":["A @3 Wrapper @0 @4 FaceBook Messenger Bot @x","0.0.4"],"dylib":["Standalone $4 of former dylib ^F","0.0.3"],"cini":["A &7 callback @n @1 @0 @R ini @z","0.1.1"],"slog-json":["^k drain @0 slog-rs","2.4.0"],"zinc64":["Commodore 64 emulator app",C[7]],"cryptomkt":["@v of Cryptomarket @x","0.2.4"],"alacritty_$o":["@p @0 $O $o emulators",C[23]],"ocaml-sys":["Low-@C OCaml @6 @0 @3",C[74]],"imdl":["📦 A 40' shipping container @0 @4 internet","0.1.12"],"float_duration":["Floating-point Duration support.Provides quantification @0 spans of $z. Unlike @4 ^E std::$z or @4 chrono @8, this @8 aims to provide a fully featured Duration $l $i exposes @5 uses floating-point ^V instead of integer ones.","0.3.3"],"git-transport":["A WIP @8 of @4 gitoxide ^g dedicated to ^5 @4 git transport layer",C[15]],"qt_charts":["@H @0 QtCharts C++ @1","0.5.0"],"bunt":["@K @a to &0 colored @5 formatted ^D to a terminal.Based on `termcolor`, thus also cross-@N.","0.2.6"],"conway":["@1 @0 multi-player game of life Conwayste",C[1]],"st7789":["ST7789 TFT LCD ^j @7 ^b-^T @j","0.6.1"],"thruster-core-async-await":["An @J await shim @0 @4 @F features of @4 thruster &e @k",C[78]],"nonzero_signed":["DEPRECATEDRust's std lib will stabilize their own signed NonZero @g in @3 1.34, pleaseuse those instead if you're @u @3 1.34 or greater. You can find them instd::num or @F::num.DescriptionA &7 set of @g @0 signed nonzero integers.","1.0.3"],"cxxbridge-cmd":["C++ @V @B @0 integrating `cxx` @8 ^d a non-Cargo $j.","1.0.56"],"microbench":["A micro-benchmarking @1.","0.5.0"],"beagle":["A basic linear algebra @1 @0 computer ^T.","0.1.4"],"mind":["A productive mind has an empty stack","0.7.3"],"errno-dragonfly":["Exposes errno $7 to stable @3 on DragonFlyBSD",C[4]],"spirq":["Light weight SPIR-V query $w @0 ^T.","0.4.16"],"modelator":["A @k @5 &1 @0 model-@n $S.","0.3.1"],"derive-into-owned":["Custom derives to help @7 @g containing Cow fields",C[0]],"webkit2gtk-sys":["@3 $W @0 webkit-gtk @1","0.15.1"],"actix-threadpool":["Actix &d pool @0 sync @V","0.3.3"],"apply":["A tiny @1 @0 chaining free @y ^d method call chains.",C[1]],"gmp-sys":["libgmp low-@C @6",C[0]],"dcmimu":["no_std DCM IMU @2",C[8]],"skia-sys":["2D graphic @1 @0 drawing Text, Geometries, @5 Images. $L @6 only.","0.20130412.3"],"memuse":["Traits @0 measuring dynamic $g usage of @g",C[3]],"todo_lib":["Collection of @E @0 todo.txt @G","4.0.0"],"html5ever":["High-$J browser-grade HTML5 @i","0.25.1"],"fastrand":["A @d @5 $I &L &a @B","1.5.0"],"festive-macros":[C[303],C[8]],"rmf":["visual rm -rf","0.2.5"],"czmq":["High-@C @6 to @4 CZMQ @1",C[0]],"clacks_tl_^H":["^H @0 clacks","0.0.5"],"itoa":["Fast @y @0 printing integer $9 to an io::Write","0.4.8"],"shawshank":["An ^Z, ^G internment $V.","0.2.3"],"crayon":["A &7, portable @5 extensible game @k.","0.7.1"],"swc-hosts":["Safely parse /etc/hosts @t Someone Who Cares.",C[5]],"amq-protocol-types":["AMQP specifications - @g",C[304]],"memchain":["In-$g blockchain simulator.","0.4.1"],"tc-tracing":["Instrumentation @2 @0 tetcore.","2.0.0"],"nu-command":[C[484],"0.39.0"],"btleplug":["A Cross-Platform @3 Bluetooth Low Energy (BLE) GATTlibrary.","0.9.0"],"elefont":["A @1 @l handles caching rendered glyphs on @4 GPU","0.1.3"],"svgbob_^y":[C[643],"0.6.2"],"rust2vec":[C[425],"0.5.2"],"pyflow":["A modern Python installation @5 &m &F","0.3.1"],"iron_vhosts":["An Iron addon to allow requests to be routed @n on @4 host.","0.5.0"],"mackerel_$Y":["Mackerel $Y ^t @1","0.2.5"],"rusty-s3":["@K ^X @3 ^r S3 Client following a Sans-IO approach",C[4]],"cdivsufsort":["@3 @6 @0 Yuta Mori's divsufsort","2.0.0"],"noble-multisig":["FABRIC multi-signature dispatch noble","2.0.0"],"ifmt-impl":["@v detail of @4 ifmt @8.","0.3.3"],"^f_libra_ir_to_bytecode_syntax":["Libra ir to bytecode syntax",C[10]],"primal":["`primal` puts raw power ^d prime ^M. @Q $R includes:optimised prime sieves, checking @0 primality, enumerating primes,factorising ^M, @5 state-of-@4-art estimation of upper andlower bounds @0 π(n) (@4 &a of primes below n) @5 p_k (@4 k-thprime).",C[1]],"changelog":["Changelog @B","0.3.4"],"orderbook":["Orderbook @0 @3","0.1.9"],"enso-data":[C[386],C[3]],"stm32f429":["Peripheral $X @x @0 STM32F429 $s","0.6.1"],"libdeflate-sys":[C[677],"0.7.3"],"lin-bus":["LIN bus ^j $3 @5 @9 @2","0.3.1"],"clickhouse-driver-cthrs":["@f CityHash @0 ClickHouse &b Driver.","0.1.1"],"y4m":["YUV4MPEG2 (.y4m) Encoder/Decoder.","0.7.0"],"gtin-validate":["Validate GTIN barcodes including UPC-A @5 EAN-13.@Q ^F has built-in @j @0 GTIN-8, GTIN-12 (UPC-A), GTIN-13 (EAN-13), @5 GTIN-14 codes.","1.3.0"],"wasm3-sys":["Raw ffi @6 @0 wasm3",C[1]],"kes":["Korean Era Script",C[72]],"ssd1351":["Driver @8 @0 @4 SSD1351 16bit colour OLED display ^j.",C[2]],"is_prime":["Fast arbitrary length prime &a checker @u @4 Miller-Rabin primality ^7 $1","1.0.5"],"random-access-disk":["Continuously read,&0 to disk, @u &L offsets @5 lengths","2.0.0"],"unquote":["A reverse quote @e... @l is: A @e to parse input @t a ParseStream according to a given pattern.","0.0.6"],"synattra":["A Syn Attribute &B Toolkit",C[5]],"varisat-internal-macros":["Internal @a @0 @4 Varisat SAT solver",C[8]],"mvdb":["Minimum Viable (Psuedo) Database",C[1]],"javascriptcore-rs":["@3 @6 @0 @4 javacriptcore @1","0.15.1"],"opengraph":["Parses html @5 extracts Open Graph @9 markup","0.2.4"],"fluvio-controlplane-metadata":["Fluvio metadata","0.12.2"],"rusty-release":["Make a release of a @S ^g","0.7.1"],"tylar":["Type-Level Arithmetic in @3",C[8]],"enso-flexer":[C[305],C[3]],"acacia":["A spatial partitioning @5 ^0 @1.",C[3]],"plexus":["2D @5 3D mesh &u.","0.0.11"],"nickel_cookies":["Cookies @j @0 nickel.rs",C[3]],"zkp-u256":["Performant @2 of 256-bit unsigned integers",C[5]],"derive-new":["`#[@b(new)]` implements @d constructor @y @0 &o @5 enums.","0.5.9"],"tasque":["A @d &d pool @1","0.1.5"],"va_list-helper":["Test ^t @0 @4 `va_list` @8. Not @0 user consumption.","0.0.2"],"gdnative-impl-proc-macros":["Internal &m of @4 gdnative @6.","0.9.3"],"atsamd51g":["Peripheral $X @x @0 ATSAMD51G $s (^8 @u svd2rust)",C[16]],"untrusted":["Safe, $I, zero-panic, zero-crashing, zero-allocation @R of untrusted inputs in @3.","0.9.0"],"merkle-tree-stream":["A ^L @l generates a merkle ^0 @n on @4 incoming @w.","0.12.1"],"stripper_@m":["@Q is @4 @1 $2 by rustdoc-stripper @5 gir to ^n comments @z.","0.0.6"],"tremor-kv":["A logstash inspured key &5 extractor",C[3]],"deno_lint":["lint @0 deno","0.18.1"],"frame-system":["FRAME @O ^F","3.0.0"],"pid":["A PID controller.","3.0.0"],"notmuch":["@3 @m @5 @6 @0 notmuch","0.7.0"],"fts-sys":["File hierarchy traversal @y (FTS)",C[5]],"rx":["Reactive $m @0 @3","0.0.1"],"tap":["&W &p @0 tapping ^V in @3","1.0.1"],"aurelius":["A @q solution @0 previewing markdown.","0.7.3"],"scraper":["HTML @R @5 querying @7 CSS selectors",C[28]],"libnss":["@3 @6 @0 $Z libnss modules",C[2]],"openssl2-sys":[N,"1.0.0"],"k9":["@f $S @1",C[17]],"iri-string":["IRI as $c @g",C[2]],"sval_&V":["^k @j @0 @4 sval @M @k",C[299]],"d3d12-sys":["Contains @Y $h @0 @4 ^6 @x @1 d3d12. See winapi @0 @g @5 constants.",C[3]],"pickledb":["A ^O @5 @d key-&5 store $A in @3, heavily &X by [Python's PickleDB](&Y://pythonhosted.org/pickleDB/)","0.4.1"],"varlink-cli":["varlink @D $D ^4","4.5.2"],"i2p_@c":["A SAMv3 I2P @c @0 @4 local I2P router instance.","0.2.9"],"aes-ctr":[C[118],C[979]],"ruplacer":["Find @5 replace ^D in source @z","0.6.2"],"canonical":["A @M @1 built @0 no_std environments where you want to deal @7 recursive datastructures.","0.6.5"],"simd-json-derive-int":["procmacros @0 simd-&V-@b",C[5]],"subscript":["reserved 👉 @0 @4 new ^2 (@5 other infrastructure) see &Y://github.com/subscript-publishing 👉 We decided to move away @t @4 old monolithic codebase @5 split everything ^d smaller sub-projects (@0 now).","0.4.1"],"esbuild-rs":["@3 @h @0 esbuild, an extremely $I JS minifier $A in Go","0.13.8"],"crabler":["Web scraper @0 Crabs","0.1.22"],"dummy-test-xss":["<img onload='alert('Injected 777')' src='&Y://google.com'>%3Cimg%20onload%3D'alert('Injected%20666')'%20src%3D'https%3A%2F%2Fgoogle.com'%3E","0.1.5"],"ref-cast-impl":["&n @2 @0 ref_cast::RefCast.","1.0.6"],"hg-parser":["Mercurial repository changelog @i. It allows to get any revisionwith creation date, user, parents, branch @5 @z.","0.6.0"],"toornament":["@p @0 Toornament.com @4 eSports @N","2.1.0"],"derive-getters":["@K boilerplate getters @B.",C[3]],"$i":["A @3 equivalent of Unix @D \"$i\". Locate installed executable in cross platforms.","4.2.2"],"quinn-proto":["State machine @0 @4 QUIC transport @9","0.7.3"],"rocket-multipart-form-data":["@Q @8 @s a multipart @i @0 @4 Rocket @k.",C[13]],"assert-impl":["Macro @0 &k assert @g implement a $y or not","0.1.3"],"stirling_^M":["A few @y relating to Stirling ^M of @4 second kind.","0.1.5"],"bincode2":["A $Q @M / &9 strategy @l uses Serde @0 transforming &o ^d bytes @5 vice versa!","2.0.1"],"mutex-trait":["Foundational mutex $y @5 &w",C[3]],"rust-embed":[C[667],"6.2.0"],"livy":["Apache Livy REST @x Client","0.5.0"],"$y_exerci":["how to understand @4 $y @0 @f",C[1]],"sxd-document":["A @3 XML DOM @1",C[9]],"geoip-sys":["Low-@C @6 @0 @4 GeoIP @1","0.0.14"],"cargo-pack-docker":["pack artifacts ^d a docker image","0.5.0"],"physx-sys":["Unsafe @6 @0 NVIDIA PhysX C++ ^N","0.4.15"],"medea-client-api-proto":["Client @x @9 @2 @0 Medea media @U",C[1]],"fn_box":["Box up $r FnOnces","1.0.5"],"display-as-proc-macro":["A ^t @8 @0 display-as-template.","0.6.0"],"dynamic_reload":["Cross-@N dynamic reloading of &J &4",C[2]],"serial-windows":["Serial port @2 @0 ^6.",C[2]],"undo":["Low-@C undo-redo $7.","0.46.3"],"riscv":["Low @C $X to RISC-V processors","0.7.0"],"streamcatcher":["A &d-$M, &J ($n), almost-lockless ^L buffer.","1.0.0"],"tcs3472":["Platform-&f @3 ^j @0 @4 TCS3472 RGB color light to digital converter @7 IR filter.",C[3]],"lcov":["LCOV tracefile @i/merger/filter in ^X @3.","0.7.0"],"unicode-jp":["A @1 to convert Japanese Half-width-kana[半角カナ] @5 Wide-alphanumeric[全角英数] ^d normal ones.",C[2]],"npnc":["Lock-free queues.",C[5]],"yata":["Yet another Technical Analysis @1. For @f now.","0.4.7"],"sputnikvm-precompiled-modexp":["modexp precompiled contracts @0 SputnikVM.",C[306]],"wdg-base16":["$8 Base16 Data Encoding","0.4.7"],"oxygengine-audio-backend-web":["Audio Web $N ^F @0 Oxygen Engine",C[42]],"mio-named-pipes":["^6 named pipe @6 @0 mio","0.1.7"],"opg":[C[307],"0.0.34"],"cgroups":[C[308],C[0]],"slog-syslog":["Syslog drain @0 slog-rs","1.0.0-alpha9.1"],"nonvolatile":["A @X ^R @4 ability to store $H @w out of @4 way","0.8.3"],"scratch":["Compile-$z temporary directory &J by &l $R @5 erased by `@S clean`","1.0.0"],"serde-pickle":["A $6-@n @M @1 @0 Python's pickle @G","1.1.0"],"vmm-sys-util":["A @O $w set","0.9.0"],"clickhouse-rs-cityhash-sys":["@3 CityHash @r @X @0 clickhouse-rs.",C[4]],"rustdoc-highlight":["A @3 syntax highlighting @1",C[32]],"persia-speedy-derive":[C[309],"0.7.3"],"bevy_webgl2":["A webgl2 wasm32 render $N @0 Bevy Engine","0.5.2"],"@f_icu_$u":["&M @6 to @4 ICU4C @1 @t Unicode.Commonly $2 @g.","1.0.3"],"fwupd-dbus":["fwupd dbus @c @6",C[3]],"graphy_&k_util":["@W some ^u to help create mutable statics @7 lazy_static.",C[1]],"amadeus-derive":[C[179],"0.4.3"],"local-ip":["Get $r local IP address.",C[0]],"uhttp_body_bytes":["Iterator @0 ^s request body bytes","0.5.2"],"tz-search":["Compute @4 timezone of latitude/longitude pairs.","0.1.1"],"@b_^u":["A $e @e ^t @0 easily $O @b @a @0 enums.","0.11.2"],"analytic":["$8 analytic @8 has been renamed to be @4 math @8 &Y://crates.io/$R/math","0.7.1"],"tokio-timer-patched":["Timer facilities @0 Tokio, patched @0 ^a issue #36, @5 pushed to Crates.io so @l it can be $2 in other open source $R.","0.1.3"],"casual":["@K @8 @0 @R user input.",C[3]],"dbus-serialize":["Encoder / Decoder @0 D-Bus Types",C[4]],"human-errors":["An ^q @1 focused on ^R $r users @7 relevant advice @0 any problem.","0.1.1"],"weezl":["Fast LZW ^C @5 decompression.","0.1.5"],"secur32-sys":["Contains @Y $h @0 @4 ^6 @x @1 secur32. See winapi @0 @g @5 constants.",C[3]],"ioctl-rs":["@3 @6 @0 @O ioctls.",C[3]],"hyper-proxy":["A proxy connector @0 Hyper-@n @P","0.9.1"],"diesel-tracing":["Connection telemetry &G @0 diesel @5 &g","0.1.5"],"lokacore":["Lokathor's @F-only odds @5 ends",C[1]],"futurize":["Future worker boilerplate codgen","0.5.0"],"qt_ritual_$j":[C[356],"0.5.0"],"google-datastore1":["A @q @1 to @o @7 datastore (@9 v1)",C[310]],"rustls-pemfile":["Basic .pem $0 @i @0 keys @5 certificates",C[5]],"sc-tracing":["Instrumentation @2 @0 substrate.","3.0.0"],"protobuf-build":["Utility @y @0 $E @3 @V @t protobufs (@u protobuf-@f or Prost)","0.12.3"],"checkr":["An @x @c @0 Checkr","0.0.10"],"sc-telemetry":[C[803],"3.0.0"],"google-deploymentmanager2_beta2-cli":[C[311],"2.0.4+20160201"],"sugars":["An useful $b of @a to make tasks easier.","3.0.0"],"owasm-abi-derive":[C[312],C[2]],"svlint":["SystemVerilog linter","0.4.18"],"tp-runtime-interface":["Tetcore @I @m","2.1.2"],"jq-src":["@x @0 compiling @5 link libjq @t source.","0.4.1"],"vec-drain-where":["alternative `Vec::drain_filter` impl","1.0.1"],"jtd":["A @3 @2 of ^k Type Definition","0.3.1"],"shunkakinoki":["shunkakinoki","4.30.3"],"dbus-udisks2":["UDisks2 DBus @x",C[3]],"cranelift-module":["Support @0 linking @y @5 @w @7 Cranelift","0.77.0"],"rustls-connector":["Connector similar to openssl or &8-tls @0 rustls",C[23]],"numeric-enum-macro":["A declarative @e @0 $l-$M enum-to-^M conversion",C[3]],"telnet":["A @d @2 of telnet @9.",C[5]],"squark":["Virtual DOM implemention @5 $U definition &X @t HyperApp","0.7.1"],"libsecp256k1":["Pure @3 secp256k1 @2.","0.7.0"],"skimmer":["@K streams reader","0.0.2"],"chipmunk":["@3 @6 to @4 chipmunk-2d physics $a. @Q @8 is a work in progress.","0.0.2"],"ckb-hash":["CKB default ^z @Y.",C[302]],"executor":["A minimalistic @J/await executor",C[7]],"typescript-definitions":[C[313],C[32]],"mucell":["A cell @7 @4 ability to mutate @4 &5 through an immutable reference when $M","0.3.5"],"wabt-sys":[C[314],C[7]],"holochain_persistence_lmdb":[C[315],"0.0.18"],"ruspiro-uart":["@K @5 convinient $X @x to @4 Raspberry Pi 3 UART0 (PL011) @5 UART1 (miniUART)peripherals",C[2]],"frunk-enum-core":["Implemenation of genericized enums @0 $d @7 frunk",C[5]],"dot":["A @1 @0 $E Graphviz DOT @L @z @0 graphs.","0.1.4"],"sp-wasm-interface":[C[316],"3.0.0"],"$y_tests":["A ^2 $Y to allow tests to be defined agaist $3.","0.3.3"],"handlegraph":["@p @0 $d in variation graphs","0.7.0-alpha.9"],"xenctrl-sys":["@3 @6 @0 Xen hypervisor","0.1.1"],"msi":["Read/&0 ^6 Installer (MSI) @z",C[2]],"lpfs":["Retriving infomations @t linux ^B filesystem",C[3]],"wayland-kbd":["Keyboard mapping $w @0 wayland-@c @u libxkbcommon.","0.13.1"],"cloudevents-sdk":["CloudEvents official @3 ^N",C[2]],"compress-tools":["Utility @y @0 compressed @5 archive @z ^a","0.12.2"],"gregor":["@K @2 of @4 Gregorian calendar.","0.3.3"],"sn_node":["@v of @4 nodes @0 @4 Safe Network.","0.49.9"],"mockall_@b":["$q @a @0 Mockall","0.10.2"],"lunardate":["A Chinese Calendar @p in @3",C[3]],"cargo-show":["Prints @X metadata $C pip show, apt-cache show, npm view, gem query, etc.","0.5.9"],"google-servicecontrol1":["A @q @1 to @o @7 Service Control (@9 v1)",C[33]],"python-pkginfo":["Parse Python @X metadata @t sdist @5 bdists @5 etc.","0.5.0"],"multihash":[C[330],C[23]],"sp-tracing":["Instrumentation $9 @5 @a @0 Substrate.","3.0.0"],"sailfish-compiler":[C[317],"0.3.3"],"ocl-extras":["Types $2 in examples @5 tests within @4 ocl @1 but @l may be usefulfor others to $d within their own projects.","0.1.1"],"ei":["erl_interface @0 @f",C[3]],"tokio-curl":["An @2 of an $n ^s @c @u @Z backed bylibcurl.",C[38]],"nn":["A multilayer feedforward backpropagation neural ^9 @1","0.1.6"],"game2048":["2048 game in @3","0.0.5"],"arc-cell":["Helper @0 a @d Cell-$C object containing Arc/Weak","0.1.5"],"rand_xorshift":["Xorshift &L &a @B",C[1]],"winapi-build":["&O @V @0 build.rs in WinAPI -@r $R.","0.1.1"],"slog_@b":["Custom derives @0 $d @7 slog.",C[3]],"heartbeats-simple":["@3 abstractions @0 heartbeats-@d-@r","0.4.1"],"awmp":["An &x to $d @h $G multipart/form-@w @0 Actix &e","0.7.0"],"netstring":["@p @0 $5 @5 ^P netstrings","0.4.1"],"suffix_^0":["Suffix trees.",C[8]],"bitfield":["@Q @8 @s @a to ^n bitfield-$C struct.","0.13.2"],"nalgebra":["General-purpose linear algebra @1 @7 transformations @5 statically-sized or dynamically-sized matrices.","0.29.0"],"elf_rs":["A @d no_std ELF $0 reader @0 ELF32 @5 ELF64","0.1.3"],"jsonrpc-core":[C[810],"18.0.0"],"commandext":["A Command ^h suitable @0 $d in @3 Builders",C[0]],"r0":["Initialization @V ('crt0') $A in @3","1.0.0"],"hash-roll":["Rolling hashes & Content Defined Chunking (cdc)",C[1]],"histogram-sampler":["Sampling @t a ^m given by a histogram","0.5.0"],"strum":[C[146],C[74]],"lock-free-stack":["Lock-free (atomic-@n) Collection $i internally represent @w as a Stack, @5 exposes an @m allowing to add elements, get size, @5 remove all giving a reverse-iterator.","0.1.1"],"wasmer-clif-fork-frontend":[C[475],"0.59.0"],"sentencepiece":[C[318],C[7]],"async-codec":["^e @0 $Z @J codecs",C[2]],"cookie_store":["@v of Cookie ^x @5 retrieval",C[23]],"fileinput":["Read input @t &l streams.",C[1]],"parse-display":[C[319],"0.5.3"],"gsuite-api":["A fully ^8 & opinionated @x @c @0 @4 Google Admin @x.",C[8]],"hostname-validator":["Validate hostnames according to IETF RFC 1123","1.1.0"],"lc3-rs":["A LC-3(Little Computer 3) virtual machine","0.6.0"],"distill-importer":["Importer component of @4 asset pipeline `distill`.","0.0.3"],"normalize-line-endings":["Takes an iterator &6 chars @5 returns a new iterator @7 all $D endings (\\r, \\n, or \\r\\n) as \\n",C[1]],"toucHNews":["Hacker News (YCombinator) news feed @0 @4 Mac Touch Bar",C[2]],"dec":["A decimal arithmetic @1 ^R high-@C, $M @6 to libdecnumber.","0.4.5"],"alacritty":["A $I, cross-@N, OpenGL $o emulator","0.9.0"],"gtld-data":["gTLD @w retrieved via @4 IANA, updated daily.","0.4.1"],"cap-time-ext":["Extension $3 @0 `SystemClock` @5 `MonotonicClock`",C[42]],"r2d2_odbc":["ODBC @j @0 @4 r2d2 connection pool","0.5.0"],"docker_compose":[C[796],"0.3.9"],"byte-pool":["Pool of byte slices, @0 ^Z $g usage","0.2.3"],"bitbuf":["An @2 of a bit buffer.","1.0.0"],"tracing-gelf":["A Graylog &g @1.","0.5.1"],"trivial_colours":["Very @d @5 naive colour changing @0 $r $o, but that's exactly what you need sometimes",C[1]],"uhttp_content_$5":["Iterator/slice-@n @i @0 ^s Content-Encoding header","0.5.1"],"glitchcat":["cat-$C ^U @7 glitch animation",C[9]],"combinations":["@Q @8 give you all @4 combinations of ^V in a vec",C[0]],"opener":["Open a $0 or link @u @4 @O default ^U.","0.5.0"],"tokio-udp":["UDP @6 @0 $v.",C[138]],"spake2":["$8 SPAKE2 password-authenticated key-exchange $1.",C[3]],"vtable":[C[732],"0.1.3"],"gobject-2-0-sys":["Import @8 @0 GObject","0.46.4"],"rsdp":["Zero-allocation @1 @0 locating @5 @R @4 RSDP, @4 first ACPI table","2.0.0"],"ya-client":["Yagna REST @x @c @J $W","0.5.2"],"gridsim":["A @1 @0 running simulations on grids","0.6.1"],"opentelemetry-zipkin":["Zipkin exporter @0 OpenTelemetry",C[24]],"rustr":["@3 @5 R $T","0.1.9"],"firebase":["@3 @n @1 @0 ^p @7 Firebase, currently still under heavy &D","0.9.1"],"nu-completion":["Completions @0 nushell","0.39.0"],"lcs-image-diff":["Image diff ^4 @7 LCS $1","0.1.7"],"magic":["High @C @6 @0 @4 `libmagic` C @1","0.13.0-alpha.1"],"relegram":["@h @0 telegram bot ^S",C[49]],"reed-solomon-erasure":["@3 @2 of Reed-Solomon erasure coding","4.0.2"],"twitter-text":["An @2 of twitter-^D in @3.",C[3]],"$v_kcp":["A kcp @2 @0 $v","0.7.1"],"ark-relations":["A @1 @0 rank-one constraint systems",C[1]],"unwrap_to":["A $w @e to unwrap enums.",C[0]],"num256":["@v of 256 bit integers",C[9]],"efivar":["@3 @8 @0 manipulating EFI variables @u @4 OS @m.",C[5]],"bspc":["Alternative bspc @D","0.4.3"],"cqrs-proptest":["Property $S @E @0 cqrs",C[1]],"tinytga":["No-std, low $g footprint TGA image loader","0.4.1"],"sigrok-sys":["@H @0 libsigrok",C[3]],"tetsy-libp2p-remux":["Remux multiplexing @9 @0 ^v","0.30.1"],"accept-encoding":[C[349],C[320]],"arcmutex":["A convenience @1 @0 ^p @7 `Arc>`s",C[3]],"miniz-sys":["@H to @4 miniz.c @1.","0.1.12"],"&J_$g":["A user &E @8 @l allows you to share $g $t processes",C[28]],"machine":["State machine @E",C[1]],"typed-headers":["Typed ^s header @M @5 &9.",C[3]],"librocksdb-sys":[C[321],"6.20.3"],"ink_lang_ir":["@w $k @5 ^3 @0 ink! intermediate representation",C[107]],"pyo3":["@H to Python interpreter","0.14.5"],"relm-test":["Testing @1 @0 relm",C[74]],"stager":["Stage @z @0 packaging.","0.3.4"],"tc_parity_parity":["Testcontainers image @0 @4 parity/parity docker image.","0.5.1"],"pupil":["Arithmetic expression evaluator.","0.1.3"],"cute_custom_default":["&n @e @0 `Default` $y @7 customization","2.1.0"],"gdk-sys":["$L @6 to libgdk-3",C[24]],"fe_session":["@W local session ^x @0 Iron.","0.5.0"],"parallel":["Command-$D CPU load balancer @0 executing jobs in parallel","0.11.3"],"mozjpeg-sys":["$L @6 @0 MozJPEG v4.MozJPEG is automatically built @5 linked statically. Requires nasm @5 a C ^2.","1.0.1"],"parking_lot_@F":["An advanced @x @0 $Z custom synchronization $9.","0.8.5"],"piston-graphics_^S_$4":["A @1 @0 storing ^T @x versions","1.0.0"],"fil_logger":["A &H @1 $2 by Filecoin","0.1.3"],"dasp_interpolate":["An $F @0 audio PCM DSP rate interpolation, including floor, linear @5 sinc.",C[16]],"mod_path":["A work-$G @0 @3 bug #18810.","0.1.6"],"pusher":["$8 @3 @1 @0 &2 @7 @4 Pusher ^s @x.","0.4.3"],"sacn":["@3 sACN @2.","0.4.4"],"sixtyfps-compilerlib":["Internal SixtyFPS ^2 @1","0.1.4"],"cannyls":["Embedded persistent key-&5 ^x optimized @0 &L-$X workload @5 huge-capacity HDD",C[13]],"coreos-installer":["Installer @0 Fedora CoreOS @5 RHEL CoreOS",C[12]],"maddr":["An @2 of @4 multiaddr @G $2 in IPFS","0.3.1"],"cqrs-postgres":["An @2 of cqrs @0 a PostgreSQL $N.","0.3.3"],"alt-stm32f30x-hal":["Alternative HAL impl @0 @4 STM32F30x family of $s","0.41.0"],"rblog":["Blog app","0.102.0"],"tiled-json":["Tiled @i @0 @4 ^k @G","0.1.4"],"phf_@a":["^o to ^n @g in @4 phf @8",C[13]],"aws-arn":["@W @g, builders, @5 other &w to manipulate ^r Amazon Resource Name (ARN) $p",C[3]],"node-bindgen":["&x way to &0 nodejs ^F @u @f","5.0.0"],"rounded-div":["Get rounded result of an integer division",C[4]],"pqcrypto-ntru":["Post-Quantum Key-Encapsulation Mechanism ntru","0.5.6"],"group":[C[479],C[16]],"async-json-rpc":["A minimal $n ^k-RPC @c @1 built on @4 tower @k.",C[1]],"&L_choice":["Chooses samples randomly by their weights/probabilities.",C[9]],"prometheus-parse":["A @d @i @0 @4 Prometheus ^D @G",C[8]],"rusty_v8":[C[322],"0.32.0"],"prometheus-parser":["a @3 @1 @0 @R @5 validating Prometheus query expressions",C[2]],"orbtk-api":["@x @8 @l @s base ^S @5 elements @0 OrbTk $C widgets basis.",C[204]],"rendarray":["An N-dimensional array. NOTE: CRATE NAME CHANGED TO `ndarray`. Having @X name non equal to @8 name ran ^d many quirks of various &1. Changing @4 @X name is easier @0 everyone involved! New name is `ndarray`.","0.2.0-alpha.8"],"triadic-census":["Calculates @4 triadic census @0 directed graphs",C[3]],"ritual_$u":["&O @E @0 ritual @5 ritual_build",C[2]],"whirlpool-asm":["Assembly @2 of Whirlpool ^C @Y","0.6.0"],"mathpack":["General Mathematics @p @0 @3","0.1.8"],"duct":["a @1 @0 running child processes","0.13.5"],"zeroconf":["cross-@N @1 @l wraps ZeroConf/mDNS @T $C Bonjour or Avahi","0.10.2"],"hamt":["Purely functional ^z array mapped tries.",C[3]],"visitor":["A ^G @1 to easily visit elements of a $V @5 perform an action on each one",C[5]],"libnotcurses-sys":["Low-@C @3 @6 @0 @4 notcurses C @1.","2.4.7"],"softposit":["@v of Posit ^M","0.3.9"],"cognitive-qualia":["Basic $h @5 $3 @0 `cognitive`",C[0]],"raui-material":["Material components @1 @0 RAUI","0.38.2"],"libinjection":["@3 @6 @0 libinjection","0.2.4"],"aseprite":["A @8 to load @z @t @4 aseprite sprite editor.","0.1.3"],"vector-map":["VecMap: a Linear Search @7 Map @x","1.0.1"],"d3d11-win":["$L @6 @0 D3D11",C[5]],"borrow-bag":["A $l-$M, heterogeneous $b @7 zero-cost add @5 borrow","1.1.0"],"griddle":["A HashMap variant @l spreads resize load across inserts","0.5.2"],"mpfr-sys":["libmpfr low-@C @6","0.0.8"],"loggerv":["A @d log @2 @l logs to stdout @5 stderr @7 colors","0.7.2"],"sprite-gen":["Procedurally ^n pixel sprites @1",C[3]],"turbosql-impl":["Internal @2 details @0 Turbosql.","0.3.1"],"appscraps_dll_^q":["Allows appscraps_dll funcs to return errors.",C[0]],"m_lexer":["A @d extensible regular expressions @n lexer","0.0.4"],"ip_rfc":["IP address globally routable checking @0 stable @f",C[0]],"microprofile":["microprofile is a &7 @1 @0 profiling @5 optimizing multithreaded programs.",C[5]],"pentacle":["Executes programs as sealed anonymous @z on &j","1.0.0"],"r2d2_mysql":["MySQL @j @0 @4 r2d2 connection pool","21.0.0"],"random-integer":["Generate a &L integer $t two integer ^M (including @4 two integer ^M).","1.2.1"],"tauri-cli":["Command $D @m @0 $K Tauri apps",C[692]],"modio":["@3 @m @0 integrating &Y://mod.io - a modding @x @0 game developers","0.6.2"],"minifier":["Minifier ^4/lib @0 JS/CSS/^k @z","0.0.41"],"flaken":["Configurable bitwidth snowflake id @B, encoder, decoder",C[8]],"coinbase-pro-rs":["Coinbase pro @c @0 @3","0.7.1"],"spdx":["Helper @8 @0 SDPX expressions","0.6.2"],"dht-sensor":["Driver @0 @4 DHT11/DHT22 sensor @n on ^b-hal",C[5]],"minesweeper":["@K minesweeper in @3","1.3.0"],"web30":["Async endian $M web3 @1","0.17.1"],"ryu-js":["Fast floating point to $c conversion, ECMAScript compliant.",C[5]],"$P_sns":["^r ^N @0 @3 - Amazon @K Notification Service @ 2010-03-31",C[27]],"prodash":["A dashboard @0 visualizing progress of $n @5 possibly blocking tasks","16.0.0"],"ckb-chain-spec":["$8 CKB block chain specification",C[302]],"plotters-canvas":["Plotters HTML5 Canvas Backend",C[1]],"$c_^u":[C[50],"0.1.3"],"pp-rs":["Shader preprocessor",C[5]],"checksums":["Tool @0 making/verifying checksums of directory trees","0.9.0"],"bitmex":["@3 @p @0 @4 BitMEX @x (Async)",C[8]],"simulacrum":["Minimal @1 @0 $Z mock objects by hand @u stable @3.","0.3.1"],"badge":["@K badge @B",C[1]],"try_opt":["[deprecated] Like try!, but @0 Option",C[3]],"wagyu-zcash-parameters-6":[C[323],C[3]],"libloadorder-ffi":["A @h @1 ^R a C $L @0 libloadorder.","11.4.1"],"fel-cli":["CLI &1 @0 dealing @7 Allwinner &N in FEL mode, in ^X @3.","0.5.2"],"nue-io":["Binary @w $5 @5 I/O",C[1]],"default-boxed":["Helper $y to help create large struct on heap directly",C[32]],"box2d":["Port of Box2d to @3","0.0.2"],"cargo-llvm-lines":["Count @4 &a of lines of LLVM IR across all instantiations of a ^G @Y.","0.4.12"],"quack":["Duck typing $3",C[0]],"fromxml":["Macro to parse XML @w ^d &o.","1.2.0"],"my_internet_ip":["Retrieve @4 public IP of @4 machine $r app runs on.","0.1.1"],"tc-consensus-slots":[C[324],C[7]],"libp2p-plaintext":[C[412],C[172]],"openvino-sys":["Low-@C @6 @0 OpenVINO ($d @4 `openvino` @8 @0 easier-to-$d @6).",C[9]],"libflate":["A @3 @2 of DEFLATE $1 @5 related formats (ZLIB, GZIP)","1.1.1"],"lyon_path":["Types @5 @E to store, $j @5 iterate &6 2D paths.","0.17.7"],"gate_$j":["Build @E @0 Gate, a specialized 2D game @1","0.6.3"],"tealdeer":["Fetch @5 show tldr help pages @0 many CLI commands. Full featured offline @c @7 caching @j.","1.4.1"],"ffmpeg-screen-recorder":["@Q ^U is a gadget $i helps you $d FFmpeg to record $r screen on &j. $8 video record can be saved as a $0, or be streamed via RTMP @9.","1.0.15"],"zlib-sys":["$L $W to zlib.","0.0.2"],"spiffe":["@3 @c @1 @2 @0 SPIFFE",C[3]],"packed_struct_^H":["@Q @8 implements @4 @V ^1 @0 @4 packed_struct @1.",C[13]],"bytelines":["Read input lines as byte slices @0 high efficiency","2.2.2"],"rasn":["A $M no_std ASN.1 codec @k.","0.4.3"],"flowstdlib":["$8 ^E @1 of @y @0 'flow' programs","0.36.0"],"smt2parser":["&W @i @1 @0 @4 SMT-LIB-2 @G","0.6.1"],"netlink-packet-core":[C[325],"0.2.4"],"refinery-core":[C[326],"0.7.0"],"electron-hardener":["Utility to remove features @t Electron @l modify @I behavior",C[8]],"google-games1":[C[1010],C[85]],"fitsio":["@3 implmentation of astronomy fits $0 ^a",C[43]],"sv-parser-pp":[C[327],C[17]],"liblmdb-sys-m":[C[513],"0.2.3"],"desktop":["Detects @4 target @N @5 it's architecture, vendor @5 desktop ^K","1.0.5"],"mdcat":["cat @0 markdown: Show markdown documents in terminals","0.23.2"],"gantry-protocol":["^c message $9 @0 @4 Gantry @9","0.0.8"],"winapi":[C[328],"0.3.9"],"chrome_&8_messaging":["@v of Chrome's &M Messaging @9",C[3]],"clang-sys":[C[910],"1.2.2"],"tcalc":["A featureful calculator @0 when you want to do math in a $o.","1.7.16"],"dists":["2d ^m @B","0.4.1"],"uuid-b64":["Base64 $5 @0 UUIDs","0.1.1"],"symphonia-bundle-mp3":["Pure @3 MP1, MP2, @5 MP3 demuxer @5 decoder (a part of ^g Symphonia).",C[2]],"smpte2022-1-packet":["&B @0 SMPTE 2022-1 packet header @G","0.5.0"],"cstr-macro":["^o @0 $Z CStrings ^Y allocations",C[0]],"google-dfareporting2d6-cli":[C[968],C[329]],"krpc-rs":["$8 basic @g @0 communicating @7 @4 Kerbal Space Program Remote Procedure Calls mod, implemented in @f","0.3.1"],"pathos":["A natural @x @0 ^a OS-specific user or @O directories, including iOS @5 Android.","0.3.0-pre.4"],"grid_search_cardinal_best":["Search $1 @0 finding @4 shortest path to @4 best cell in a uniform-cost cardinal grid","0.3.1"],"rs-complete":["A @1 @l handles ^D/word completion","1.3.0"],"parity-multihash":[C[330],"0.2.3"],"msgpack-schema-impl":["@v detail of @4 msgpack-schema @8","0.4.1"],"ring-compat":["Compatibility @8 @0 @u RustCrypto's $3 @7 @4 cryptographicalgorithm @T @t *ring*","0.99.0"],"enocean":["EnOcean serial @9 @2.","0.2.58"],"michromer":["@Q is a &7 @1 to @o @7 @4 stockfighter simulation challenges.",C[2]],"lib3h_@9":["^c definition @0 &2 @7 Lib3h.","0.0.42"],"ruspiro-interrupt":["Providing a @d @5 convinient way to implement interrupt handler @0 Raspberry Pi interrupts.","0.4.3"],"twiggy-traits":[C[331],"0.7.0"],"hdk":["$8 Holochain HDK","0.0.112"],"wagyu-monero":["A @1 @0 $E Monero wallets","0.6.3"],"daemonize":["@p to enable $r @V run as a daemon ^I on Unix-$C systems.","0.4.1"],"web3":["Ethereum ^k-RPC @c.",C[26]],"near-crypto":["@Q is an ^J @8 @0 $u ^w @g.",C[0]],"forest_vm":["Forest VM @g","0.3.1"],"nanocurrency-types":["A set of @g @0 @4 Nano cryptocurrency",C[2]],"ec2_instance_metadata":["A @8 @0 fetching ^r EC2 instance metadata.",C[1]],"renderdoc":["RenderDoc $U @6 @0 @3",C[12]],"sled_sync":["testable concurrent $9 @0 @4 sled ^Q @k",C[1]],"tonic-build":["Codegen ^F of `tonic` gRPC @2.","0.6.0"],"keyring":["Cross-@N @1 @0 managing passwords",C[12]],"strong-xml":["Strong typed xml, @n on xmlparser.","0.6.3"],"string-error":["A minimal @f @1 to create errors out of $p.",C[0]],"pqcrypto-traits":["Shared $3 @0 post-quantum ^w $9","0.3.4"],"sixtyfps-corelib":["Internal SixtyFPS @I @1.","0.1.4"],"easy-http-request":["Easy to send ^s/HTTPS requests.","0.2.12"],"linreg":["Calculates linear regresssions of two-dimensional @w. Does not $d stdlib, only depends on numeric $3.",C[3]],"packageurl":["@3 @2 of @4 @X url specification",C[1]],"$V":["Use @G $p to create strongly-typed @w pack/unpack interfaces.",C[4]],"tensor-macros":["A compile $z optimised tensor @1",C[3]],"podio":["Additional $y @0 Read @5 Write to read @5 &0 Plain Old Data",C[3]],"measurements":["Handle metric, imperial, @5 other measurements @7 ease! Types: Length, Temperature, Weight, Volume, Pressure","0.10.3"],"cargo-casper":["A @D $D ^4 @0 $Z a Wasm smart contract @5 tests @0 $d on @4 Casper ^9.","1.4.1"],"extprim_literals_@a":["Internal @8 to @j `extprim_literals`. You typically don't need this @8 directly.","2.0.3"],"substrate-subxt-proc-macro":["&n calls, events, ^x @5 tests @0 &2 Substrate modules @7 substrate-subxt",C[23]],"todo-txt":["&B @0 @4 todo.txt @G","2.1.0"],"virtio-bindings":["@3 $L @6 to virtio ^8 @u bindgen.",C[0]],"ipld_hamt":["Sharded IPLD HashMap @2.","2.0.0"],"modbus-test-server":["Libmodbus @n @U to ^7 @4 @f modbus @X","0.0.4"],"kvdb-rocksdb":["kvdb @2 backed by RocksDB",C[24]],"rusty-tags":["Create ctags/etags @0 a @S ^g @5 all of its &c","3.9.0"],"ws":[C[332],"0.9.1"],"secp256k1-zkp-sys":["$L @0 `libsecp256k1-zkp` @1.",C[2]],"const_env_impl--value":[C[191],C[4]],"lib-ruby-parser":["Ruby @i","3.0.11"],"test-assets":["Download ^7 assets, managing them outside of git",C[3]],"noble-transaction-payment-rpc":[C[333],"2.0.0"],"distill-serde-importable-derive":["Proc @e @0 SerdeImportables in `distill`.","0.0.3"],"streaming_^3":["SIMD-accelerated @T of various streaming ^3, including Count–min sketch, Top k, HyperLogLog, Reservoir sampling.",C[1]],"diesel-geography":["Diesel @j @0 PostGIS geography @g @5 @y",C[3]],"unic-locale":[C[31],"0.9.0"],"unrar_@r":["$L @6 to unrar (@7 minimal abstractions)",C[5]],"gvariant":["A ^X-@f @2 of @4 GVariant serialisation @G",C[2]],"geo-types":["Geospatial primitive @w @g","0.7.2"],"ark-serialize-derive":["A @1 @0 deriving @M $3 @0 @4 arkworks ecosystem",C[1]],"merkle-sha3":["Sha3-Merkle is a fork of merkle.rs, a Merkle ^0 @7 @j @0 ^1 of inclusion proofs, in sha3.",C[0]],"gptman":["A GPT &F @l allows you to copy partitions @t one disk to another",C[7]],"webkit2gtk-webextension-sys":["@3 @6 @0 @4 webkit2gtk-webextension @1","0.9.0"],"itconfig-macro":[C[619],"1.1.1"],"futures-channel":[C[787],"0.3.17"],"adivon":["Data Structures of daily $d: Graph, HashTable, PriorityQueue, Trie, SuffixTree, Rope, SplayTree, SkipList, RedBlackTree.","0.2.6"],"c3p0_pg":[C[334],"0.53.0"],"env_$0":["Reading @z @7 name taken @t ^K variable","0.1.3"],"tokio-test":["Testing @E @0 Tokio- @5 @Z-@n @V","0.4.2"],"$D_drawing":["A $b of $D-drawing ^3 @0 $d in ^T @5 video games.","1.0.0"],"sentry":[C[1081],C[88]],"trilean":["Kleene's three-valued logic (boolean + unknown).","1.1.0"],"rsmt2":["Wrapper @0 SMT-LIB 2 compliant SMT solvers.",C[24]],"wharf":["&b docker ^S @1",C[32]],"tc-finality-grandpa":["Integration of @4 GRANDPA finality gadget ^d tetcore.",C[7]],"siren-types":["Types @0 @4 siren mediatype.",C[8]],"netsim":["Network simulator","0.2.5"],"avow":["A $w @1 primarily @0 ^7 assertions.",C[3]],"rust-cgui":["A low-@C cross-@N GUI @1","0.1.22"],"schuppe":["create a GUI @n on streams","0.0.2"],"language-tags":["&R tags @0 @3",C[9]],"pact_verifier_^y":["Standalone pact verifier @0 provider pact verification",C[640]],"compare":["Experimental comparators @0 &C to be ^G &6",C[0]],"yastl":["Yet another scoped threadpool @1",C[4]],"wdg-converter":["converter",C[2]],"polyline-ffi":["$L @6 @0 @4 polyline @8","0.3.1"],"fstab":["An fstab @i @5 modifier",C[2]],"rlibc":["A bare-metal @1 supplying certain libc @y $C memcpy,memmove, memset @5 memcmp. @Q is designed @0 $d in freestandingenvironments where another libc does not exist, since &K mayimplicitly insert calls to such @y.","1.0.0"],"$P_acm_pca":["^r ^N @0 @3 - ^r Certificate Manager Private Certificate Authority @ 2017-08-22",C[27]],"mp3-duration":["A @1 @0 measuring @4 playback duration of mp3 @z",C[32]],"wasmblock":["Helper @1 @0 wasmblock","0.0.15"],"fontconfig":["Safe, higher-@C @h $G @4 Fontconfig @1",C[5]],"rat":["REST @x ^4 - query various REST APIs comfortably","0.4.12"],"clippy-mini-macro-test":["A @e to ^7 clippy's $e @e checks",C[3]],"multi-producer-sink":["@W handles to sinks, allowing &l different tasks to &0 to @4 same underlying sink.","0.5.2"],"xch":["A CLI $w @5 @f @8 to atomically swap @4 content of two paths.","1.1.0"],"fifo":["First-in-first-out lock-free ring-buffer $C kfifo in &j",C[3]],"gauss-quad":["@p @0 applying Gaussian quadrature to integrate a @Y","0.1.5"],"atsame54p":["Peripheral $X @x @0 ATSAME54P $s (^8 @u svd2rust)",C[16]],"&z_headers":["High $J @i of &z headers. [Under &D]","0.0.2"],"multiqueue2":[C[742],"0.1.7"],"audio-video-metadata":["Audio/Video metadata @i","0.1.7"],"email-parser":["$8 fastest @5 lightest email @R @3 @1. Supports MIME.","0.5.0"],"@O_shutdown":["@3 @1 @0 shut down, reboot or log out $B.","3.0.0"],"solana-failure-program":["Solana failure ^U","1.8.0"],"haversine":["haversine implemented in @f",C[5]],"tetsy-libp2p-ping":[C[873],"0.28.0"],"ucd-parse":["A @1 @0 @R @w @z in @4 &h character ^Q.","0.1.8"],"tinysearch-engine":[C[669],C[8]],"symbolic-symcache":["An optimizied cache $0 @0 $I @5 $g ^Z lookup of symbols andstack frames in debugging $f.","8.3.2"],"tinyosc":["OpenSoundControl @2","0.0.3"],"tower-lsp":["&R Server ^c @2 @n on Tower","0.14.1"],"enum-tryfrom":["Error @g @5 $3 @0 $d @7 enum-tryfrom-@b",C[5]],"juniper_iron":["Iron $T @0 juniper","0.7.4"],"notifica":["Small, cross-@N @3 @8 @0 sending @O notifications","3.0.2"],"structview_@b":["Custom @b @0 structview's View $y.","1.1.0"],"sv-parser-syntaxtree":[C[327],C[17]],"transmission-sys":["@3 @6 @0 @4 Transmission bittorrent @c.",C[9]],"grpc-build":["gPRC compilation made &x",C[8]],"liquid-interpreter":[C[87],C[335]],"profiling-procmacros":[C[336],"1.0.3"],"smartcard":["A PC/SC @h to communicate @7 smartcards.","0.3.4"],"change-detection":["A @1 to ^n change detection instructions during $j $z.","1.2.0"],"gcm":["An @x to talk to GCM (Google Cloud Messaging) in @3",C[3]],"toolshed":["Arena ^l @5 a handful of useful @w $k","0.8.1"],"vcpkg":["A @1 to find &8 &c in a vcpkg ^0 at buildtime in order to be $2 in Cargo $j scripts.","0.2.15"],"jit_@a":["JIT ^o","0.0.9"],"piston2d-graphics":["A @1 @0 2D ^T @l works @7 &l back-ends","0.40.0"],"redis_cluster_@J":["Async redis cluster ^j @0 @3.","0.7.0"],"mles-utils":["Mles-^u @0 Mles @U @5 clients","1.1.6"],"drone-stm32-map-pieces-5":[C[46],C[24]],"io-mux":["Provide &l $0 descriptors $O ^d one in-order pipe, tagged by @4 source of @w (e.g. stdout/stderr)","1.4.0"],"libc-extra":["Additional bits @5 bobs found in libc &4 @l either hasn't been submitted to Rust's official libc @8 yet, or has been rejected or requires too much work to integrate",C[9]],"doh-proxy":["A DNS-&6-HTTPS (DoH) @5 ODoH (Oblivious DoH) proxy","0.9.2"],"evcxr_repl":["A REPL @0 @3",C[28]],"round":["@Q @8 @s @E to round $r floats @7 precision @t 1 to 10.",C[0]],"lifeline":["Lifeline is a &m injection @1 @0 $n message-@n @P.","0.6.1"],"ark-groth16":["An @2 of @4 Groth 2016 zkSNARK proof @O",C[1]],"mediaproxy-common":["&O @z @0 @4 Media Proxy ^g.",C[3]],"pallet-mandate":["A Substrate &v to help &6 modules dispatch root calls","2.0.8"],"rsmq_@J":["Async RSMQ port to @f. RSMQ is a @d redis queue @O @l works in any redis v2.4+. It contains @4 same &P as @4 original one in &Y://github.com/smrchy/rsmq","5.1.2"],"maud-pulldown-cmark":["An adapter $t maud @5 pulldown-cmark","0.5.0"],"url_$6":["Serde @j @0 URL @g",C[3]],"cretonne-frontend":["Cretonne IR &I ^t","0.13.2"],"dpt":["Ethereum's Distributed Peer Table @2 in @3.","0.3.1"],"fluence-fork-libp2p-dns":[C[337],"0.27.1"],"file-rotate":["Log rotation @0 @z",C[2]],"foreach":["ForEach $y @5 for_each! @e allow you to $d iterator inside iteration loop, $i is not posible when @u @0-in loop.",C[1]],"chttp":[C[518],"0.5.5"],"openblas-build":["OpenBLAS $j ^t","0.1.1"],"cargo-sweep":["A ^4 @0 cleaning unused $j @z created by Cargo","0.6.2"],"imghdr":["@p @l determines @4 $l of image contained in a $0 or byte ^L.","0.7.0"],"poston":["Yet another Fluentd logger @0 @3","0.7.2"],"grin_config":["Configuration @0 grin, a @d, private @5 scalable cryptocurrency @2 @n on @4 Mimblewimble chain @G.","5.1.0"],"separator":["Formats ^M ^d $p @7 thousands separators @0 readability.","0.4.1"],"iron-error-router":["Map ^s status codes to handlers @5 middlewares.",C[1]],"escapi":["Extremely @K Capture @x (ESCAPI) - @d webcam @x @0 windows","4.0.0"],"gfx-backend-dx11":["DirectX-11 @x $N @0 gfx-rs","0.9.0"],"cpp_synmap":["Sourcemap @5 full @8 @R @j @0 `cpp_syn`",C[1]],"ssh-keys":["&B of ssh public @5 private keys","0.1.4"],"$6_schema_@b":[C[922],"0.0.1"],"report-test":["A @d @m to get a local SGX attestation (“report”).@Q is useful @0 $S remote attestation.","0.3.1"],"secret_sharing":["Various secret sharing schemes",C[3]],"rust-puppetdb-cli":["PuppetDB CLI ^4 in @f.",C[4]],"sixtyfps":["SixtyFPS @3 @x","0.1.4"],"total-order-multi-map":["A multimap @7 at @4 same $z keeps @4 total insertion ordering of all elements","0.4.6"],"cublas-sys":[C[597],C[0]],"async-fuse":["Helpers @0 fusing $n computations.","0.11.2"],"lazy-static-include":["@Q @8 @s `lazy_static_include_bytes` @5 `lazy_static_include_str` @a to replace `include_bytes` @5 `include_str` @a.","3.1.1"],"async-graphql-derive":["^o @0 @J-graphql","2.10.6"],"xiangyun":["Xiangyun is @4 @8 @0 &L @7 @3","0.2.7"],"dnscache":["@K DNS proxy @7 forced caching",C[9]],"qiniu-multipart":[C[510],"0.17.3"],"multibloom":["A $b of &4 including a &a of different @g of bloom filters. Currently a work in progress",C[3]],"ffsend-api":["A fully featured Firefox Send @x @c.","0.7.3"],"n-tree":[N,"0.0.1"],"vpsearch":["Vantage Point Tree search $1 @0 $I nearest neighbour search in multi-dimensional metric spaces.","2.0.1"],"tls_codec_@b":["&n @a @0 @4 tls_codec $y",C[4]],"scalyc":["Compiler @0 @4 Scaly $m @L","0.0.6"],"prefetch":["prefetch @s a $l-$M @h $G LLVM's prefetch intrinsic",C[3]],"newtype-ops":["Mass-@b many operators @0 newtypes. Wartier than newtype_derive.","0.1.4"],"near-vm-runner-standalone":["A @D $D @h $G `near-vm-runner.`All ^q &y @l can be raised during @4 contract execution are raised by `near-vm-runner`@5 @4 all effects of computing @4 execution result of a smart contract are encapsulated inside `near-vm-runner`.One can $d `near-vm-runner-standalone` to ^7 @4 smart contracts, e.g. @7 $T teststo make sure it has expected behavior once deployed to @4 blockchain.","2.2.0"],"nu-stream":["Nushell ^L","0.39.0"],"ckb-util":["CKB @E @1.",C[302]],"sse-codec":["@J Server-Sent Events @9 encoder/decoder",C[9]],"oci_rs":["@Q @8 @s a @3 @h to @4 Oracle Call Interface (OCI) @1.",C[7]],"drm-rs":["(WIP) libdrm @6 to be able to $d Kernel Mode Setting on &j","0.1.3"],"dbui":["A work in progress","0.0.64"],"cute-dnd-dice":["@K @1 to roll dices","4.0.0"],"nphysics_testbed3d":["Testbed @0 @4 3-dimensional physics $a in @3.",C[13]],"shellharden":["$8 corrective bash syntax highlighter","4.1.2"],"flatc-rust":["FlatBuffers flatc @D as @x",C[3]],"barnacl_@r":[C[338],"0.1.1"],"pnet_base_bandwhich_fork":[C[339],C[88]],"encodings":["A @8 containing $u $5 styles",C[0]],"serde-aux":["A $6 crate's auxiliary @1","3.0.1"],"ed25519-compact":["A &7, self-contained, &s-&E Ed25519 @2",C[38]],"tetcore-tracing":["Instrumentation $9 @5 @a @0 Tetcore.","2.1.2"],"p256":["Pure @3 @2 of @4 NIST P-256 (a.k.a. secp256r1, prime256v1)elliptic curve @7 @j @0 ECDH, ECDSA signing/verification, @5 generalpurpose curve arithmetic","0.9.0"],"chars_input":["chars input",C[8]],"keyutils":["@3 @m to @4 &j keyring.",C[5]],"git-interactive-rebase-tool":["Full feature $o @n sequence editor @0 git interactive rebase.","2.1.0"],"pallet-transaction-payment":["FRAME &v to manage transaction payments","3.0.0"],"trie":["An ordered map @5 set @n on a trie.",C[5]],"portmidi":["High-@C PortMidi @6 @0 @3","0.2.5"],"tracing-stackdriver":["Stackdriver-^i &g Subscriber",C[3]],"google-appengine1_beta5-cli":[C[838],C[340]],"highway":["&M @3 port of Google's HighwayHash, $i makes $d of SIMD instructions @0 a $I @5 strong ^z @Y","0.6.4"],"yaiouom":["Extensible, strongly-typed units of measure, @7 a custom $l @O (@n on F#'s unit of measures) implemented as a linter.","0.1.3"],"ckb-contract-std":["@Q @1 contains serveral modules @l could help you &0 CKB contract @7 @3","0.1.5"],"$P_glacier":["^r ^N @0 @3 - Amazon Glacier @ 2012-06-01",C[27]],"diesel_derives_extra":["^W @b some @d CRUD &P @0 $r Diesel models",C[3]],"enumn":["Convert &a to enum","0.1.3"],"rasn-smi":["Data @g @0 ^a Structure @0 Management Information",C[2]],"ravenlib":["@p @0 raven theme &F","1.2.4"],"retworkx":["A python graph @1 implemented in @3",C[7]],"clanker":["Minimalistic @D prompt @0 fish.","0.7.0"],"slr_@i":["A @d $H @G. @Q @8 contains @4 @i, see @4 slr_config @8 @0 a more user-&E @x.","0.0.20"],"$M_^9_$u":["&O @V @0 safe_vault @5 safe_core","0.7.0"],"bind_match":["Convenience @e similar to `matches!` but binds to variables in @4 pattern @5 returns an `Option` of @4 result.",C[4]],"gzp":["Parallel Compression","0.9.2"],"custom_codes":["@K uniform response @5 ^q codes backed by enums","2.0.4"],"telegram-bot-types":["Useful @g @0 &2 @7 @4 Telegram Bot @x",C[5]],"wait-timeout":["A @8 to wait on a child ^I @7 a timeout specified across Unix andWindows platforms.",C[3]],"ckb-build-info":["CKB @S $j $f.",C[302]],"uhttp_$4":["^s $4 field @i/formatter","0.6.0"],"neon-runtime":["@H to @4 Node.js &8 addon @x, $2 by @4 Neon @2.",C[974]],"mujs":["@f @6 @0 MuJS javascript @1","0.0.3"],"rctree":["A 'DOM-$C' ^0 implemented @u reference counting",C[2]],"tokio-dns-unofficial":["Unofficial ^h to $v to provide $n DNS resolution",C[2]],"orbtk":["$8 Orbital Widget Toolkit",C[204]],"pallet-offences":["FRAME offences &v","3.0.0"],"sapper_tmpl":["Template ^F @0 sapper &e @k.",C[3]],"grpcio-proto":["Public proto @z @0 grpcio.","0.9.0"],"webm-sys-native":[C[411],"0.3.6"],"dummy_xml":["Fast Non-validating XML DOM @i.","0.1.6"],"sn_^S":["Safe @x","0.38.0"],"terraswap":["&O terraswap @g","2.4.0"],"test-to-vec":[C[765],"0.4.3"],"interledger-ccp":[C[341],C[1]],"second_law":["A $Q $T ^7 swiss army knife, ^i @7 Stainless","0.3.1"],"netlink-packet-utils":["@a @5 &w @0 @R netlink &y","0.4.1"],"ra_ap_toolchain":["TBD","0.0.79"],"siphasher":["SipHash-2-4, SipHash-1-3 @5 128-bit variants in ^X @3","0.3.7"],"noted":["@p @0 $Z ELF notes","1.0.0"],"record":["Command-$D @E to record @5 replay input sent to a $o session.","0.2.3"],"kay":["Experimental high-$J actor @O @k @0 @3","0.5.1"],"tetsy-multiaddr":[C[297],"0.11.2"],"bitcoincash":["General purpose @1 @0 @u @5 interoperating @7 Bitcoin Cash @5 other cryptocurrencies.","0.25.2"],"trie-standardmap":["Standard ^7 map @0 profiling tries","0.15.2"],"const-field-offset":["Wrapper $G field-offset @8 @5 const-field-offset-@e","0.1.1"],"embed_plist":["Embed property list @z $C Info.plist directly in $r executable $Q.","1.2.0"],"rocket_^H":["$q @a @0 @4 Rocket &e @k.",C[113]],"secrecy":["Wrapper @g @5 $3 @0 secret ^A $i help ensurethey aren't accidentally copied, logged, or otherwise exposed(as much as possible), @5 also ensure secrets are securely wipedfrom $g when dropped.",C[7]],"ed448-goldilocks":["A ^X-@3 @2 of Ed448 @5 Curve448 @5 Decaf","0.8.2"],"jni":["@3 @6 to @4 JNI",C[95]],"atsamd-hal":["HAL @5 Peripheral $X @x @0 ATSAMD11, ATSAMD21, ATSAMD51, ATSAME51, ATSAME53 @5 ATSAME54 $s",C[15]],"struct2swagger":[C[342],"0.1.6"],"exons":[C[50],"0.1.4"],"sublock":["Variants of RwLock/RefCell @l @j sublocks, opened @0 &3 if @4 main `RwLock` is opened @0 &3, opened @0 $O if @4 main `RwLock` is opened @0 $O.",C[3]],"sanakirja-core":[C[343],"1.2.13"],"numpy":["@3 $W of NumPy C-@x","0.14.1"],"frame-benchmarking-cli":["CLI @0 benchmarking FRAME","3.0.0"],"osm_transit_extractor":["Extract public transport @w @t an OpenStreetMap $0","0.5.0"],"grunt":[C[61],C[62]],"ar":["A @1 @0 $5/^P Unix archive @z.","0.9.0"],"rosrust_^H":["Message ^1 @0 rosrust","0.9.6"],"snarkos-models":["Models @0 a decentralized operating @O","1.1.4"],"elementtree":["Parse an XML $0 ^d Python elementtree $C $V","0.5.0"],"unic-ucd-normal":["UNIC — &h Character Database — Normalization Properties","0.9.0"],"simplereboot":["@K @O reboot @2",C[0]],"qapi-qga":["QEMU Guest Agent @9 @g",C[7]],"base-x":["Encode/decode any base","0.2.8"],"artillery-core":["Fire-forged cluster ^A & Distributed @w @9",C[4]],"serde-diff-derive":["Derives serde_diff::SerdeDiff",C[2]],"serv":["oneshot-style ^s @x &I",C[3]],"rwc":["A wc clone.",C[3]],"config-parser":["A @d @i @0 block @n $H @z",C[4]],"iron-hmac":["HMAC &G @0 @4 Iron ^s @k","0.6.0"],"static-map-macro":["Macro to create a stack-alocated map",C[5]],"google-fitness1":[C[344],C[112]],"teloxide-core":["Core part of @4 `teloxide` @1 - telegram bot @x @c","0.3.4"],"wasi":["Experimental WASI @x @6 @0 @3","0.10.2+wasi-snapshot-preview1"],"fie":["Small @5 cute social media $w.","0.16.3"],"rust-ssvm":["@3-SSVM - a Portable EWASM Engine Binding @3 Interface","0.1.0-rc2"],"in_^L":["$y @O @0 facilitating non-blocking ^L chaining @7 handshaking",C[18]],"x11-input-mirror":["Mirrors X11 (Xserver) input events @t one PC to &l &6 @4 ^9","0.3.6"],"reproto-backend-java":[C[89],"0.3.36"],"chess":["@Q is a $I chess move @B. It has a very good set of documentation, so you should take advantage of @l. It (now) generates all lookup tabels @7 a build.rs $0, $i means @l very little pseudo-legal move ^1 requires branching. There are some convenience @y @l are exposed to, @0 example, find all @4 squares $t two squares. @Q uses a copy-on-make style $V, @5 @4 Board $V is as slimmed down as possible to reduce @4 cost of copying @4 board. There are places to improve perft-^7 $J further, but I instead opt to be more feature-@q to make it useful in real @P. For example, I ^n both a ^z of @4 board @5 a pawn-^z of @4 board @0 $d in evaluation lookup tables (@u Zobrist hashing). There are two ways to ^n moves, one is faster, @4 other has more features @l will be useful if making a chess $a. See @4 documentation @0 more details.","3.2.0"],"stockfighter":["Complete @x @0 StockFighter",C[5]],"signatory-ring":[C[229],"0.99.0"],"wasm-bindgen-test":["Internal $S @8 @0 &s-bindgen","0.3.28"],"postgres-derive":["An ^J @8 $2 by postgres-@g",C[2]],"walmart_partner_^S":["@3 @c @0 Walmart Partner APIs",C[2]],"decibel":["Quick conversion @E @0 decibel ^V",C[4]],"git-req":["Check out merge requests @t $r GitLab/GitHub hosted repos @7 ease!","2.4.0"],"libnv":["Safe @5 rustic @h $G libnv-@r.","0.2.3"],"cargo-inspect":["@Q extends Cargo to allow you to desugar $r @3 @V @5 see what happens behind @4 curtains.","0.10.3"],"heliotrope":["SOLR @c @0 @3 $m @L",C[0]],"libc-strftime":["A @h @1 @0 @4 glibc strftime @Y",C[3]],"goji":["@3 @m @0 Jira","0.2.4"],"$P_iot1click_&N":["^r ^N @0 @3 - ^r IoT 1-Click Devices Service @ 2018-05-14",C[27]],"mohan":["Shared Types & Utils","0.0.53"],"ramp":["A high-$J &l-precision arithmetic @1","0.6.0"],"gcode":["A gcode @i @0 no-std @P.","0.6.1"],"hex-slice":["Extends @4 std::fmt::*Hex $3 to slices","0.1.4"],"wasmer-object":["Wasmer &M Object @B","2.0.0"],"hal":["hal - @4 Bitcoin companion","0.7.2"],"rbx_@g":["Types $2 to represent Roblox ^V","1.3.0"],"peek-poke":["A mechanism @0 serializing @5 deserializing @w ^d/@t byte buffers, @0 $d in WebRender.",C[3]],"fishers_exact":["Fisher's exact statistical ^7.","1.0.1"],"hopper":["an unbounded mpsc @7 bounded $g","0.4.2"],"base-encode":["Encode @5 decode @w to any base.","0.3.1"],"pyo3-build-config":["Build $H @0 @4 PyO3 ecosystem","0.14.5"],"google-logging1_beta3":["A @q @1 to @o @7 &H (@9 v1beta3)","0.1.11+20151007"],"vtkio":["&B @5 writer @0 @4 legacy VTK $0 @G","0.6.3"],"tickrs":["Realtime ticker @w in $r $o 📈","0.14.5"],"cargo-vendor":["A Cargo &i to vendor all crates.io &c onto @4 localfilesystem.","0.1.23"],"symphonia-format-wav":["Pure @3 WAV demuxer (a part of ^g Symphonia).",C[2]],"hg-git-fast-import":["A $w to import single @5 &l Mercurial repositories to Git.","1.3.8"],"alloc-traits":["Traits to replace or supplement @4 alloc ^F in no_std","0.1.1"],"iref":["Internationalized Resource Identifiers (IRIs) @5 References, borrowed @5 owned.","2.0.3"],"vcpkg_^y":["A @D $D $w to investigate $i &4 will befound by @4 vcpkg Cargo $j ^t.","0.2.4"],"analytics":["Segment analytics @c @0 @3 &Y://segment.com/docs/&4/@f",C[3]],"pwgenr":["A untypable password @B",C[2]],"interledger-stream":["Client @5 @U @T of @4 STREAM transport @9",C[2]],"fid":["FID (Fully Indexable Dictionary) @2 @0 @3","0.1.7"],"memorymodule-rs":["@3 @h @0 MemoryModule","0.0.3"],"renderdoc-sys":["Raw $L @6 to @4 RenderDoc @x","0.7.1"],"blob-uuid":["Converts Uuid to a url &E 22 character $c blob",C[2]],"topo":["Tools @0 incrementally computing repeated callgraphs.","0.13.2"],"http-zipkin":["^s header propagation @0 Zipkin trace $f.",C[1]],"rdispatcher":["Dispatcher @0 @3, broadcast @5 subscribe many to many",C[0]],"rmenu":["A rofi @5 dmenu &X menu","0.1.4"],"doryen-rs":["Pure @f OpenGL accelerated roguelike console @x @7 &8/&s @j","1.2.3"],"salsa20":["Salsa20 Stream Cipher","0.9.0"],"sp-npos-elections":["NPoS election $1 $9","3.0.0"],"fbthrift-git":["@Q is a -git @X @0 fbthrift.","0.0.6+c7fcc0e"],"c3p0_$u":[C[334],"0.63.1"],"sic":["Accessible image &u @5 conversion @t @4 $o (@5 a front-end @0 @4 'image' @8).",C[95]],"castaway":["Safe, zero-cost downcasting @0 limited compile-$z specialization.","0.1.1"],"maglev":["Maglev - Google's consistent hashing $1",C[5]],"rlimit":["Resource limits","0.6.2"],"pnet_@r_bandwhich_fork":[C[345],C[88]],"commitlog":["Sequential, disk-backed commit log @1.","0.1.3"],"thrussh-libsodium":["Straightforward @6 to libsodium",C[5]],"ucg":["A $H ^1 grammar.","0.7.2"],"pathfinder_gl":["A @d cross-@N GPU $F @1: OpenGL $N","0.5.0"],"rotor-tools":["Various $w things @0 comfortable $O of $U @5 protocols @u rotor @1",C[9]],"sys-locale":["Small @5 ^O @1 to obtain @4 active @O locale",C[0]],"sanitize-filename":["A @d filename sanitizer, @n on Node's sanitize-filename",C[1]],"gfx_@F":["Core @1 of Gfx-rs","0.9.2"],"piet-direct2d":["Direct2D $N @0 piet 2D ^T $F.",C[346]],"notmuch-sys":["$L @6 @0 notmuch","4.4.2"],"linenoise-sys":[C[416],"1.0.0"],"hexchat-plugin":["Lets you &0 HexChat plugins in @3","0.2.14"],"rspirv":["@3 @1 APIs @0 SPIR-V ^F manipulation","0.10.0+1.5.4"],"protobuf-codegen":["Code @B @0 @f-protobuf.Includes a @1 @5 `protoc-gen-@f` binary.See `protoc-@f` @5 `protobuf-^H-^X` $R.",C[348]],"kelvin-radix":["Radix Tree @w $V",C[16]],"^K":["Helper to deal @7 ^K variables.","0.1.1"],"bottom":["A cross-@N graphical ^I/@O monitor @7 a customizable @m @5 a multitude of features. Supports &j, macOS, @5 ^6.","0.6.4"],"nj-cli":["$j ^4 @0 node-bindgen","0.4.1"],"jit":[C[509],"0.9.1"],"ckb-traits":[C[347],C[302]],"ncmc":["convert encrypted ncm $0 to original music $0.",C[32]],"census-proteomics":["@3 @1 @0 ^p @7 proteomics @w quantified by @4 Census $1","0.3.3"],"text2checkstyle_^y":["^y @0 ^D to checkstyle.","1.1.1"],"protobuf":["@3 @2 of Google @9 buffers",C[348]],"weld":["Weld is a @L @5 @I @0 improving @4 $J of @w-intensive @P.",C[2]],"peakbag":["Full waveform LiDAR &u, including peak detection",C[0]],"fly-accept-encoding":[C[349],"0.2.0-alpha.5"],"orbimage":["Orbital image features","0.1.17"],"finality-grandpa":["PBFT-@n finality gadget @0 blockchains","0.14.4"],"flurry":["@3 port of Java's ConcurrentHashMap","0.3.1"],"next-gen":[C[350],"0.0.10"],"near-bindgen-core":[C[351],"0.6.0"],"viaspf":["@v of @4 Sender Policy Framework (SPF) @9",C[362]],"raqote":["2D ^T @1",C[7]],"cargotest":["placeholder",C[0]],"$P_mock":["^r ^N @0 @3 - Request Mocking Helpers",C[27]],"travelling_salesman":["Travelling Salesman Problem Solvers","1.0.16"],"ticktock":["Best effort constant framerate clock @5 $I timers",C[7]],"n5":["@3 @2 of @4 N5 tensor $0 @O @G","0.7.6"],"rlpx":["RLPx peer-to-peer @9 @2 in @3.","0.4.1"],"filter-logger":["A @d filtering logger $i will filter @n on ^F-path.",C[1]],"cargo-info":["Extends @S to query crates.io registry @0 $R details","0.5.14"],"pxsort":["Sort @4 pixels in an image","0.5.0"],"varint-simd":["SIMD-accelerated varint encoder @5 decoder",C[1]],"rustcastai":["Wrapper $G @4 Recast.AI @x",C[8]],"link-cplusplus":["Link libstdc++ or libc++ automatically or manually","1.0.5"],"aktrs":["An actor model @k @0 @3",C[288]],"elrond-wasm-debug":["Elrond $x smart contract @x debugging mocks @5 ^u","0.21.2"],"ecdh":["For OpenSSL's ECDH","0.0.12"],"@f":["@3 is an iron oxide, usually red oxide formed by @4 redox reaction of ironand oxygen in @4 presence of water or air moisture.","0.0.1"],"subotai":["Kademlia @n DHT","1.0.3"],"duniter-rs-wotb":["Crate making Web of Trust computations @0 @4 Duniter ^g.",C[2]],"fang_oost":["A @1 ^5 Fang @5 Oosterlee's $1 @0 inverting characteristic @y.","0.15.1"],"libaom-sys":["Builds @5 statically links libaom. Part of libavif-@r",C[16]],"fluence-fork-libp2p-tcp":[C[352],"0.27.3"],"omdb":["OMDb @x @0 @3",C[9]],"fil-rustacuda":[C[353],"0.1.3"],"strider":["ringbuffer $B on &l ^V at once @7 an ^Z @2. useful @0 moving a window @7 variable step through a possibly infinite ^L of ^V while avoiding unnecessary $g allocations","0.1.3"],"lustre_collector":["Scrapes Lustre stats @5 aggregates ^d ^k or YAML",C[2]],"hash-rings":["Implementations of various ^z rings.","1.1.0"],"cards":["Reusable playing cards @1 @0 @3.","1.1.2"],"async-semaphore":["An @J semaphore","1.2.0"],"$M_nfs":[C[769],"0.6.1"],"litrs":["Parse @5 inspect @3 literals (i.e. tokens in @4 @3 $m languagerepresenting fixed ^V). Particularly useful @0 ^B @a, but can alsobe $2 outside of a ^B-@e context.","0.2.3"],"rp2040-pac":["A Peripheral Access Crate @0 @4 Raspberry Pi RP2040 SoC","0.1.5"],"ffi-convert":["A $b of @E to ease conversion $t @3 @5 C-^i @w $k.","0.5.0"],"err-context":["Lightweight context layers @0 stdandard @1 errors",C[0]],"tide-tera":["Use tera templates on tide","0.2.4"],"slack":["slack realtime messaging @c: &Y://api.slack.com/bot-users","0.25.0"],"async-oneshot":["A $I, &7, full-featured, @J-aware oneshot channel.","0.5.9"],"ruroonga_@c":["A tiny Groonga ^s @c.","0.5.1"],"temp_testdir":["Little @8 to $d temp directory in @8. You can choseif delete it after $d or not to debugging purpose.","0.2.3"],"approxeq":["A $y @0 approximate equality of @g","0.1.1"],"enclave-interface":["Interface to @o @7 libenclave-@n secure enclaves","0.1.1"],"backlight":["@3 @1 @0 controlling backlight on linux systems via @4 `/@r/class/backlight` @m.","0.1.1"],"generics":["@W @a @0 @R generics (@7 optional where clause) in `macro_rules!`.",C[9]],"tts":["High-@C Text-To-Speech (TTS) @m","0.17.3"],"cfn":["Type-$M representations @0 ^r CloudFormation templates, resources @5 properties","0.0.8"],"taskpool":[N,C[0]],"mage":["An intuitive @5 powerful template $a.",C[3]],"sauron":["A versatile &e @k @5 @1 @0 $K @c-side @5/or @U-side &e @P","0.43.9"],"dia-range":["Ranges @0 all integers",C[13]],"async-graphql-value":["GraphQL &5 @0 @J-graphql","2.10.6"],"rubrail":["Rubrail is a @3 @1 @0 interfacing @7 @4 Mac Touch Bar","0.9.1"],"tendermint-light-client":["@v of @4 Tendermint Light Client Verification ^c.",C[354]],"zydis":["@H @0 Zydis","3.1.1"],"hound":["A wav $5 @5 ^P @1","3.4.0"],"stainless_ffmpeg":["Efficient @3 @h @0 FFmpeg.","0.2.7"],"freetype-src-sys":["@3 $j &w @0 freetype. Licensed as GPL2 or FreeType License","0.1.5"],"shiny-pancake":["A renderer @l takes commands @t ^E input.","1.0.0"],"comment-parser":["Extract comments @t @V in various $m languages",C[0]],"libreal":["Utility @1 @0 programmers ^p in @4 real world, where heap allocation can fail","0.14.1"],"pnet_@a_@j":["Support @1 @0 libpnet_macros","0.28.0"],"debug-builders":["A copy of libstd's debug builders @0 $d before they stabilize",C[0]],"my-pretty-failure":["my-pretty-failure display failure (@5 context) in an elegant way",C[4]],"email_address":["A @3 @8 ^R an @2 of an RFC-compliant `EmailAddress` newtype.",C[3]],"sycamore":[C[355],"0.6.3"],"stakker_tui":["ANSI $o ^a @0 Stakker","0.0.4"],"nodrop-union":["A @h $l to inhibit drop (destructor). @v @8 @0 nodrop, @4 untagged unions @2 ($i is unstable / requires nightly) as of this $O.***Deprecated: Use ManuallyDrop or MaybeUninit instead!***",C[38]],"linxal":["Linear Algebra @X @7 @f-ndarray @m","0.6.0"],"hls_m3u8":["HLS m3u8 @i/@B","0.4.1"],"allegro_image":["Allegro 5 image addon @3 @h","0.0.41"],"rust-latest":["A CLI ^4 to determine @4 latest $4 of @4 @3 toolchain.","1.4.0"],"gimli-hash":["$8 Gimli-permutation @n Hash","0.1.5"],"crevice-derive":["&n @8 @0 @4 'crevice' @8",C[7]],"@f_win32error":["Error $C @h @0 GetLastError @0 ^6",C[7]],"html5ever_@a":["High-$J browser-grade HTML5 @i − ^2 plugins","0.2.7"],"solana-secp256k1-program":["Solana Secp256k1 ^U","1.8.1"],"random-wheel":["A little @2 of &L wheels ($2 in genetic $1 @0 selection)","0.3.1"],"clap_^n":["A @B @1 $2 @7 clap @0 shell completion scripts, manpage, etc.",C[225]],"xmlrpc":["An XML-RPC @2 @0 @3",C[23]],"qt_$j_&1":[C[356],"0.2.4"],"conjure-http":["^s interfaces @0 ^8 Conjure services","0.7.4"],"heatmap":["$z-series of histograms @7 precision guarantees","0.6.6"],"rocket-accept-language":["@Q @8 @s a request guard $2 @0 getting `accept-@L` header.",C[7]],"@d_&V":["A @d @I ^k @i.","0.2.3"],"sp-phragmen":["Phragmen $9",C[427]],"sp-io":[C[724],"3.0.0"],"const-utils":["Utility @y @0 doing @d things in a `const` @Y.","0.1.1"],"ndarray-npy":[".npy @5 .npz $0 @G @j @0 ndarray",C[7]],"quaternion":["A @d @5 $l &f quaternion math @1 designed @0 reexporting","0.4.1"],"cranelift-preopt":["Support @0 optimizations in Cranelift","0.77.0"],"tk-easyloop":["A &d local loop @5 other loop &w","0.1.1"],"sorted-iter":["Typesafe &p @0 sorted iterators, including set @5 relational $B","0.1.7"],"threadgroup":["Manage groups of threads as one unit, join @4 first one @l finishes, timeout on join attempts.",C[0]],"transmute":["Size-heterogeneous transmutation (seriously unsafe!)","0.1.1"],"iso639_2":["iso639_2 enum",C[49]],"pulldown-cmark":["A pull @i @0 CommonMark",C[7]],"snmp-parser":["&B @0 @4 SNMP @9",C[7]],"cuneiform":["Cache optimizations @0 @3, revived @t @4 slabs of Sumer.","0.1.1"],"perlin2d":["Lightning $I 2D Perlin Noise @B","0.2.6"],"levenshtein_automata":["Creates Levenshtein Automata in an ^Z manner.",C[5]],"shallow-tees":["A TeeReader @2 @l implements Seek by tracking @4 max read offset","0.1.1"],"gcollections":["&W $3 &6 @3 &C @1.","1.5.0"],"xmpp-parsers":["Collection of parsers @5 serialisers @0 XMPP &p","0.18.1"],"rs-auto-sync":["auto rsync when @z change","0.1.7"],"crustacean-plugin":["A @3 @6 @B $Y.","0.3.1"],"unicode-reverse":["&h-aware in-place $c reversal","1.0.8"],"sessions-core":["Sessions Core","0.2.3"],"file-locker":[C[371],"1.0.5"],"default-editor":["Get @4 default editor @0 @4 current ^K",C[0]],"cbindgen":["A ^4 @0 $E C @6 to @3 @V.",C[42]],"qt_3d_input":["@H @0 Qt3DInput C++ @1","0.5.0"],"tremor-influx":["Tremor Influx &B",C[1]],"futures-timer":["Timeouts @0 @Z.","3.0.2"],"xlib":["@Q @8 has been deprecated. Use &Y://crates.io/$R/x11 instead.",C[0]],"hibitset":["Hierarchical bit set $V","0.6.3"],"versionisator":["Tool @0 build.rs script to display handy $4 $f","1.1.0"],"android_injected_glue":["Injected glue @0 @4 Android JNI","0.2.3"],"aesti":["Constant/fixed/invariant $z aes implimentation (originally @t &j)",C[1]],"git-journal":["$8 Git Commit Message @5 Changelog Generation Framework","1.8.1"],"nipper":[C[357],"0.1.9"],"jsonrpc_@c":["An @J, @e-driven ^k-RPC @c @7 pluggable backends.","0.7.1"],"slack-hook":[C[358],C[7]],"$N":["A @e @1 @0 $N &f design","0.1.6"],"tk-opc":["Minimal copy @2 @0 OpenPixelControl @7 $v encoder/decoder","0.1.3"],"light-curve-dmdt":["dm-dt maps @B","0.5.0"],"cpp_@F":[C[1050],"0.6.0"],"mkv":["[incomplete yet] Matroska (mkv,webm) @z @i @5 @B implemented in @3","0.0.8"],"nrf52840-pac":["Peripheral Access Crate @0 Nordic's nrf52840 microcontroller",C[12]],"acon":["A &8 @3 ACON encoder @5 decoder. @W FromStr @5 Display @0 deserializationand @M respectively. Comes @7 some @E to make ^p @7 thedata $V easier.","0.5.1"],"async-object-pool":[C[523],"0.1.4"],"newt-sys":["Low-@C @6 @0 @4 Newt console UI @1","0.1.8"],"piston-button_controller":["A Piston @1 @0 ^a button state @5 events",C[15]],"av-scenechange":["Estimates frames in a video where a scenecut would be ideal","0.7.1"],"netlib-blas-provider":["BLAS/LAPACK provider @u @4 Netlib @2","0.0.8"],"mindtree_^u":["Miscellaneous @E @t @4 sleeve of mindtree.",C[2]],"mio-signals":["Crate @0 ^a signals @7 Mio.","0.1.5"],"mdbook-plantuml":["A preprocessor @0 mdbook $i will convert plantuml @V blocks ^d inline SVG diagrams","0.7.0"],"@S_crates-io_docs-rs_^7":["@H to nng (Nanomsg-Next-Generation) aka Nanomsg2","0.5.0"],"byte-slice":["Byte slice manipulation @a","0.1.12"],"tox-node":["A @U $U to run tox node","0.1.1"],"joinery":["A &7 @8 @0 generically joining iterators @7 a separator","2.1.0"],"libpulse-simple-sys":["$L @6 @0 @4 PulseAudio libpulse-@d @O @1.","1.19.1"],"near-runtime-utils":["@Q @8 contains $w @y @0 NEAR @I.",C[359]],"gantryclient":["Gantry (waSCC actor registry) @c",C[0]],"quit":["Exit cleanly @7 an exit @V","1.1.4"],"cryptoki":["@3-&8 @h $G @4 PKCS #11 @x",C[3]],"webm":["@3 idiomatic @h to libwebm","1.0.2"],"nus3audio":["A @1 @0 ^p @7 namco nus3audio audio archives.","1.1.0"],"blz-nx":["@8 ^a BLZ ^C @0 @4 Nintendo Switch","1.0.1"],"iron-test":["Mocking suite @0 Iron requests.","0.6.0"],"rust-GSL":[C[190],"0.4.10"],"tetsy-libp2p-dns":[C[337],"0.27.2"],"xml_writer":["writes xml, not pretty, but faaast",C[2]],"bevy_gltf":["Bevy Engine GLTF loading","0.5.0"],"chumsky":["A &E @i combinator @8","0.5.1-alpha"],"evmap-derive":["&n @e @0 evmap::ShallowCopy",C[3]],"aquamarine":["A mermaid.js $T @0 rustdoc",C[32]],"emu-audio":["Standalone audio @X @0 @4 emu ^g.",C[4]],"wasmer-clif-backend":[C[360],"0.17.1"],"pcap_on_demand":["A packet capture @x $G pcap/wpcap @l loads pcap/wpcap on demand","0.1.3"],"cjk":["Answer Boolean Questions @5 Queries about CJK @5 related character sets","0.2.4"],"fluence-fork-libp2p-identify":[C[719],"0.28.1"],"sdl2_mixer":["SDL2_mixer @6 @0 @3","0.25.0"],"wyrm":["A low-overhead, define-by-run autodifferentiation @1.","0.9.1"],"spongedown":["Converts markdown to html @7 svgbob @j",C[48]],"cargo-incremental":["A ^4 @0 @u @5 $S rustc's incremental compilation @j","0.1.23"],"keycloak":["Keycloak Admin REST @x.","14.0.0"],"sam":["A compile $z instruction assembler.","1.0.0"],"rdxl_scaffolding":["Rdxl Prefabricated HTML Components","0.1.1"],"fixed-hash":["^o to define custom fixed-size ^z @g","0.7.0"],"generational-arena":["A $M arena ^l @l supports deletion ^Y suffering @t @4 ABA problem by @u generational indices.","0.2.8"],"shamir":["Shamir is a ^X @3 @2 of Shamir's secret sharing","2.0.0"],"git-brws":["Command $D ^4 to open a repository, $0, commit, diff, tag, pull request, issue or project's website in $r &e browser @t @D $D","0.11.12"],"acc_reader":["A @h @0 std::io::Read ^R std::io::Seek","2.0.0"],"git-diff":["Calculate differences $t various git objects",C[16]],"protoc-rust-grpc":["protoc --@f-grpc_out=... available as @x. protoc needs to be in $PATH, protoc-gen-@f-grpc does not.","0.8.3"],"ev3dev-lang-rust":["@3 @L @6 @0 ev3dev","0.10.2"],"siphash":["A $I @2 of @4 SipHash hashing $1 @7 no &m on libstd.","0.0.5"],"mat4":["matrix 4x4",C[5]],"permutohedron":["Generate permutations of sequences. Either lexicographical order permutations, or a minimal swaps permutation sequence implemented @u Heap's $1.","0.2.4"],"airtable-api":["An @x @c @0 Airtable","0.1.34"],"fluvio-helm":["Helm @h","0.4.3"],"ironoxide":["A ^X-@3 ^N @0 accessing IronCore's privacy @N","0.26.0"],"sc-transaction-pool":["Substrate transaction pool @2.","3.0.0"],"core-video-sys":["@H to CoreVideo.framework @0 macOS @5 iOS","0.1.4"],"keen":["keen.io ^S v3.0 @0 @f","1.4.1"],"struct-diff":["Trait @0 @g @l are diffable","0.2.3"],"fluence-fork-libp2p-pnet":[C[466],"0.20.2"],"noble-contracts-rpc-runtime-api":[C[455],C[7]],"steamy-controller":["@p to @o @7 @4 Steam controller.",C[5]],"ethereum-bloom":[C[1006],C[5]],"mailchimp-api":["An @x @c @0 MailChimp","0.1.15"],"solana-clap-utils":["Solana @E @0 @4 clap","1.8.1"],"lapin-futures-rustls":["Integration of rustls @7 lapin-@Z","0.21.1"],"spm_precompiled":["@Q @8 aims to emulate &Y://github.com/@A/sentencepiece Dart::DoubleArraystruct @5 it's Normalizer. @Q @8 is highly specialized @5 not intended @0 general $d.","0.1.3"],"tracing-opentelemetry":["OpenTelemetry $T @0 &g",C[72]],"regex_dfa":["A @8 @0 turning regexes ^d DFAs.","0.5.0"],"include-flate":["A variant of include_bytes!/include_str! @7 compile-$z deflation @5 @I lazy inflation","0.1.3"],"genfs":["&W $3, &o @5 enums @0 ^5 filesystems in no_stdenvironments.","0.1.4"],"hyper10":["Enables depending on hyper 0.10 @5 other hyper versions in @4 same @8.",C[0]],"battop":["Interactive batteries viewer","0.2.4"],"mimallocator":["A @3 ^l backed by mimalloc","0.1.3"],"metered-macro":[C[804],C[7]],"xsettings":["@3 @6 to @4 XSETTINGS @c @1",C[3]],"blob":["Blob @M/&9 @E",C[1]],"brainfuck_@a":["A ^2 $Y @l converts brainfuck @V ^d @3 at compiletime, letting $r BF programs be optimised by LLVM to super-fastnative @V.","0.1.5"],"nzscq":["Core logic @0 NZSCQ.",C[13]],"gong":["A ^O, flexible @5 @d-to-$d @D $D argument processor.","1.4.2"],"tuple":["Element-wise $B on tuples","0.5.1"],"toml-query":["@p to work @7 toml::Value objects more conveniently",C[13]],"cargo-instruments":["Profile $Q targets on macOS @u Xcode Instruments.","0.4.4"],"amethyst_assets":["&b asset ^A @0 games.",C[99]],"v_eval":["Expression evaluator @7 context","0.6.0"],"ckb-stop-handler":[C[205],C[302]],"tetsy-libp2p-tcp":[C[352],"0.27.2"],"simon":["@p @0 declaratively specifying @5 @R @D $D arguments",C[2]],"smallvec":["'Small vector' optimization: store up to a &7 &a of items on @4 stack","1.7.0"],"amino":[C[50],"0.1.6"],"measureme":["Support @8 @0 rustc's self-profiling feature","10.0.0"],"mathru":["Mathematics @1 $A in @3",C[12]],"display_^u":["Lightweight @5 no_std-^i $c formatting @E",C[2]],"nu_$Y_str":["A $c manipulation $Y @0 Nushell",C[24]],"structopt-toml-derive":["A @b @8 of structopt-toml","0.5.0"],"heim-disk":["Cross-@N disk $f",C[59]],"unsegen":["Another tui @1",C[1]],"rouste":["&W @5 declarative URI @n router $A @7 insane @3 @a.",C[5]],"trackable":["@Q @1 @s a way to track objects manually as an alternative to mechanisms $C backtracing","1.2.0"],"ioctls":["IO Control @0 POSIX-@5-beyond systems (numerous ioctl specifications, see `ioctl-@r` @0 @F @y & @a)","0.6.1"],"rss":["@p @0 serializing @4 RSS &e content syndication @G","2.0.0"],"inohashmap":["$I @5 ^Z insert only $c hashmap",C[1]],"econf":[C[361],C[4]],"sh-inline":["^o to run inline shell (bash) script",C[0]],"drone-stm32-map-pieces-7":[C[46],C[24]],"&V_diff":["A &7 diff ^4 $w @0 comparing jsons",C[4]],"@J_once":["@J once ^4 @0 lazy_static",C[5]],"amq-protocol":["AMQP specifications",C[304]],"tauri-bundler":["Wrap @f executables in OS-specific app bundles @0 Tauri",C[96]],"untagged-option":["An unsafe Option $l ^Y discriminant. Nightly only.",C[3]],"rusty-yaml":["A @f @1 to parse yaml @z","0.4.3"],"fastobo-syntax":["PEG Syntax @5 pest @i @0 @4 OBO flat $0 @G 1.4","0.6.2"],"gm-types":["Types @0 @4 glitch-in-@4-matrix @8.","0.4.0-pre"],"tabled_@b":["&n @a $i is $2 by tabled @8","0.1.8"],"cargo-local-registry":["A Cargo &i @0 managing local registries.",C[5]],"orml-traits":["Shared $3 including `BasicCurrency`, `MultiCurrency`, `Auction` @5 more.",C[2]],"sc2":["@3 @2 of @4 StarCraft II Client @x",C[362]],"memadvise":["Advises operating @O about $g usage",C[4]],"gstreamer-app-sys":["$L @6 to libgstapp-1.0",C[26]],"alto":["Idiomatic @m @0 OpenAL 1.1 @5 &p (including EFX)","3.0.4"],"lc3-macros":["Helper ^B-@a.",C[440]],"pallet-offences-benchmarking":["FRAME offences &v benchmarking","3.0.0"],"criner-waste-report":["Determine include directives @0 Cargo.toml @z to slim down a @8","0.1.4"],"snarkvm-objects":["Objects @0 a decentralized virtual machine",C[2]],"primordial":["Low-@C CPU $9",C[1]],"int-enum-impl":[C[363],C[2]],"command-group":["Extension to Command to spawn in a ^I group","1.0.8"],"timetrack":["^W track how you are spending $r $z by watching @4 $0 @O",C[9]],"abc-parser":["An ABC music notation @i. Turns ABC ^D ^d @3 @w $k @5 back.",C[1]],"kubectl-view-allocations":["kubectl $Y to list allocations (cpu, $g, gpu,... X utilization, requested, limit, allocatable,...)","0.14.6"],"fst-levenshtein":["&T. Use 'fst' @8 @7 'levenshtein' feature instead.",C[1]],"narcissus":["A Vector Similarity @1",C[1]],"rbpf":[C[465],C[0]],"etag":["@K ETag calculation @2","3.0.0"],"dconf_rs":["A @3 @x @0 &2 @7 dconf.",C[1]],"hole-punch":["A WIP cross @N @1 @0 extracting $f about holes in sparse @z.","0.0.3"],"exonum_libsodium-sys":[C[338],"0.0.23"],"avm1-tree":["Abstract Syntax Tree (AST) @0 AVM1",C[7]],"maybe_utf8":["Byte container optionally encoded as UTF-8","0.2.3"],"keyframe":["A @d @1 @0 animation in @3","1.0.4"],"dict_@b":["&n @a @0 some PyO3 $3 to convert python dicts ^d @f &o",C[2]],"$c_cache_&J":["Code share $t string_cache @5 string_cache_codegen.",C[1]],"cognitive-inputs":["Input related $7 @0 `cognitive`",C[0]],"abnf-core":["A nom-@n @i @0 ABNF @F rules.","0.5.0"],"cmail":["Send email @7 @4 &Z of long running commands.",C[1]],"simple-process-stats":["Get $g usage @5 CPU $z on &j @5 ^6","1.0.0"],"ruyi":["An event-driven @k @0 non-blocking, $n I/O in @3","0.1.6"],"rs-release":["os-release @i","0.1.7"],"guid-parser":["Chomp @i @0 ^6 GUID literals.",C[0]],"mopa":["My Own Personal Any: get $r own Any @7 additional $7",C[8]],"utf8-cstr":["Type &r promising null termination @5 utf-8 validity. $8 intersection of `std::ffi::CStr` @5 `str`","0.1.6"],"cluuname":["@p @0 displaying $f about @4 @O","0.1.9"],"happv":["A minimal AppVeyor @x @1 in @3",C[4]],"signifix":["Number Formatter of Fixed Significance @7 Metric or Binary Prefix",C[12]],"relm-attributes":["Attributes to simplify @4 $d of @4 relm @8",C[72]],"tc_dynamodb_local":["Testcontainers image @0 local dynamodb",C[5]],"pax":["$8 fastest JavaScript bundler in @4 galaxy.",C[2]],"specs_scene_graph":["scene graph @0 specs",C[1]],"ustr":["Fast, $L-&E $c interning.","0.8.1"],"join":["^o $i provide useful shortcut combinators, combine sync/@J chains, @j single @5 multi &d (sync/@J) step by step execution of branches, transform tuple of results in result of tuple.",C[1]],"simplerand":["@K @5 $I &L &a @B","1.3.0"],"oozz":["A CLI ^U @l takes input @5 renders it in an ANSI art font, @5 adds some colored oozz.","0.4.1"],"ic-utils":["Collection of @E @0 @3, on top of ic-agent, to communicate @7 @4 Internet Computer, following @4 Public Specification.","0.7.0"],"randomorg":["A random.org @c @1. $8 randomness comes @t atmospheric noise, $i @0 many purposes is better than @4 pseudo-&L &a ^3 typically $2 in computer programs.","1.0.4"],"optimization_$a":["A ^X @3 @k @0 ^b nonconvex optimization. Ideal @0 robotics!","0.7.1"],"dirty":["Holds a &5 @7 a dirty flag $i is set on writes @5 cleared on clear()",C[3]],"tokio-yamux":["@3 @2 of Yamux",C[1]],"cpio":["An @x @0 $Z CPIO archives",C[3]],"rodio":["Audio playback @1",C[24]],"&H_timer_^B_@a":["Proc-@e @2 @0 @4 logging_timer @8","1.0.0"],"b64":["Base64 $5/^P @j. Originally @t &K-serialize.",C[2]],"ledb":["Lightweight ^b ^Q built &6 LMDB",C[2]],"juniper_graphql_ws":["GraphQL &6 WebSocket @9 @2 @0 Juniper",C[1]],"maidsafe_@c":["Maidsafe Client @x @1",C[4]],"debouncr":["A @d no-std input debouncer to detect rising @5 falling edges @7 minimal RAM requirements.",C[8]],"coco":["Concurrent &C","0.3.4"],"mit-commit-message-lints":["Check @4 correctness of a specific commit message. Designed to be $2 in &1 ^R commit-msg style hooks","5.11.6"],"lz4-compress":["Pure @3 @2 of raw LZ4 ^C/decompression.","0.1.1"],"euclid_@a":["Euclid @2 detail",C[0]],"$P_machinelearning":["^r ^N @0 @3 - Amazon Machine Learning @ 2014-12-12",C[27]],"syntex_pos":[C[545],"0.59.1"],"authenticator":["@p @0 &2 @7 CTAP1/2 security keys @0 Web Authentication. Used by Firefox.","0.3.1"],"bandit":["Bandit Algorithms in @3","0.12.3"],"func_wrap":["Helper @8 @0 $e @e authors @l wish to duplicate some received @Y inside its body, so as to be able to wrap @7 some prologue, epilogue, cache-ing, etc.","0.1.3"],"protobuf-convert":["^o @0 convenient @M of @3 @w $k ^d/@t ^c Buffers",C[2]],"pinyin":["Convert Chinese to pinyin",C[7]],"fuse_mt":["A higher-@C FUSE filesystem @1 @7 multi-threading @5 inode->path translation.","0.5.1"],"crypto-ws-client":["A versatile websocket @c @l supports many cryptocurrency exchanges.","3.1.0"],"libflo_func":["A @1 @0 loading modules ^d libflo.",C[4]],"xtensa-lx":["Low @C $X @0 xtensa lx processors @5 peripherals",C[2]],"vrp-core":["A @F ^3 to solve a Vehicle Routing Problem","1.11.5"],"oncemutex":["A mutex ^R one-$z synchronized $X, then $M unsynchronized $X.","0.1.1"],"shadowsocks-crypto":["Shadowsocks Crypto","0.2.4"],"gflags-impl":["^o @0 gflags @8","0.3.8"],"supports-unicode":["Detects whether a $o supports unicode.","1.0.2"],"vte-sys":["$L @6 @0 vte3",C[8]],"memory-module-sys":["@H to @4 MemoryModule @1 @0 loading &4 @t $g on ^6",C[1]],"openh264-sys2":["Low-@C @6 @0 OpenH264.","0.2.5"],"yrs":["High $J @2 of @4 Yjs CRDT",C[0]],"$v_$M_block_on":["@W @4 ability to execute @J @V @t a sync context, ^Y blocking a $v @F &d or busy looping @4 cpu.",C[3]],"hyperbase":[C[50],"0.1.5"],"evalrs":["@3 @V snippet evaluator","0.0.12"],"oniguruma":["@3 @6 @0 @4 Oniguruma regular expressions @1.","0.3.1"],"bevy_property":["Dynamically @o @7 struct fields @u their names",C[1]],"lasy":["A &7 @1 dedicated to LASER path optimisation.","0.4.1"],"@S_toml":["`Cargo.toml` struct $h @0 @R @7 Serde",C[12]],"bech32-no_std":[C[992],"0.7.3"],"pretty-hex":[C[565],C[5]],"sbitty":["@1 defining bitwise $B on ^E integers $l","1.1.1"],"probes":["@p to read out @O stats @t a machine running Unix","0.4.1"],"array":["Convenience &P @0 ^p @7 arrays.","0.0.1"],"mmap-storage":["Memory map backed ^x",C[13]],"korat":["Convenience &P @0 @4 conversion of $P &U ^V to concrete @g @0 dynamodb",C[3]],"serde-json-wasm":["serde_json @0 Wasm programs (&7, deterministic, no floats)","0.3.1"],"num_enum_@b":["Internal @2 details @0 ::num_enum ($q @a to make inter-operation $t $9 @5 enums easier)","0.5.4"],"libpng-sys":["Unreliable @6 @0 libpng 1.6. They're likely to bring sorrow @5 regret. Please $d a &8 @3 PNG @1 instead (e.g. LodePNG 2.0)","1.1.8"],"dyn-context":["Non-owning &t provider pattern @2.","0.10.8"],"callback":["A @1 @0 ^a callbacks in $x","0.5.3"],"control-code":["Control @V @i @5 formatter.","0.7.1"],"pnet_datalink":[C[364],"0.28.0"],"letsencrypt-rs":["&T! @Q @8 is merged @7 acme-@c.",C[1]],"cargo-rin":[C[1035],"0.1.33"],"wasmer-engine-near":[C[365],"2.0.1"],"pathfinder_geometry":["Basic SIMD-accelerated geometry/linear algebra","0.5.1"],"ohmers":["A @1 @0 retrieving @5 storing objects in a Redis @U","0.1.1"],"enso-logger":["An ^Z logger @0 $O @P in @3.","0.3.1"],"fselect":["Find @z @7 SQL-$C queries","0.7.7"],"proc-macro-nested":["Support @0 nested ^B-@e-hack invocations","0.1.7"],"fiz-math":["Game & ^T math in two @5 three dimensions.","0.0.14"],"pane":["Align ^D inside of resizable rectangular panes",C[2]],"td-client":["@3 Client @p @0 Treasure Data","0.9.0"],"dockertest":["A @1 to control docker containers when running $r $T tests.",C[5]],"$P_emr":["^r ^N @0 @3 - Amazon Elastic MapReduce @ 2009-03-31",C[27]],"noble-sudo":["FABRIC noble @0 sudo","2.0.0"],"dockerfile":["A @3 @1 @0 dynamically $E Dockerfiles.",C[5]],"proctitle":["A $M @m to setting ^I titles","0.1.1"],"rustc-ap-rustc_lexer":["^W published $4 of @4 @X `rustc_lexer` in @4 @f-lang/@f repository @t commit 9a27044f42ace9eb652781b53f598e25d4e7e918 $8 publishing script @0 this @8 lives at: &Y://github.com/alexcrichton/&K-auto-publish",C[215]],"hacl-star-sys":["HACL* $L",C[0]],"includedir":["Include a whole directory ^0 at compile $z! - Runtime part","0.6.0"],"guess_host_triple":["Guess $i @3-supported @N is running @4 current @V","0.1.3"],"xenevtchn-sys":[C[585],C[4]],"skylane":["Wayland @9 @2",C[4]],"sun-times":["Calculate sunset @5 sunrise times at given latitude @5 longitude",C[4]],"loge":["A analysis &E logger @7 formatted &Z.","0.4.2"],"std-logger":["A &H @2 @0 @4 log @8 @l logs &y to ^E errorand requests to ^E out. It uses @4 logfmt ^E(&Y://www.brandur.org/logfmt) as @G.","0.4.1"],"simple-matrix":["A @d ^G matrix @1",C[4]],"skia-bindings":["Skia @H @0 @3","0.43.0"],"redis-cli":[C[366],"0.3.1"],"xc2bit":["A @1 @0 ^p @7 Xilinx Coolrunner-II bitstreams","0.0.4"],"sp-tasks":[C[367],"3.0.0"],"bs58":["Another Base58 codec @2.",C[2]],"buffer":["Safe, &0-only, generics-free buffer $F","0.1.9"],"xmath":["@3 port of Microsoft DirectXMath","0.2.8"],"rle-decode-fast":["THE fastest way to implement any kind of ^P @0 Run Length Encoded @w in Rust.Writing a $I decoder @l is also $M can be quite challenging, so this @8 is here to save you thehassle of maintaining @5 $S $r own @2.","1.0.1"],"$6_tuple_@a":[C[779],"0.5.0"],"rhusics-core":[C[528],"0.7.0"],"camera_capture":["capture webcam images on linux @5 windows","0.5.0"],"wemo":["A @1 @0 &2 @7 Belkin WeMo home automation &N.","0.0.12"],"aren_alloc":["@K ^l @0 &7 copyable objects &X by object-pools.",C[1]],"signature_@b":["Custom @b @j @0 @4 'signature' @8",C[368]],"immutable-map":["An immutable ordered map @5 set @n on weight-balanced ^0.",C[4]],"bacon_rajan_cc":["A reference counted $l @7 cycle $b.",C[9]],"newsblur_^S":["@f @2 of @4 NewsBlur-@x",C[4]],"bender":["A &m ^A ^4 @0 hardware projects.",C[74]],"nom-derive-impl":[C[1028],C[13]],"nibble_vec":["Vector @w-$V @0 half-byte ^V.",C[0]],"shell_^t":["Very @d ^t @y to make $K linux scripts in @f easier","0.2.12"],"quake3-qvm":["@p to handle Quake 3 virtual machines","0.6.0"],"menu":["A @d #[no_std] @D $D @m.",C[9]],"protoc":["Protobuf protoc @D as @x",C[348]],"form-data":["AsyncRead/AsyncWrite/Stream `multipart/form-@w`","0.2.6"],"frugalos_raft":["An @2 of @4 `raftlog::Io` $y @0 `frugalos`","1.2.0"],"gdkx11-sys":["$L $W @0 libgdkx11",C[24]],"weblog":[C[449],C[450]],"jsonwebtokens-cognito":["Decodes @5 verifies Json Web Tokens issued by ^r Cognito",C[206]],"bitflags":[C[447],"1.3.2"],"rquery":["A @d @2 of a HTML/XML DOM ^0 $i allows @d $B $C querying by CSS selectors, makes dealing @7 XML @z less painful.","0.4.1"],"either_n":["An Either enum @7 N variants",C[3]],"geeny-api":["Crate @0 consuming @4 Geeny APIs as a @c",C[1]],"osqp-sys":["$L @6 to @4 OSQP (Operator Splitting Quadratic Program) solver.","0.6.2"],"pty-shell":["Spawn a shell @5 control it through pty",C[3]],"sapper":["A &e @k designed @0 &x $d.",C[3]],"dag-cbor":[C[884],C[0]],"rcalc":["Glorified calculator @7 a lexer, @i, @5 interpreter $A in @3.",C[4]],"firestorm-enabled":["A &m of firestorm. Do not $d directly.","0.5.0"],"exoquant":["Very high quality image quantization",C[3]],"object-pool":["A &d-$M object pool @7 automatic return @5 attach/detach semantics","0.5.4"],"tls-api-test":[C[369],"0.7.0"],"twilio":["@3 @6 @0 @4 Twilio @x","1.0.0"],"mpu9250-i2c":["MPU9250 i2c ^j @0 ^b &N","0.6.8"],"libgcrypt-sys":["Raw @6 @0 libgcrypt","0.7.0"],"$6_traitobject":["Serializable @5 deserializable $y objects.This @1 enables @4 @M @5 &9 of $y objects such @l they can be sent $t other processes running @4 same $Q.","0.2.7"],"google-cloudfunctions1":[C[370],C[85]],"solana-faucet":["Solana Faucet","1.8.1"],"ucd":["Extends @4 char $l to provide $X to most fields of @4 UCD, UnicodeCharacter Database, as of $4 9.0.0. It aims to be compact, $I, @5 useminimal &c (only rust's @F @8). Not all properties are included,most notably character names.","0.1.1"],"ssri":["Various @E @0 ^a Subresource Integrity.","7.0.0"],"libsodium-sys":[C[338],"0.2.7"],"imgur":["Interface to @4 imgur @x.","0.7.0"],"codepage-437":["Codepage 437 transcoding @0 @3",C[0]],"bytes-utils":["Additional @E @0 ^p @7 @4 bytes @8","0.1.1"],"stack_dst":["A @h @l allows ^x of unsized ^V of up to a fixed size inline (^Y boxing)","0.6.1"],"systemd-sys":["Generated libsystemd $L declarations",C[0]],"iter-read":["A Read @2 @0 iterators &6 u8 @5 related @g",C[1]],"target-cpu-fetch":["Exposes a method @0 querying @4 CPU name @t @4 current target specification ^k $0","0.1.3"],"file-lock":[C[371],"1.1.20"],"slog-scope":["Logging scopes @0 slog-rs","4.4.0"],"mozjpeg":["Higher-@C @h @0 Mozilla's JPEG @1","0.9.1"],"wedpr_l_^u":["@p of WeDPR &J @E.","1.1.0"],"signal-notify":["Catch OS signals @7 ^E mpsc channel","0.1.3"],"^f_libra_canonical_@M":["Libra canonical @M",C[10]],"lmdb-rkv-sys":[C[372],C[16]],"selene":["A blazing-$I modern Lua linter $A in @3",C[24]],"ufmt":["A (6-40x) smaller, (2-9x) faster @5 panic-free alternative to `@F::fmt`",C[0]],"google-groupsmigration1":[C[551],C[590]],"pwasm-utils-cli":[C[927],C[23]],"teatime":["Default $y @T @5 @w @g @0 ^5 ^s @x clients","0.4.3"],"iset":["@Q $R implements map @5 set @7 interval keys.","0.0.5"],"af_packet":["AF_PACKET @6 @0 @3, primarily to be $2 @0 high-$J ^9 security @P.","0.3.1"],"fluence-fork-libp2p-floodsub":[C[888],"0.28.1"],"chromaprint":["@H to Chromaprint",C[4]],"ethereum-json-rpc":[C[377],"1.3.12"],"bootimage":["Tool to create a bootable OS image @t a kernel $Q.","0.10.3"],"loan_ec":["A @1 @0 ^R loan @C EC measures.",C[5]],"fcm":["An @x to talk to FCM (Firebase Cloud Messaging) in @3","0.9.1"],"conrod":["&T. See `conrod-@F`.","0.62.1"],"asciimath":["Mathematical expression @i @5 evaluator","0.8.8"],"al-sys":["Raw @6 @0 OpenAL 1.1","0.6.1"],"nss-sys":["Low-@C/unsafe @6 @0 @4 NSS cryptography @1","0.1.9"],"domo_pitchfork":["Domo @x Sdk","1.5.0-alpha.1"],"funty":["Trait generalization &6 @4 primitive @g","1.2.0"],"takeable-option":["A &7 @h $G option.","0.5.0"],"blake2-rfc_bellman_edition":["A ^X @3 @2 of BLAKE2 @n on RFC 7693. Forked @0 publishing purposes.","0.0.1"],"crossbeam-sync":["Reserved @8 name @0 synchronization @E","0.0.0"],"panini_@a_snapshot":["A @i @B. @Q @X is a snapshot in @4 form of two expandedsyntax &p.","0.0.0"],"dbc":["@K design by contract assertions","0.3.3"],"mime-sniffer":["Detecting mime @g base on content sniffer.",C[4]],"exocore-core":["Core of Exocore (Distributed @P @k)","0.1.15"],"warheadhateus":["^r Authorization Header Generation (^r Signature Version 4)",C[5]],"pyo3-log":["Logging bridge @t pyo3 &8 ^h to python","0.4.1"],"postal":["$L @6 @5 $M @m to libpostal","0.2.4"],"dot_vox":["A @3 @1 @0 loading MagicaVoxel .vox @z.","4.1.0"],"rna-algos":["@p of Algorithms about RNAs","0.1.27"],"dyon":["A rusty dynamically typed scripting @L","0.46.0"],"svd_^H":[C[373],C[2]],"pwat":["$8 bank asks you @0 @4 Lth, Mth @5 Nth letters of $r password? Use pwat.","0.1.1"],"ndsparse":["Sparse $k @0 N-dimensions","0.8.1"],"piston2d-touch_visualizer":["A @1 @0 visualizing input touches @7 Piston-Graphics",C[53]],"awak":["A &7 @J @I @0 @3","0.2.13"],"passkit":["Apple PassKit @1 to manage passes","0.0.6"],"hash40":["@p @0 ^p @7 Hash40 @g in Smash Ultimate","0.4.4"],"abort_on_panic":["Intercept panic! @t unsafe locations @5 abort @4 ^I","2.0.0"],"ruspiro-singleton":["@K @5 &x to $d singleton pattern","0.4.3"],"compacts-bits":["succinct bit vector",C[5]],"piston-editor":["Editor @m",C[1]],"matrixmultiply_mt":["Multithreaded Fork of bluss's matrixmultiply @8. General matrix multiplication of f32 @5 f64 matrices in @3. Supports matrices @7 general strides. Uses a microkernel strategy, so @l @4 @2 is &x to parallelize @5 optimize. `RUSTFLAGS=\"-C target-cpu=&8\"` is $r friend here.",C[3]],"xdg-basedir":["@p to help @7 @4 XDG basedir spec","1.0.0"],"wasmtime-cranelift":["Integration $t Cranelift @5 Wasmtime",C[53]],"plague":["Parametrized tests &1","0.6.3"],"accurate":["(more or less) accurate floating point ^3","0.3.1"],"xls_table_@b":[C[558],"0.5.1"],"tp-npos-elections-compact":[C[374],"2.0.2"],"orkhon":["Machine Learning Inference Framework @5 Server Runtime","0.2.3"],"bytes-cast-derive":["Safely re-interpreting &[u8] bytes as custom &o ^Y copying, @0 efficiently &3 structured $Q @w. $q @e @0 compile-$z soundness checking.","0.1.1"],"unicycle":["A scheduler @0 driving a large &a of @Z.","0.7.1"],"wait_group":["golang sync.WaitGroup in @3","0.1.4"],"proc-macro-id":["Identity $e @e","1.0.1"],"packapp":["pack a $Q to a MacOS .app bundle",C[2]],"mrh":["Crawls filesystem @5 displays pending status of each git repo found","0.10.14"],"fluence-fork-libp2p":[C[709],"0.36.2"],"pgx-utils":["Utility @y @0 'pgx'",C[57]],"rendy-frame":["Rendy's frame synchronization ^4","0.5.1"],"yolol_&a":["A rusty @2 of @4 weird-ass special &a $l $2 in yolol.","0.9.0"],"allegro_acodec":["Allegro 5 acodec addon @3 @h","0.0.41"],"count-min-sketch":["Count-min-sketch @2","0.1.7"],"r2d2_postgres":["Postgres @j @0 @4 r2d2 connection pool","0.18.1"],"gradescope-submit":["Program @l submits @z to Gradescope @t @4 @D-$D","0.1.3"],"mango-orm":["ORM-$C @x MongoDB @0 @3.","0.6.13"],"conjure-runtime":["An ^s @c ^i @7 Conjure-^8 services","1.2.0"],"runng_@b":["^o @0 [runng](&Y://crates.io/$R/runng)",C[3]],"vial":["a micro micro-@k","0.1.9"],"proc-quote-impl":[C[375],C[9]],"ordered-multimap":["Insertion ordered multimap","0.4.2"],"@Y_name":[C[376],C[3]],"ybc":["A Yew component @1 @n on @4 Bulma CSS @k.",C[5]],"bmidi":["Midi @R @5 &u @1","0.0.2"],"deunicode":["Convert &h $p to ^X ASCII by intelligently transliterating them. Suppors Emoji @5 Chinese.","1.3.1"],"tokio-os-timer":["Timer facilities @0 Tokio @n on OS-@C $9.","0.1.8"],"std-semaphore":["A counting, blocking sempahore extracted @t @f 1.7.0.",C[0]],"factory":["`Factory` $y @5 its @T",C[4]],"radio-sx127x":["@3 ^j @0 @4 Semtec SX127x Sub GHZ LoRa Radio ICs",C[15]],"slog-atomic":["Atomic run-$z controllable drain @0 slog-rs","3.1.0"],"lz4-sys":["@3 LZ4 @r @X.","1.9.2"],"morton-encoding":["A @8 @0 $5 @5 ^P Morton (\"Z-order\") keys.","2.0.1"],"&e_console":["Web @y @0 console","0.3.7"],"affinity":["@W a consistent way to set @F affinity @0 currently running threads @5 processes",C[4]],"serial":["@3 @1 @0 accessing serial ports.",C[2]],"reminisce":["A joystick detection @5 event-^a @1","0.9.1"],"enapi-client":[C[377],"1.2.2"],"k12":["Experimental ^X @3 @2 of @4 KangarooTwelve ^z @Y",C[0]],"broadcaster":["Broadcasting @Z mpmc channel","1.0.0"],"xkpwgen":["Generate XKCD 936 passwords","0.8.1"],"unchecked-index":["Unchecked indexing @h @u regular index syntax.",C[8]],"actix_@b":["&n @a @0 `actix` actors","0.6.0"],"seq-macro":["Macro to repeat sequentially indexed copies of a fragment of @V.",C[8]],"dominator_&w":["&w @0 Dominator","0.7.2"],"snarkos-utilities":["^e @0 a decentralized operating @O","1.1.4"],"xxtea":["XXTEA encryption $1 @1",C[3]],"retry":["^e @0 retrying $B @l can fail.","1.3.0"],"async-codec-util":["^e @0 ^p @7 @4 @J-codec $3.","0.3.3"],"resource_proof":["A 'proof' of bandwidth, cpu @5 ^x @0 nodes in a decentralised ^9.","1.0.38"],"allegro_examples":["Allegro 5 @h examples","0.0.41"],"labelgraph":["A @d to $d graph @2, allowing &L $X to nodes via labels.","2.2.3"],"$0_scanner":["Advanced ^D input handler patterned after java.util.Scanner",C[3]],"holyhashmap":["A ^z map @7 stable indices.",C[4]],"bspline":["A @d ^G @1 @0 computing B-splines","1.0.0"],"lite-parser":["@K @i @1. Wasm / no_std ready.",C[4]],"address-formatter":["Universal international address formatter",C[5]],"volume":["A @d dsp-chain node @0 multiplying @4 amplitude of @4 &Z buffer by some volume.",C[2]],"controlled-option-macros":["$q @a @0 @4 controlled-option @8",C[8]],"rustc-rayon":["@K work-stealing parallelism @0 @3 - fork @0 &K","0.3.1"],"mma8x5x":["Platform-&f @3 ^j @0 @4 MMA8451, MMA8452, MMA8453, MMA8652 @5 MMA8653 tri-axis accelerators.",C[0]],"free":[C[602],"0.0.1"],"fbxcel-dom":["FBX DOM @1","0.0.6"],"$j_script_$0_gen":["A @3 @1 $i contains convenience &P to ^n @z @7 specified content via $j scripts @5 include their content within source @z.","0.6.1"],"jexl-eval":["A JEXL evaluator $A in @3","0.1.7"],"tower-grpc":["A @c @5 @U gRPC @2 @n on Tower.","0.1.1"],"maybe-owned":["@s a `MaybeOwned` (@5 `MaybeOwnedMut`) $l similar to std's `Cow` but it implements `From` @5 `From<&'a T>` @5 does not require `ToOwned`","0.3.4"],"sp-keystore":["Keystore $9.","0.9.0"],"libwebp-sys2":["A handwritten raw @m to libwebp",C[4]],"ringbuf":["Lock-free SPSC FIFO ring buffer @7 direct $X to inner @w","0.2.6"],"fftw-src":["Source of FFTW","0.3.3"],"subcmd":["Cargo $C &i @i",C[0]],"nagiosplugin":["A &7 ^t @1 to make it &x to &0 nagios/icinga checks.","0.4.1"],"stm32f1":["Device @j $R @0 STM32F1 &N",C[24]],"amplify":["Amplifying @3 @L capabilities: &l ^G $y @T, $l &r, @b @a","3.9.1"],"bb8-bolt":["A bolt-@c adaptor @0 @4 bb8 connection pool.","0.6.1"],"auxv":["Access @4 ELF auxiliary vector (aka auxv or auxval).","0.3.3"],"slog-html":["Html formatter @0 slog-rs","0.1.3"],"forktree":["Tetcore $w @1 @0 managing ^0-$C ordered @w @7 logic @0 pruning @4 ^0 while finalizing nodes.","2.1.2"],"ripgrep_all":["rga: ripgrep, but also search in PDFs, E-Books, Office documents, zip, tar.gz, etc.","0.9.6"],"konst_^B_@a":["@v detail of @4 `konst` @8","0.2.11"],"ckb-jsonrpc-types":["CKB $u @g @0 ^k @M.",C[302]],"flow_impl_@b":["Definition of a @b @e @0 FlowImpl","0.40.0"],"ndk-glue":["Startup @V @0 android binaries",C[2]],"cuda-sys":["@3 $W to CUDA Driver/Runtime APIs",C[3]],"test-ignore-if-utils":["Build ^u @0 @4 `^7-ignore-if` @8",C[0]],"slugify":["Macro @0 flexible slug ^1",C[0]],"google-classroom1":[C[378],C[112]],"sophia_term":["A @3 toolkit @0 RDF @5 Linked Data - Implementations of RDF terms","0.7.0"],"small-logger":["a &7 logger @0 programs who do not know how to log correctly",C[5]],"backup_rat":["A highly configurable backup ^4","0.6.0"],"rust-tcl":["Tcl @6 @0 @3",C[1]],"install":[C[379],"0.0.0"],"bootloader":["An experimental x86_64 bootloader @l works on both BIOS @5 UEFI systems.","0.10.9"],"drone-fatfs-raw":["@H to ChaN's FatFs.","0.2.3"],"sgx_backtrace_@r":[C[21],"1.1.1"],"cretonne-entity":[C[575],"0.13.2"],"rel":["Relations",C[3]],"@F_rustc-serialize":["&W @M/&9 @j corresponding to @4`@b(RustcEncodable, RustcDecodable)` mode in @4 ^2. Also includessupport @0 hex, base64, @5 &V $5 @5 decoding.This $4 does not depend on std, only on @F+&C","0.3.20-v0.3.19patch1"],"airmash-protocol":["^c @1 @0 airma.sh",C[1]],"rotor-stream":["$8 ^L abstration on top of rotor. @Q is @4 easiest way to $j a @9 on top of TCP (Unix sockets) @7 rotor","0.6.2"],"sketches-ddsketch":["A direct port of @4 Golang DDSketch @2.",C[4]],"fragile":["@W @h @g @0 sending non-send ^V to other threads.","1.0.0"],"oleaut32-sys":["Contains @Y $h @0 @4 ^6 @x @1 oleaut32. See winapi @0 @g @5 constants.",C[3]],"human_bytes":["Crate to convert bytes ^d human-readable ^V",C[1]],"python-packed-resources":["Manage @w $k containing Python resources",C[7]],"terminal-linked-hash-map":["A fork of linked-^z-map @l builds on stable in exchange @0 not allowing custom hashers.",C[0]],"mail-internals":["[mail-^S] _internal_ parts @0 @4 mail-^S $R","0.2.3"],"middleman":["A @h @0 a mio::TcpStream to send @5 receive serializable Structs (blocking or non blocking) of arbitrary size","0.3.1"],"cargo-binutils":["Proxy @0 LLVM &1 $C llvm-nm, llvm-objdump @5 llvm-size","0.3.3"],"hostname":["Cross-@N system's host name @y","0.3.1"],"google-cloudresourcemanager1_beta1-cli":[C[1038],C[996]],"defmt-parser":["Parsing @1 @0 defmt @G $p",C[8]],"opcua-server":["OPC UA @U @x","0.8.1"],"gameboy_opengl":["&M Gameboy emulator $A in @3!","0.2.8"],"emoji-commit":["Make $r git logs beautiful @5 readable @7 @4 help of emojis","0.1.8"],"probe-rs-t2rust":["A $b of ARM chips @0 @4 `probe-rs` @8.","0.7.0"],"color-eyre":["An ^q report handler @0 panics @5 eyre::Reports @0 colorful, consistent, @5 well formatted ^q reports @0 all kinds of errors.","0.5.11"],"iml-wire-types":["Shared @g @0 @4 IML ^g",C[5]],"tracing-bunyan-formatter":["A Bunyan formatter @0 @4 &g @8",C[1]],"solana-merkle-tree":["Solana Merkle Tree","1.8.1"],"canonical_@b":["$8 automatic derivation of Canon @0 &o, @5 enums.","0.6.3"],"pwr-hd44780":["A ^j @0 @4 HD44780 LCD. Has @j @0 both I2C @5 GPIO buses + implements a high-speed buffered $4.","0.1.3"],"rasn-derive":["&n @a @0 rasn.",C[2]],"ethereum-transaction":["A set of $9 to compose ethereum transactions.","0.6.0"],"thin-slice":["An owned slice @l packs @4 slice ^x ^d a single word when possible","0.1.1"],"git-conventional":[C[437],C[16]],"toast":["Containerize $r &D @5 continuous $T environments.","0.45.0"],"rustache":["Mustache templating $a @0 @f",C[0]],"$0":["For @3 1.25 @5 older. 1-liner convenience @y @0 &3 @5 $O @z","1.1.2"],"mail-headers":["[mail/headers] header parts @0 @4 mail @8 (inkl. header map @5 ^E header impl)","0.6.6"],"twine":["@p @0 internationalization @u @4 Twine $0 @G","0.3.9"],"mhash":["An @2 of @4 multihash @G $2 in IPFS",C[1]],"dogear":["A @1 @0 merging bookmark trees.",C[2]],"permutation":["Small $w @0 $Z, manipulating, @5 applying permutations.","0.2.5"],"zerodmg-utils":[C[543],"0.1.9"],"parry2d":["2 dimensional collision detection @1 in @3.","0.7.1"],"hdf5-types":["&M @3 equivalents of HDF5 @g.",C[7]],"gluon_^H":["Code ^1 @a @0 @4 gluon $m @L",C[43]],"libucl-sys":["Low-@C @6 to libucl.","0.1.5"],"interceptor":["A ^X @3 @2 of Pluggable RTP/RTCP processors","0.6.1"],"crt0stack":["Tools @0 &3 @5 $Z &j crt0 stack @w",C[0]],"configparser":["A @d $H @R $w @7 no &c @l allows you to parse INI @5 ini-style syntax. You can $d this to &0 @3 programs $i can be customized by end users easily.","3.0.0"],"twilight-cache-inmemory":["In-^I-$g @n cache @0 @4 Twilight ecosystem.","0.7.0"],"libmarpa-sys":["Low-@C @6 to @4 libmarpa @R $a",C[3]],"shiori_hglobal":["impl str @0 HGLOBAL{...}",C[1]],"typescriptify":["Typescriptify Trait @5 example usage","0.1.5"],"argdata":["Argdata: A $Q @M @G.",C[4]],"tokio-fd":["Non-blocking Read @5 Write a &j File Descriptor",C[1]],"bubblebabble":["$8 Bubble Babble Binary Data Encoding",C[4]],"leetcode_prelude":[C[923],"0.2.3"],"join_export":["Exports of @4 `join!`, `join_async!`, `join_spawn!`, `join_async_spawn!`, `async_spawn!` @a $i are reexported by `join` @8.","0.1.1"],"thirtyfour_sync":["Thirtyfour is a Selenium / WebDriver @1 @0 @3, @0 automated website UI testing.This @8 is @4 synchronous $4 only. For @J, see @4 `thirtyfour` @8 instead.","0.25.0"],"datasize_@b":["&n @a @0 @4 `datasize` @8","0.2.9"],"typescript-definitions-derive":[C[313],C[32]],"arctk-proc":["$q @e @j @1 @0 @4 ARCTK @8.","0.4.3"],"syn-impersonated":[C[380],"0.1.18"],"default":["`$d default::default;`",C[4]],"bloom-server":["^s REST @x caching &G, to be $2 $t load balancers @5 REST @x workers.","1.29.0"],"slog-stream":["`io::Write` streamer @0 slog-rs","1.2.1"],"libimagdiary":[C[39],C[12]],"webrender":["A GPU accelerated 2D renderer @0 &e content","0.61.0"],"llvm_$j_^u":["Ever wanted to $j “&8” assembly stuff in $r @S $j scripts…something gcc @8 cannot quite handle yet? Welcome to llvm_build_utils $i @s aconvenient @x to pack $r .ll or .bc @z ^d a ready to $d archive full of machine @V! Itdoesn’t even need an installation of LLVM*!",C[1]],"appdirs":["@3 @8 @0 determining @N-specific directories",C[3]],"kripher":["File encoder @n on an own $1.",C[7]],"pcre":["@3 @h @0 libpcre.","0.2.3"],"tweetnacl":["A @f ^S @0 @u tweetnacl",C[2]],"deoxysii":["Deoxys-II-256-128 MRAE $9 @0 @3",C[8]],"gsk4":["@3 @6 of @4 GSK 4 @1","0.3.1"],"collections-rs":["&W $b @g @0 @f.","0.3.1"],"embed-resource":["A Cargo @1 to handle compilation @5 inclusion of ^6 resources in @4 most resilient fashion imaginable","1.6.5"],"uucore":["uutils ~ '@F' uutils @V @1 (cross-@N)","0.0.10"],"nats-types":["Enumerations @5 @g @0 representing NATS @9 &y","0.1.8"],"sre-engine":["A low-@C @2 of Python's SRE regex $a",C[4]],"anitomy-sys":["@H @0 Anitomy, @4 @1 @0 @R anime video filenames",C[4]],"async-slot":["An $n (@Z-@n) channel @l only preserves last &5 sent",C[0]],"mit-pre-commit":["Run first, before you even $l in a commit message. It's $2 to inspect @4 snapshot that's about to be committed.","5.11.6"],"bpf-sys":["@H @0 libbpf","2.0.2"],"google-storagetransfer1-cli":[C[381],C[382]],"css-modules":[C[383],"0.5.2"],"piston2d-drag_controller":["A drag controller",C[53]],"phf_&J":["Support @V &J by PHF &4",C[13]],"bui-backend-types":["&J $N/frontend @g $2 by bui-$N",C[7]],"async-log-attributes":["Proc Macro attributes @0 @4 @J-log @8.","1.0.1"],"liboverdrop":["Configuration @1, @7 directory overlaying @5 fragments dropins","0.0.2"],"spyparty":["A @1 @0 @R SpyParty replays.","0.1.9"],"historian":["a high $J zero-config histogram @2","4.0.4"],"tk-sendfile":["A high-$J $0 serving @1. Serves @z in special IO threads. In this $4 it uses normal $0 &3, but we will optimize @u `sendfile` on supported systems as quick as $v allows us to do @l.",C[2]],"$n":["Promises Q style , @J @5 event loops","0.4.5"],"$P_eks":["^r ^N @0 @3 - Amazon Elastic Kubernetes Service @ 2017-11-01",C[27]],"rbatis":["@3 ORM Framework High Performance(^k @n)","2.1.7"],"korome":["WIP game $a @u glium","0.14.1"],"readline-sys":["Declarations @0 `libreadline` or `libedit`","0.0.12"],"coresimd":["SIMD @j in Rust's @F @1.",C[4]],"foursquare":["@3 @m @0 Foursquare","0.1.14"],"kube":["Kubernetes @c @5 @J controller @I","0.63.1"],"markdown2html-converter":["A ^4 @0 converting a Markdown $0 to a single HTML $0 @7 built-in CSS @5 JS.","1.1.6"],"hackchat":["Hack.chat @c @1","0.1.4"],"cookie-factory":["nom &X @M @1",C[9]],"bodyparser":["Body @R &G @0 Iron.",C[7]],"chiisai":["A micro @k @0 micro services!","0.1.6"],"userfaultfd":["@3 @6 @0 @4 &j userfaultfd $7","0.4.1"],"nanoserde":["Fork of makepad-tinyserde ^Y any external dependencies.Supports &V, $Q @5 ron.```@f#[@b(Clone, Debug, Default, DeJson, SerJson)]pub struct Property { pub name: String, #[nserde(default)] pub &5: String, #[nserde(rename = \"$l\")] pub ty: String,}```","0.1.29"],"sailfish-macros":[C[317],"0.3.3"],"$P_appstream":["^r ^N @0 @3 - Amazon AppStream @ 2016-12-01",C[27]],"trust-dns-server":["Trust-DNS is a $M @5 secure DNS @U @7 DNSSec @j. Eventually this could be a replacement @0 BIND9. $8 DNSSec @j allows @0 live signing of all records, in it does not currently @j records signed offline. $8 @U supports dynamic DNS @7 SIG0 authenticated requests. Trust-DNS is @n on @4 Tokio @5 Futures &4, $i means it should be easily integrated ^d other software @l also $d those &4.",C[41]],"rpc-perf":["RPC Performance Testing","2.0.3"],"faktory":["@x @6 @0 @4 @L-&f Faktory work @U",C[17]],"unidiff":["Unified diff @R/metadata extraction @1 @0 @3","0.3.3"],"sharded-slab":["A lock-free concurrent slab.","0.1.4"],"print_perf":["Ergonomic print optimization @0 @3. @Q @8 will provide a struct @5 ahelper @e @l you can $d to measure @5 print out @4 $z $t two points in $r @V.","0.1.9"],"phonenumber":["@p @0 @R, formatting @5 validating international phone ^M.","0.3.1+8.12.9"],"loupe-derive":["Profiling ^4 @0 @3, see @4 `loupe` @8","0.1.3"],"rdma-core-sys":["rdma-@F-@r $L @6",C[32]],"wagyu-ethereum":["A @1 @0 $E Ethereum wallets","0.6.3"],"interoptopus":["$8 polyglot @6 @B @0 $r @1 (C#, C, Python, ...). 🐙","0.13.5"],"decent-serde-toml-derive-alternative":["A @b ^B-@e @0 @4 FromToml @5 ToToml $3 defined by @4 decent-toml-rs-alternative @8. It compiles quickly but is not as robust or flexible as @4 serde_derive ^B-@e. Sometimes it is enough.",C[1]],"colonnade":["@G tabular @w @0 display","1.3.1"],"collenchyma":[C[453],"0.0.8"],"$P_resourcegroupstaggingapi":["^r ^N @0 @3 - ^r Resource Groups Tagging @x @ 2017-01-26",C[27]],"azure-functions-sdk":["Azure Functions @0 @3 Developer Tools",C[16]],"fomat-macros":["Alternative syntax @0 print/&0/@G-$C @a @7 a &7 templating @L","0.3.1"],"enumflags_@b":["Bitflags","0.4.1"],"ra_$u":["&O @1 @0 RA $R.","0.1.5"],"femme":["Not just a pretty (inter)face: pretty-printer @5 ndjson logger @0 log @8.","2.1.2"],"shaderc":["@3 @6 @0 shaderc","0.7.3"],"hex-buffer-serde":["Helper @0 serializing byte buffers as hex $p in `$6`",C[1]],"nrf52833-pac":["Peripheral Access Crate @0 Nordic's nrf52833 microcontroller",C[12]],"penny":["ISO-4217–compliant currency @1",C[3]],"rustpython-parser":["&B @0 python @V.",C[4]],"filedesc":["thin @h $G raw $0 descriptors","0.5.0"],"prgrs":["prgrs is a progress bar @0 @f, @l aims to work $C @4 python @X tqdm","0.6.4"],"io-enum":["#[@b(Read, Write, Seek, BufRead)] @0 enums.","1.0.1"],"cjson":["Canonical ^k serializer",C[4]],"rustbus_@b":["@b ^B-@a @0 @4 rustbus @8",C[2]],"sourcefile":["Retain mapping $f when concatenating source @z, to make ^q &y more useful",C[5]],"dynamic-arena":["Dynamically typed arenas, supporting any `Sized` $l.","0.1.4"],"elastic_responses":["Parses search results @t Elasticsearch @5 presents results @u convenient iterators.",C[384]],"curve25519-parser":["Curve25519 &B - DER/PEM @i @0 OpenSSL Ed25519 / X25519 keys",C[3]],"env":["Environment variables","0.0.0"],"check-latest":["Check if $r @f executable is @4 latest available $4","1.0.1"],"asi_vulkan":["@3 $M @6 @0 Vulkan.","0.9.0"],"tree-buf":["A prototype $Q @M @9 @0 @w",C[13]],"psl":[C[697],"2.0.57"],"inari":["A @3 @2 of interval arithmetic","0.10.9"],"plugkit":["Deplug Package Development Kit","0.0.9"],"sc-consensus":["Collection of $u &A specific imlementations @0 Substrate (@c)","0.9.0"],"snarkvm-parameters":["Parameters @0 a decentralized virtual machine","0.7.9"],"reproto-repository-http":["^s @j @0 reproto repository @c","0.3.36"],"mvt":["A @1 @0 $5 mapbox vector tiles","0.7.0"],"js_int":["JavaScript-interoperable integer @g",C[5]],"fluence-sdk-macro":["Definition of @4 `#[fce]` @e","0.6.1"],"arboard":["Image @5 ^D ^a @0 @4 OS clipboard.","2.0.0"],"libfrugalos":["@Q @8 defines @4 public @m of `frugalos` @0 related &1","0.7.0"],"flamer":["a $e @e to insert `flame::start_guard(_)` calls",C[2]],"rel-ptr":["A ^4 @0 $K movable self-referential @g","0.2.3"],"critical-section":["Critical section $F","0.2.4"],"stemmer":["Stemming @1 @0 @3, @u @6 to Snowball C @2",C[9]],"rusty-data":["A @w ^a @1 (designed @0 machine learning).","0.0.3"],"strsim":["Implementations of $c similarity &q. Includes Hamming, Levenshtein,OSA, Damerau-Levenshtein, Jaro, Jaro-Winkler, @5 Sørensen-Dice.",C[13]],"gtrie":["&W trie @2 @7 a @j of different key @5 &5 @g",C[2]],"integer-atomics":["@Q @8 allows you to compile @V @l needs @4 unstable integer atomics @g (Atomic{U,I}{8,16,32,64}) @7 @4 stable ^2.","1.0.2"],"odbc-ffi":["renamed to odbc-@r","0.2.4"],"tui-realm-stdlib":["Standard component @1 @0 tui-realm.","0.6.3"],"cargo-bom":["Bill of Materials @0 @3 Crates","0.5.3"],"gnupg":["A @d @h @0 gpgme",C[3]],"sleef-sys":["@3 $L @6 to @4 SLEEF Vectorized Math @p",C[4]],"png_encode_mini":["Mini stand-alone PNG @8 $i writes out uncompressed RGBA image @z.",C[4]],"lazy_@J_pool":["An asyncronous object pool @l generates objects on @4 fly.","0.3.3"],"$6_@b_state":[C[385],"0.4.10"],"hello_extern":["how to $d an external @8","0.1.1"],"log-ndc":["log ^h @7 NDC-$C $7",C[1]],"ripemd160":["RIPEMD-160 ^z @Y","0.9.1"],"ordslice":["Extensions @0 ordered slices",C[1]],"rexsgdata":["Scatter-Gather Data Descriptors","0.11.4"],"stl_io":["STL input @5 &Z.","0.6.0"],"tiny-led-matrix":["A @1 @0 direct control of a &7 monochrome LED display.","1.0.2"],"sc-finality-grandpa-warp-sync":["A request-response @9 @0 ^a grandpa warp sync requests","0.9.0"],"delay-queue":["A concurrent unbounded blocking queue where each element can only be removed when its delay expires.",C[3]],"bear-lib-terminal":["BearLibTerminal $L @0 @3","2.0.0"],"zip-extensions":["An ^h @8 @0 zip.","0.6.1"],"treez":[C[386],"1.6.0"],"ra_ap_vfs":["TBD","0.0.79"],"atpp":["atpp @9","1.6.7"],"yarte_config":["Config $0 @i of yarte","0.6.1"],"layout_id":["Layout id is $2 to ^n a unique id @0 a $l @l changes if it's $g layout changes",C[1]],"rusterpassword":["An @2 of @4 Master Password $1.",C[8]],"google-abusiveexperiencereport1":[C[584],C[65]],"molecule":["@3 @6 @0 molecule.",C[387]],"jsonrpc-http-server":[C[943],"18.0.0"],"terminal-menu":["Display @d menus on @4 $o","2.0.1"],"bevy_@F":["@W @F $7 @0 Bevy Engine","0.5.0"],"succinct":["Succinct @w $k @0 @3","0.5.2"],"cryptsetup":["Full @6 to libcryptsetup.",C[3]],"fiz":["Fiz: Game Engine & Graphics Toolkit","0.0.4"],"dataplotlib":["dataplotlib is a(n early stage) hassle-free @1 @0 plotting @w","0.1.3"],"noble-proxy":["FABRIC proxying noble","2.0.0"],"unbound-sys":["$L @6 to libunbound","0.6.0"],"http-service-h1":["HttpService @U @l uses &z-@g @5 @J-h1 as $N",C[0]],"headers":[C[841],"0.3.5"],"uuid-rs":["A @K Universally Unique IDentifier (UUID)","0.6.2"],"openldap":["Straightforward @3 @6 to @4 C openldap @1. @Q is a fork of cldap @l has been methodically fixed, extended, @5 made to be more compliant @7 openldap. It should be relatively robust @5 production ready at this point. Not heavily maintained, but feel free to send PRs if you see something missing.","1.2.2"],"cast5":["CAST5 block cipher",C[13]],"stats_alloc":["An ^l @h @l allows @0 instrumenting global allocators","0.1.8"],"graphy_&k":["$8 &k variables in @4 graphy ^K.",C[1]],"fraction":["Lossless fractions @5 decimals; drop-in float replacement","0.9.0"],"clams-derive":[C[524],"0.0.6"],"hid":["Safe hidapi @h","0.4.1"],"eng-wasm-derive":[C[935],"0.1.7"],"tract-onnx":[C[94],"0.15.5"],"candid_@b":["^o @2 of #[@b(CandidType)] @0 @4 Candid.","0.4.5"],"json-patch":["RFC 6902, JavaScript Object Notation (^k) Patch","0.2.6"],"asprim":["Cast any primitive numeric $l to any other @u `as` @7 @4 AsPrim $y.",C[3]],"lfs":[C[388],"1.2.0"],"checkstyle_formatter":["checkstyle formatter.","1.0.2"],"rv":["Random variables","0.13.1"],"lexical":[C[438],"6.0.1"],"indy":[C[389],"1.16.0"],"cargo-yaml":["Drop-in Cargo &i to ^n a Cargo.toml manifest @t an YAML template.","3.0.0"],"$6_repr":["&n Serialize @5 Deserialize @l delegates to @4 underlying repr of a C-$C enum.","0.1.7"],"tramp":["Trampoline @0 recursive @y, @7 @j @0 mutual recursion",C[1]],"sapp-wasm":["Part of miniquad &S @1. Binding @5 JS @2 of GL @5 sokol-app @x.","0.1.26"],"xrl":["Xi Rpc Lib - Tokio @n @2 of @4 RPC $2 in @4 Xi editor","0.0.9"],"ethers-middleware":["Middleware @T @0 @4 ethers-rs @8","0.5.4"],"solana-chacha-cuda":["Solana Chacha Cuda APIs","1.1.13"],"sgx_tseal":[C[21],"1.1.1"],"foreman":["Toolchain &F @0 @d $Q &1","1.0.2"],"sqlx-core":["Core of SQLx, @4 @f SQL toolkit. Not intended to be $2 directly.","0.5.9"],"$6_bare":["An @2 of @4 BARE (&Y://baremessages.org) $5 @G.","0.5.0"],"chrono_locale":["Localised date @5 $z formatting @1 @0 @3, @n on chrono","0.1.1"],"google-testing1":[C[1076],C[33]],"blowfish":["Blowfish block cipher",C[7]],"varlink":["Client @5 @U @j @0 @4 varlink @9.","11.0.1"],"x11":[C[390],"2.19.1"],"gnunet":["@H @0 GNUnet: GNU's @k @0 secure peer-to-peer networking","0.0.15"],"ticketed_lock":["Ticketed lock @O - allows one to separate lock request @t @4 actual waiting.",C[1]],"filecoin-proofs-api":["@x to @o @7 @4 proofs @O in Filecoin","10.1.0"],"noise-protocol":["Noise ^c Framework @2.","0.1.3"],"rust-freqdist":["An @2 of a Frequency Distribution in @3","0.1.5"],"miow":["A zero overhead I/O @1 @0 ^6, focusing on IOCP @5 Async I/Oabstractions.","0.3.7"],"rtime":["similar to linux $z @D but writting @4 elapsed $z continuosly on screen","0.6.1"],"metropolis":["A high @C &x to $d ^T renderer","0.9.1"],"primal-bit":["Bit-vector specialised to @4 prime-&a-related needs of `primal`.",C[1]],"gdnative_@6_@B":["Generates @6 @0 @4 Godot engine's gdnative classes @t a &V ^S description $0.","0.9.3"],"goban":["@p @0 Go move ^1 @5 Go ruling.","7.0.0"],"yarte_^H":["Code @B @0 yarte","0.15.4"],"lazy_id":["A &d-$M lazily-initialized ID",C[0]],"credentials_to_env":["Fetch secrets @t Hashicorp's Vault @5 &0 to ^K or @z, then exec another ^U","0.4.7"],"git-pack":["Implements git packs @5 related @w $k",C[15]],"urlshortener-cli":["A ^U $i makes $r url shorten.","1.0.1"],"cymrust":["Query Team Cymru's IP-to-ASN mapping via DNS","0.4.1"],"pipe-logger-lib":[C[868],"1.1.13"],"wlc-sys":["Bindgen ^8 low-@C wlc @h","0.0.8"],"amqp":["AMQP/RabbitMQ @9 @c","0.1.3"],"piston-ai_behavior":["AI behavior ^0","0.32.0"],"yobicrypto":["$8 Yobicash cryptographyc toolkit","0.2.5"],"stm32f103xx":["Peripheral $X @x @0 STM32F103XX $s",C[16]],"solana-ed25519-dalek":["Fork of ed25519-dalek @0 `^f`; only $2 @0 upstreaming fixes",C[3]],"boolinator":["@W @4 Boolinator $y, $i lets you $d Option @5 Result-style combinators @7 bools.","2.4.0"],"cang-jie":["A Chinese tokenizer @0 tantivy",C[15]],"refinery":["Powerful SQL migration toolkit @0 @3","0.7.0"],"sse-client":["Client @0 streams of Server-Sent Events","1.1.1"],"liboj":["A high $J @k @0 $K online judge @O",C[55]],"standalone-quote":["Fork of quote @l allows disabling @4 ^B-@e feature in ^B-macro2 so as to remove @4 &K dylib &m","0.5.0"],"rweb-macros":[C[391],C[15]],"zg-co2":["ZyAura CO₂ sensor @9 @2","2.1.0"],"fluent-bundle":[C[989],"0.15.2"],"termcolor_&Z_impl":["@v @8 @0 colored! @e.","1.0.0"],"xasm":["Compiler @0 @4 xasm $m @L","0.5.10"],"zeroize":["Securely clear secrets @t $g @7 a @d $y built onstable @3 $9 $i guarantee $g is zeroed @u anoperation will not be 'optimized away' by @4 compiler.Uses a portable ^X @3 @2 @l works everywhere,even WASM!","1.4.2"],"mozprofile":["@p @0 ^p @7 Mozilla profiles.","0.7.3"],"asuran":["Deduplicating, encrypting, $I, @5 tamper evident archive @G","0.1.6"],"futures-io-preview":["$8 `AsyncRead` @5 `AsyncWrite` $3 @0 @4 @Z-rs @1.",C[19]],"clarity":["Lightweight Ethereum @c","0.4.16"],"exonum-explorer-service":["Exonum blockchain explorer, packaged as a &t","1.0.0"],"netinfo":["Groups ^9 usage by ^I","0.5.1"],"bleach":["A &7 ^D pre-&u @1 @0 various nlp tasks.",C[4]],"reactor-cache":["An @J cache @u $v @5 @Z","0.1.1"],"brawllib_rs":["Brawl character $0 @i, @n on brawlbox/brawllib",C[74]],"@b_&I":[C[535],"0.10.2"],"panini_^H":["A @i @B. @Q @X handles @V ^1 @0 @4 `grammar` @e.","0.0.0"],"parity-wasm":[C[568],"0.42.2"],"bhtsne":["Exact @5 Barnes-Hut @T of t-SNE.","0.5.0"],"google-cloudkms1_beta1-cli":[C[615],"2.0.4+20170515"],"mayda_codec":["Separate compilation unit @0 @y ^8 by mayda_macros","0.1.4"],"twilight-gateway-queue":["Discord Gateway connection queue @2 @0 @4 Twilight ecosystem.","0.7.0"],"hexf":["Hexadecimal float @j @0 @3",C[5]],"imdb-rename":["A @D $D $w @0 searching IMDb @5 renaming $r media @z.","0.1.5"],"c2rust-bitfields":["C-^i struct bitfield @2 $2 in @4 C2Rust ^g",C[1]],"noise-sodiumoxide":["Sodiumoxide &r @0 noise-@9.","0.1.1"],"funzzy":["$8 fancy watcher &X by entr.","0.3.3"],"argh_&J":[C[392],"0.1.6"],"enum_variant_$l":["Generates @g @0 each enum variant @5 conversion $y impls.",C[5]],"jstime":[C[426],"0.35.0"],"dvb":["An unofficial @8 to query publicly accessible @x &P @0 Dresden's public transport @O.",C[2]],"abnf":["A nom-@n @i @0 ABNF.",C[28]],"bitbuffer":[C[393],"0.10.3"],"tokio-nats":["Async-await ready NATS @1","0.1.1"],"cld2-sys":["Unsafe, low-@C @h @0 cld2 @L detection @1","1.0.2"],"rkyv":["Zero-copy &9 @k @0 @3","0.7.20"],"cfg-expr":["A @i @5 evaluator @0 @3 `cfg()` expressions.","0.9.0"],"crowbook-intl":["An internationalization @1 to localize $p, translating them according to @I option, @u @a.",C[5]],"frequency":["A $y @0 @g @l keep track of @4 counts of things.","1.0.1"],"nphysics3d":["3-dimensional physics $a in @3. @Q @8 is being superseded by @4 rapier3d @8.","0.24.0"],"^b_@g":["Types useful in ^b, no_std amd hw &D",C[9]],"billecta":["Generated Billecta @x",C[7]],"dwt":["$8 @X @s an $1 to compute @4 discrete wavelet transform.","0.5.2"],"fluvio-protocol-core":["encoder @5 decoder @0 fluvio @9","0.3.3"],"line-span":["Find $D ranges @5 jump $t next @5 previous lines","0.1.3"],"tmux_@m":["@3 @L @1 @0 communication @7 TMUX via CLI",C[5]],"casper-types":["Types &J by many casper $R @0 $d on @4 Casper ^9.","1.4.1"],"mailgun-rs":["An unofficial @c @1 @0 @4 Mailgun @x","0.1.3"],"derive-try-from-primitive":["Custom @b a try_from method @0 primitive to enum conversions","1.0.0"],"fluence-fork-libp2p-swarm":[C[394],"0.28.1"],"mio-utun":["Utun @6 @0 mio","0.6.19"],"scoped-tls":["@p @2 of @4 ^E library's old `scoped_thread_local!`@e @0 ^R scoped $X to &d local ^x (TLS) so any $l canbe stored ^d TLS.","1.0.0"],"graph":["A $K block @0 high-performant graph ^3.","0.1.5"],"rust-xml":[N,"0.1.1"],"bytevec":["A @3 @M @1 @l uses byte vectors",C[3]],"zbus_names":["A $b of D-Bus bus names @g","1.1.0"],"xlru-cache":[C[880],C[4]],"avr-mcu":["Pragmatic $k @0 all AVR $s","0.3.5"],"reproto-backend-js":[C[89],"0.3.36"],"rustyline-derive":["Rustyline @a @2 of #[@b(Completer, Helper, Hinter, Highlighter)]","0.5.0"],"libarchive3-sys":["Raw @6 @0 libarchive",C[4]],"hbs-pow-sys":["$L @6 to libhbs-pow",C[5]],"rocket-include-handlebars":["@Q is a @8 $i @s @a `handlebars_resources_initialize!` @5 `handlebars_response!` to statically include HBS (Handlebars) @z @t $r @3 ^g @5 make them be @4 ^s response sources quickly.",C[15]],"diesel-derive-enum":["&n diesel boilerplate @0 @u enums in databases","1.1.1"],"pinger":["A &7 cross-@N @1 to execute @4 ping @D @5 parse @4 &Z","0.3.6"],"mpsc_requests":["mpsc channels but @7 a response","0.3.3"],"keccak-hasher":["Keccak-256 @2 of @4 Hasher $y",C[99]],"poolite":["A lite threadpool @1.","0.7.1"],"similar-asserts":["@s assert_eq! $C @a @7 colorized diff &Z","1.1.0"],"sfmt":["@3 @2 of SIMD-oriented Fast Mersenne Twister (SFMT)","0.7.0"],"rnr":["RnR is a @D-$D ^4 to rename &l @z @5 directories thatsupports regular expressions",C[1]],"estunnel":["Tool @0 downloading @w @t elasticsearch cluster.","1.8.6"],"amethyst_^7":["Amethyst ^7 @E @8",C[99]],"$5_literals":["UTF-16 literals @0 @3",C[4]],"async-http-proxy":["Lightweight $n ^s proxy @c @1","1.2.3"],"lavalink-rs":["Lavalink @6 @0 @J discord ^S $R","0.9.0-rc.2"],"saphir":["Fully @J-await &z @U @k","2.8.2"],"unicode-casefold":["&h-aware case folding.",C[3]],"obofoundry":["Structures to deserialize OBO Foundry listings ^d.",C[7]],"tuntap":["&j TunTap @6 @0 $v",C[3]],"amethyst_physics":["$8 Amethyst Physics $a @m.",C[3]],"mobc-postgres":["Postgres @j @0 @4 mobc connection pool","0.7.0"],"unicode-normalization-alignments":[C[444],"0.1.12"],"qrcode-generator":["Generate QR Code matrices @5 images in RAW, PNG @5 SVG formats.","4.1.2"],"lenient_semver":["Lenient Semantic Version ^M.","0.4.2"],"lib-ruby-parser-nodes":["Ruby @i nodes @w","0.38.0"],"qt_ui_&1":["@H @0 QtUiTools C++ @1","0.5.0"],"diffbot":["A @c @1 @0 @4 Diffbot @x","1.0.0"],"hime_redist":["Redistributable @I @1 @0 parsers ^8 @7 Hime (LR, RNGLR).","3.5.1"],"htmlstream":["Lightweight HTML @i @0 @f","0.1.3"],"html5ever_dom_sink":["Basic DOM @2 @0 html5ever",C[3]],"slack-chat-api":["An @x @c @0 Slack","0.1.46"],"mpv":["$M mpv @6 @0 @3","0.2.3"],"nu_$Y_selector":["&e scraping @u css selector","0.39.0"],"yew-macro":[C[439],C[43]],"amethyst_ui":["Amethyst UI @8",C[99]],"plist":["A rusty plist @i. Supports Serde @M.","1.2.1"],"peekmore":["Iterator $i can peek forward &l elements.","1.0.0"],"uring-sys":["liburing @6","1.0.0-beta"],"tide":["A minimal @5 pragmatic @3 &e $U @k built @0 rapid &D",C[72]],"css-color-parser2":[C[846],"1.0.1"],"$P_lightsail":["^r ^N @0 @3 - Amazon Lightsail @ 2016-11-28",C[27]],"finch":["An @2 of min-wise independent permutation locality sensitive hashing ('MinHashing') @0 genomic @w @5 @D-$D $w @0 manipulation.","0.4.1"],"libcryptsetup-rs":["High @C @3 @6 @0 libcryptsetup","0.4.4"],"pact_models":["Pact-@3 @j @1 @l @s @4 @F models @0 dealing @7 Pact @z",C[3]],"wasm-core":["Portable $x @2","0.2.15"],"xflags-macros":["Private @2 details of xflags.","0.2.3"],"infer_schema_internals":["Previously ^J to `diesel_infer_schema`. Not intended @0 public $d","1.4.0"],"qptrie":["A QP-Trie @2 @0 @3","0.2.4"],"graphy_dll":["A @1 @0 loading dlls.",C[1]],"colour":["^o @0 $Z coloured console &Z.","0.6.0"],"opencv-ros-camera":["Geometric models of OpenCV/ROS cameras @0 photogrammetry",C[16]],"dua-cli":["A ^4 to conveniently learn about @4 disk usage of directories, $I!","2.14.11"],"elefren":[C[682],C[74]],"hashers":["A $b of non-^w hashing ^3 @0 @3","1.0.1"],"trello-rs":["A Trello @x @c @0 @4 @D $D","1.23.0"],"tree-sitter-rust":["@3 grammar @0 @4 ^0-sitter @R @1",C[95]],"rafx":[C[457],"0.0.14"],"tauri-webview-sys":[C[632],"0.5.0"],"rstest_reuse":["Reuse rstest attributes: create a set of tests @5 apply it to every scenario you want to ^7.","0.1.3"],"ceramic":["Synchronous channels $t proccesses",C[1]],"heapless":["`&k` &E @w $k @l don't require dynamic $g allocation","0.7.7"],"pin-cell":["A pin-$M cell","0.1.1"],"rand_hc":["HC128 &L &a @B","0.3.1"],"google-people1-cli":[C[1080],C[63]],"tetsy-scale-codec":["Tetsy SCALE - @K Concatenating Aggregated Little Endians","2.0.1"],"webplatform":["APIs @0 @4 &e @N @0 cross-compiled @3 to JS.","0.4.2"],"substrate-wasmtime-runtime":[C[123],C[395]],"threadpool":["A &d pool @0 running a &a of jobs on a fixed set of worker threads.","1.8.1"],"mini_paste":["Fast-to-compile equivalent to `::paste`",C[38]],"fastcgi-client":["Fastcgi @c implemented @0 @3.","0.7.0"],"is_elevated":["Determine whether $r ^6 ^I is running elevated or not.",C[4]],"imag-mv":["Part of @4 imag @F ^m: imag-mv @D",C[12]],"multi_mut":["Methods on HashMap @5 BTreeMap @0 safely getting &l mutable references to @4 contained ^V.","0.1.3"],"$P_lex_models":["^r ^N @0 @3 - Amazon Lex Model Building Service @ 2017-04-19",C[27]],"prettify_pinyin":["Turn tone ^M ^d tone marks","1.1.1"],"luminance-gl":["OpenGL backends @0 luminance",C[26]],"ash-molten":["Statically linked MoltenVK @0 Vulkan on Mac @u Ash","0.30.0+38"],"libgit2-sys":["&M @6 to @4 libgit2 @1","0.12.24+1.3.0"],"proconio-derive":["$q @a @0 proconio",C[5]],"scc":["A $b of $K blocks @0 concurrent $m.","0.5.7"],"adobe-cmap-parser":["A @1 to parse Adobe CMap @z","0.3.3"],"varisat-formula":["Basic formula @w @g $2 by @4 Varisat SAT solver",C[8]],"blockchain-network-simple":["@K ^9 @m @0 blockchain","0.5.0"],"grass":["A near-feature-@q Sass ^2 $A purely in @3","0.10.8"],"ark-mnt4-753":["$8 MNT4-753 pairing-&E elliptic curve",C[1]],"sendmmsg":["Transmit &l &y @u one @O call in @3","0.3.6"],"netaddr":["Network addresses @E @0 @3.",C[4]],"boxxy":["Linkable sandbox explorer","0.12.1"],"kira":["Dynamic audio @1 @0 games","0.5.3"],"dns-sd":["@3 $W @0 dns-sd","0.1.3"],"locate-cargo-manifest":["Retrieves @4 Cargo manifest path by @R @4 &Z of `@S locate-^g`.",C[8]],"constellation-server":["Pluggable authoritative DNS @U. Entries can be added & removed @t an ^s REST @x.","1.13.0"],"identity":["A stable @3 @2 of an identity (a.k.a., “equality witness”) $l.","0.0.6"],"tokio-timerfd":["timerfd @j @0 $v",C[0]],"puzzle-solver":["Solve logic puzzles by describing their constraints. Suitable @0 puzzles such as Sudoku @5 Kakuro.","0.4.1"],"metaheuristics":["Find approximate solutions to $r optimisation problem @u metaheuristics ^3","1.0.15"],"retry-policies":["A $b of plug-@5-play retry policies @0 @3 projects.","0.1.1"],"bingrep":["Cross-@N $Q @i @5 colorizer","0.9.0"],"geng-core":["Game Engine (Core)","0.6.0-alpha.8"],"typemap":["A typesafe store @0 many &5 @g.","0.3.3"],"cfor":["A @e @l gives @3 a C-style @0 loop, @7 initialisation,condition @5 step. @Q correctly handles control-flow $C continueand break.","1.1.0"],"fine_grained":["A stopwatch @7 lap $7 @5 nanosecond resolution to $z things.",C[4]],"steamid":["@K SteamID $l.",C[1]],"near-pool":["@Q ^J @8 @s pool of transactions to be processed by @4 @I.",C[396]],"beginner_&1":["Useful @1 designed @0 new Rustacens, @s good examples @l are useful in @d projects","1.1.1"],"levenberg-marquardt":["Levenberg-Marquardt $1 built on top of nalgebra",C[13]],"pca9956b-api":[C[397],C[4]],"log4rs-rolling-file":["A rolling $0 appender @0 log4rs",C[3]],"maligned":["A $g alignment @1",C[5]],"sp-consensus":["&O @E @0 $K @5 @u &A engines in substrate.","0.9.0"],"enum-map-derive":["^o 1.1 @2 of #[@b(Enum)]","0.7.0"],"runloop":["Cancelable non-blocking polling threads (@7 optional timeouts).",C[0]],"fs3":[C[398],"0.5.0"],"riker":["Easily $j $I, highly concurrent @5 resilient @P. An Actor Framework @0 @3.","0.4.2"],"alsa":["Thin but $M &r @0 ALSA (&j sound @x)","0.5.0"],"ethcontract":["Runtime @1 @5 ^B @e @0 &2 @5 $E $l-$M bindingsto Ethereum smart contracts.",C[99]],"rustler":["Safe @3 &r @0 $Z Erlang NIF @y","0.22.2"],"wifiscanner":["List WiFi hotspots in $r area","0.5.1"],"simpleflake":["Distributed ID ^1 in @3 @0 @4 lazy.","0.0.4"],"matrixstack":["A @d pushdown matrix stack @u cgmath matrices","0.1.4"],"lyon_tesselation":["Do not $d this @8, $d lyon_tessellation instead! (wrong spelling).","0.1.1"],"bitintr":["Portable Bit Manipulation Intrinsics.",C[1]],"codeviz_@a":[C[75],C[8]],"elliptic":["@3 @6 @0 agl/curve25519-donna @5 trevp/ref10_extract.","0.5.0"],"bip_peer":["Communication @7 bittorrent peers via peer wire @9","0.5.0"],"ndk-sys":["$L @6 @0 @4 Android NDK",C[5]],"allegro_font-sys":["Allegro 5 font addon @3 $W","0.0.41"],"fsuipc":["FSUIPC @c @0 @3 $m @L","0.5.0"],"dht11":["Platform-&f @3 ^j @0 @4 DHT11 temperature @5 humidity sensor.","0.3.1"],"magic-number":["A dummy ^F @0 experimenting @7 &m resolution",C[3]],"consistent_^z_ring":["A flexible @5 ^Z consistent ^z ring",C[7]],"intbits":["Easy $X to individual bits of integers",C[3]],"hex_literals":["Macro @l converts hex $p to byte $p","0.1.6"],"dns":[C[520],"0.0.3-pre1"],"slog-term":["Unix $o drain @5 formatter @0 slog-rs","2.8.0"],"structmeta":["Parse Rust's &U arguments by defining a struct.","0.1.4"],"raft-consensus":["Raft &A $1 @2",C[2]],"cpp_to_@f_$u":["&O @E @0 cpp_to_rust_generator @5 cpp_to_rust_build_tools","0.2.3"],"racer-testutils":["^7 @1 @0 racer, don't $d",C[0]],"pktparse":["Collection of packet parsers","0.7.0"],"debugid":[C[163],"0.7.2"],"actiondb":["A $M @5 ^Z unstructured ^D (log) @R @1.","0.7.0"],"cose-c":["C @x @0 @4 cose @8","0.1.5"],"xmpp-addr":["An @2 of @4 XMPP Address @G (Jabber ID) defined in RFC 7622.","0.13.1"],"sgx_&Q_^t":[C[21],"1.1.0"],"tauri-libappindicator":[C[399],C[4]],"orr":[C[61],C[62]],"call2-for-syn":["Apply @i @y to ^B-macro2 token streams","2.0.3"],"sv":["A @3 @1 @0 ^p @7 Bitcoin SV",C[5]],"panic-rtt-target":["Logs panic &y &6 RTT @u rtt-target",C[4]],"uil_&J":["Support @V &J by uil &4.","0.0.3"],"$P_directconnect":["^r ^N @0 @3 - ^r Direct Connect @ 2012-10-25",C[27]],"legion-core":[C[162],"0.2.4"],"drone-ctypes":["Platform-specific C @g @0 Drone apps.","0.14.3"],"amplify_@b_&w":["Amplifying @3 @L capabilities: ^t @y @0 $Z ^B @e &4","0.0.4"],"fluvio-extension-common":["Fluvio ^h $u","0.5.0"],"cbor-data":["A @1 @0 @u CBOR as in-$g representation @0 ^p @7 dynamically shaped @w","0.5.0"],"sanitize_html":["Rule-@n HTML Sanitization @1","0.7.0"],"rustic_hal":["A @f @1 @0 $Z Hal representations of resources, @n on $6",C[3]],"atomig":["&W @5 convenient `std` atomics via `Atomic`. Can be $2 @7 manyprimitive @g (including floats) @5 @7 custom @g.",C[9]],"roots":["@p of well known ^3 @0 numerical root finding.","0.0.7"],"google-ml1":[C[893],C[310]],"sc-transaction-graph":["&W Transaction Pool","3.0.0"],"rust-acd":["Unofficial Amazon Cloud Drive ^N",C[0]],"sp-transaction-pool":[C[872],"3.0.0"],"ferris-says":["A @3 flavored replacement @0 @4 classic cowsay",C[5]],"surfman":["A cross-@N, low-@C toolkit @0 GPU surface ^A","0.4.3"],"&Q":["Resources @0 $K cryptosystems in @3 @u @4 RustCrypto project's ecosystem.",C[1]],"$6_dynamodb":["de/serialize struct to HashMap @7 Serde to $d @7 Rusoto DynamoDB","0.9.0"],"coremidi":["CoreMIDI @1 @0 @3","0.5.0"],"components-arena":["@K @1 @0 $Z complex domain-specific self-referential @w $k.","2.1.5"],"rcap":["A @1 to work @7 &j capabilities","0.1.4"],"abi_stable_@b":[C[685],"0.10.2"],"deno_doc":["doc ^1 @0 deno",C[43]],"deterministic":["deterministic $K blocks @0 testable systems",C[4]],"wpilib":["FRC's WPILib $A in @3.",C[2]],"quil":["A @d logger @0 @3 projects","0.4.1"],"@f_combinatorics":["Combinatoric @E @5 @y @0 @f",C[0]],"sysinfo":["@p to get @O $f such as processes, processors, disks, components @5 networks","0.20.5"],"panic-ramdump":["Keep panic &y in @4 targets' RAM","0.1.1"],"ur20-modbus":["Modbus TCP fieldbus coupler (`UR20-FBC-MOD-TCP`) @2",C[2]],"google-dfareporting2d5":[C[400],C[329]],"tokio-tls-api":["An @2 of TLS/SSL streams @0 Tokio giving an @2 of TLSfor nonblocking I/O streams.",C[5]],"toql":["Toql - A &E @5 productive ORM",C[1]],"^f_libra_proto_conv_@b":["Solana Libra proto_conv_derive","0.0.0"],"orbclient_window_shortcuts":["Shortcut @j @0 orbclient::Window","0.1.5"],"cactus":["Immutable parent pointer ^0","1.0.6"],"wit-text":["&B @0 @4 ^D @G of $x Interface Types",C[7]],"evil-janet":["Low @C @6 to @4 janet @L c ^S.","1.18.1"],"markup5ever_rcdom":["Basic, unsupported DOM $V @0 $d by tests in html5ever/xml5ever",C[0]],"salsa20-core":[C[229],"0.99.0"],"strenum":["An enum @l can print all of its variants","0.0.6"],"term_size":[C[401],C[402]],"stacker":["A stack growth @1 useful when ^5 deeply recursive ^3 thatmay accidentally blow @4 stack.","0.1.14"],"bls_amcl":["BLS signatures. 2 variations. Multi-signature, Threshold signature, batch verification @j","0.7.0"],"bitcheck":["A @d script to perform md5 @5 sha1 ^z check on ArchLabs Images.","0.2.8"],"tower-grpc-build":["Code ^1 @0 tower-grpc",C[0]],"holochain_wasmer_$u":["commons @0 both host @5 guest","0.0.73"],"parity-dapps-glue":["Base Package @0 all Parity built-in dapps","1.9.1"],"kqueue-sys":["Low-@C kqueue @m @0 BSDs","1.0.3"],"opcua-core":["Core components @0 OPC UA $2 by @c @5 @U","0.8.1"],"flv-future-aio":[C[403],"2.4.2"],"reroute":["A router @l can $d regular expressions @0 @4 hyper @X","0.4.1"],"devise_^H":[C[404],"0.3.1"],"google-drive2-cli":[C[1057],C[200]],"dlt":["DLT (direct linear transform) $1 @0 camera calibration","0.9.1"],"jsonrpc-server-utils":[C[405],"18.0.0"],"rusty-fork":[C[410],C[1]],"vobsub":["Decode DVD VobSub-@G subtitles (*.sub/*.idx @z)","0.2.3"],"collider":["A @1 @0 continuous 2D collision detection @0 game developement","0.3.1"],"borsh-schema-derive-internal":["Schema Generator @0 Borsh","0.9.1"],"fantoccini":["High-@C @x @0 programmatically &2 @7 &e pages through WebDriver.","0.17.7"],"migrations_@a":["Codegeneration @a @0 diesels ^b migrations","1.4.2"],"timely_bytes":["Disjoint mutable byte slices @t a $u allocation",C[28]],"@f_keylock":["A password &F @7 goals to be Secure, @K to $d, Portable @5 Extensible",C[24]],"embree-rs":["A @h @0 @4 Embree ray &g kernels.","0.3.6"],"parse_^0":["A non-abstract syntax ^0 $l","0.0.7"],"periodic":["@K scheduling ^4 @0 running tasks at fixed intervals","0.1.1"],"c3_clang_&p":["Ugly hacks to get $f hidden/malformed by libclangSee C3 @0 usable @m.","0.3.7"],"google-oslogin1":[C[889],C[101]],"frunk_laws":["frunk_laws contains laws @0 algebras declared in Frunk.",C[2]],"manuf":["Ethernet vendor codes, @5 well-known MAC addresses",C[3]],"signalo":["A DSP toolbox @7 focus on ^b environments.","0.6.0"],"snarkos-gadgets":["Gadgets @0 a decentralized operating @O","1.1.4"],"rand_jitter":["Random &a @B @n on timing jitter",C[1]],"dlmalloc":["A @3 port of @4 dlmalloc ^l",C[5]],"cancellation":["A C#-$C CancellationToken @0 @3",C[0]],"x264":["Encoding H.264 video.",C[1]],"@7_locals-proc_@a":["TODO!",C[1]],"cranelift-simplejit":["A @d JIT @1 backed by Cranelift","0.68.0"],"prophet":["A neural ^9 @2 @7 a focus on cache-efficiency @5 sequential $J.","0.4.2"],"google-groupssettings1":[C[406],C[85]],"pallet-democracy":["FRAME &v @0 democracy","3.0.0"],"dribble":["Stress-^7 @T of Read @5 Write @7 tiny chunks of @w","1.0.0"],"sndfile-sys":["@3 $L @6 to libsndfile.","0.3.1"],"google-admin1_directory-cli":[C[407],C[408]],"ergo-pin":["Ergonomic stack pinning",C[0]],"electrum-client":["Bitcoin Electrum @c @1. Supports plaintext, TLS @5 Onion servers.",C[7]],"bearer":["Command $D $w to ^n ^s Authorization header @7 bearer tokens. @Q is achieved @7 OAuth2 authorization @V @5 refresh token workflow.","0.2.3"],"simplist":["plain @5 @d &z, @0 when you just want to make a darn request!supports $v-@n @J, traditional sync @5 @J-await models.","0.0.5"],"blacken":["turn off $r displays. now.","0.0.1"],"flat_map":["A compact map stored as a vector of key, &5 pairs.","0.0.10"],"cargo-raze":["A Cargo &i to ^n Bazel BUILD @z",C[15]],"tetsy-libp2p-wasm-ext":[C[409],"0.27.1"],"@b_arbitrary":["Derives arbitrary $3","1.0.2"],"byteordered":["Abstraction @0 &3 @5 $O @w @7 implicit byte order awareness","0.6.0"],"unzip-n":["$q @e to ^n `unzip` @0 iterators &6 n-sized tuples",C[4]],"v_latexescape":["$8 simd optimized LaTeX escaping @V","0.13.1"],"sts_profile_auth":["Authenticate @u a profile in $r aws credential $0 when @u $P","0.6.2"],"nuklear-backend-gdi":["A WinAPI GDI drawing $N @0 @3 @h @0 Nuklear 2D GUI @1",C[1]],"map_split":["A @1 ^R simultaneous mutable $X to disjoint portions ^V stored in a ^z map.",C[5]],"libcruby-sys":["Ruby @6","0.7.5"],"double":["Full-featured mocking @1 in @3, including rich failure &y @5 argument matchers","0.2.4"],"libnotify-sys":["$L @6 to libnotify","1.0.2"],"num-complex":["Complex ^M @2 @0 @3",C[2]],"conqueue":["Yet another multi-producer, single-consumer queue (MPSC)",C[2]],"atomic-waker":["A synchronization primitive @0 task wakeup","1.0.0"],"libtest":["Rust's built in unit-^7 @5 micro-benchmarking @k","0.0.1"],"bip0039":["Another @3 @2 of BIP-0039 ^E","0.9.0"],"metrics-recorder-prometheus":["metric recorder @0 Prometheus exposition &Z","0.2.3"],"pin-api":["Experiment @7 Pin @x.",C[5]],"rendy-mesh":["Rendy's mesh","0.5.1"],"sticker-encoders":["Encoders @0 linguistic features","0.5.1"],"polyfuse":["A FUSE (Filesystem in Userspace) @1 @0 @3.","0.4.1"],"poly1305":["$8 Poly1305 universal ^z @Y @5 message authentication @V","0.7.2"],"wav":["@Q is a @8 @0 &3 in @5 $O out wave @z. It supports bit depths of 8, 16, 24 bits, @5 32-bit IEEE Float, @5 any &a of channels.","1.0.0"],"egui-macroquad":["@H $t egui @5 macroquad","0.6.1"],"allegro_image-sys":["Allegro 5 image addon @3 $W","0.0.41"],"reqwest-pretty-json":["Easy way to emit prettified ^k body via reqwest::RequestBuilder",C[17]],"veriform":["Cryptographically verifiable @w @M @G &X by ^c Buffers",C[3]],"duckscriptsdk":["$8 duckscript ^N.","0.8.7"],"mailparse":["A @d @i @0 MIME e-mail &y","0.13.6"],"mrsc":["mpsc @7 requests","0.3.1"],"crm":["crm can help you &x @5 $I switch $t different @S registries, now include: rustcc, sjtu, tuna, ustc, rsproxy.","0.1.7"],"polish":["Test-Driven Development done right","0.9.9"],"ommui_broadcast":["Broadcasting $7 @u crossbeam-channels",C[2]],"fswatch-sys":["$L @6 @5 a @3 @h @0 libfswatch",C[32]],"pmap":["parallel map @0 @f","0.0.5"],"two-rusty-forks":[C[410],C[2]],"topdown-rs":["A top-down @R @1","0.3.3"],"@S_rub":[C[639],"0.0.4"],"glutin_@F_^T":["$8 *real* core_graphics @8, under a temporary name.","0.1.4"],"lz_diet":["An AVL balanced Discrete Interval Encoding Tree","0.1.6"],"jsc-sys":["WebKit JavaScriptCore bundle","0.1.2+r201969"],"union-find":["Struct @5 &P @0 union-find operation.","0.3.3"],"ntdll":["@6 to `ntdll.dll`.","0.0.3"],"nannou_audio":["$8 audio @x @0 Nannou, @4 creative coding @k.",C[26]],"actix-grants-proc-macro":["A ^B-@e way to validate user permissions @0 `actix-&e-grants` @8.","2.0.0-beta.3"],"unwrap":["An unwrap! @5 an unwrap_err! @e","1.2.1"],"crypt32-sys":["Contains @Y $h @0 @4 ^6 @x @1 crypt32. See winapi @0 @g @5 constants.",C[3]],"pcap-sys":["Low-@C @6 to libpcap","0.1.3"],"beryllium":["An opinionated set of high @C &r @0 @4 `fermium` SDL2 @6.","0.3.3"],"hecs":["A $I, minimal, @5 ergonomic entity-component-@O @1","0.6.5"],"opencc":["OpenCC $W @0 @3",C[1]],"markdown_to_^D":["Converts Markdown to plain ^D.","1.0.0"],"v_escape":["$8 simd optimized escaping @V",C[43]],"wstcp":["WebSocket to TCP proxy @U",C[3]],"fulgurobot_db":["A ^Q ^F @0 @4 fulgurogo discord @U bot","0.4.5"],"ppapi-tester":["Compiler $Y to run $T tests in Google Chrome, where Pepper is available.","0.0.1"],"libipld-pb":["ipld protobuf codec",C[28]],"term_cursor":["A @8 @0 ^a $o cursor movement in a @N independent way.",C[5]],"checked_int_cast":["Conversions $t primitive integers @7 overflow @5 underflow checking","1.0.0"],"parse_link_header":["A @1 @0 parse &z link header.",C[5]],"@b_&I_@F":["Internal ^t @1 @0 @4 derive_builder @8.","0.10.2"],"ll":["@f &H @1","4.0.1"],"filesize":["Find @4 physical space $2 by a $0",C[3]],"mysqlclient-sys":["Auto-^8 @f @6 @0 libmysqlclient","0.2.4"],"rollsum":["Rolling checksum @2",C[1]],"webm-sys":[C[411],"1.0.2"],"mach":["A @3 @m to @4 user-space @x of @4 Mach 3.0 kernel @l underlies OSX.",C[9]],"gdal-sys":["Low @C GDAL @6 @0 @3","0.5.0"],"solana-bpf-loader-program":["Solana BPF loader","1.8.1"],"google-dfareporting2d3-cli":[C[840],C[117]],"pcm-flow":["Compose many &7 audio Processors to a big audio Processor","0.5.0"],"hc128":["A @2 of HC-128 ^L cipher. @j `no_std` ^K.","0.1.6"],"fft":["Use @4 DFT @X instead.",C[2]],"network-collections":["Collections suitable @0 $d @7 networking, particularly when a fixed $g usage is required to prevent out-of-$g crashes. Includes two kinds of least recently $2 caches, a bounded ^z map, a magic ring buffer (virtual ring buffer) @5 an arena ^l.","0.1.9"],"textplots":["Terminal plotting @1.",C[7]],"readability":["Port of arc90's readability ^g to @f",C[3]],"percentage":["A @8 to calculate percentages",C[0]],"d2d1-sys":["$L @6 to d2d1. @Q @8 is a placeholder @0 @4 future. If you are interested in this @1 feel free to get in touch @7 me: &z://www.rustaceans.org/retep998","0.0.1"],"vga":["Support @0 vga specific @y, @w $k, @5 registers.","0.2.7"],"fluence-fork-libp2p-plaintext":[C[412],"0.27.2"],"parse-hyperlinks":["A Nom @i @1 @0 hyperlinks @7 markup.","0.23.3"],"castle-game":["2D destructible terrain strategy game","0.1.36"],"google-drive":["A fully ^8 & opinionated @x @c @0 @4 Google Drive @x.","0.2.4"],"ocaml-interop":["^e @0 @3 @5 OCaml interoperability","0.8.7"],"sj":["Some ^k @2",C[42]],"graphene-sys":["$L @6 to libgraphene-1.0","0.14.8"],"blurdroid":["Bluetooth lib @0 @3 @u Android's bluedroid","0.1.6"],"skulpin":["@Q @8 @s an &x option @0 drawing hardware-accelerated 2D by combining Vulkan @5 Skia.",C[24]],"tldr":["tldr is a simplified @5 community-driven man pages",C[4]],"stratum-types":["$8 @g @0 @4 @3 Stratum (v1) @2.","0.9.25"],"filecoin-hashers":["Hashers $2 in filecoin @5 their abstractions.","5.1.0"],"svg_metadata":["Extracts metadata ($C @4 viewBox, width, @5 height) @t SVG ^T","0.4.2"],"progrs":["A &7 @1 @0 displaying compact progress bars","0.1.1"],"actix-redis":["Redis $T @0 Actix @5 session store @0 Actix Web","0.10.0-beta.3"],"wasm-bindgen-test-crate-a":[C[413],C[0]],"embedded-sdmmc":["A basic SD/MMC ^j @0 Embedded @3.",C[1]],"primeval":["A monstrosity of a prime &a @B","1.0.0"],"linefeed":["Interactive $o input reader","0.6.0"],"manifest-dir-macros":["@Q @8 @s @Y-$C @a to check or operate paths relative to CARGO_MANIFEST_DIR at compile $z.",C[38]],"heim-common":["&O stuff &J across heim ^g $R",C[59]],"hyper-router":["@K routing &G @0 Hyper &z @1.","0.5.0"],"cuticula":["Data Preprocessing @1 @0 Machine Learning",C[3]],"dbase":["Read & Write .dbf in @3",C[5]],"app_dirs2":["Put $r app's @w in @4 right place on every @N. Community-maintained ^g.","2.3.2"],"aho-corasick":["Fast &l substring searching.","0.7.18"],"cli-table":[C[894],"0.4.6"],"ex-futures":["An ^h of `@Z`","0.4.9"],"osqp":["$8 OSQP (Operator Splitting Quadratic Program) solver.","0.6.2"],"elastic_@g_@b_internals":["Codegen internals @0 elastic_types.",C[384]],"retag":["`A commandline ^4 @5 shell $Y @l watches @0 $0 changes in a directory @5 incrementally rebuilds $r ctags $0 @0 @4 @z $i have changed.","0.0.3"],"fslock":["A @1 to $d @z as locks",C[3]],"tetsy-jsonrpc-derive":["Tetsy High @C, typed @h @0 `tetsy-jsonrpc-@F`","15.1.0"],"checked":["Implements a @h &6 @4 primitive @3 @g @l better indicates overflow during arithmetic.","0.5.0"],"rapt_@b":["Rapt derivation @a","0.1.4"],"infer_schema_@a":["@Q @8 is ^J to diesel_infer_schema @5 should not be $2 directly","1.4.0"],"yarte":["Type-$M, compiled Handlebars","0.15.5"],"libiio-sys":["&M, unsafe, @6 to @4 &j libiio @1. Used by industrial-io.",C[1]],"lerp":["&W linear interpolation @5 extrapolation, automatically implemented @0 a variety of numeric @g.",C[2]],"funfun":["^o @0 ^p @7 closures.","0.2.4"],"os-str-generic":["Add missing ^G $7 to OsStr",C[3]],"sputnikvm-stateful":["Stateful SputnikVM wrapped @7 tries.",C[306]],"debug_unreachable":["unreachable!() in debug, std::intrinsics::unreachable() in release.","0.1.1"],"glow_glyph":["A $I ^D renderer @0 glow, powered by glyph_brush",C[2]],"zoneinfo_compiled":["@p @0 @R compiled zoneinfo @z","0.5.1"],"clap_derive-v3":[C[414],C[415]],"shadow-clone":["A @e to clone variables ^d @4 current scope shadowing old ones.","1.2.1"],"cranelift-wasm":[C[630],"0.77.0"],"out":["@W $I min @5 max $7 @0 &C.","6.0.0"],"nucleo-f042k6":["Board @j @8 @0 @4 STM32 Nucleo-F042K6 microcontroller board",C[7]],"easter":["Type $h @0 ECMAScript abstract syntax trees.","0.0.5"],"mysteriouspants-throttle":["@K throttle @2 to make rate-limiting &x.","0.2.5"],"matrixcompare-core":["Core $3 @0 matrixcompare",C[0]],"data-url":["Processing of @w: URL according to WHATWG’s Fetch Standard",C[0]],"rustybuzz":["A @q harfbuzz shaping $1 port to @3.",C[2]],"fluvio-dataplane-protocol":["@w plane @9","0.7.4"],"mathematica-notebook-filter":["`mathematica-notebook-filter` parses Mathematica notebook @z @5 strips them of superfluousinformation so @l they can be committed ^d $4 control systems moreeasily.",C[8]],"mop-facades":["Facades @0 MOP","0.5.0"],"rand_@F":["Core &L &a @B $3 @5 &1 @0 @2.","0.6.3"],"ospf-parser":["&B @0 @4 OSPF $4 2 @9","0.5.0"],"oath":["An @2 of OATH ^3 in @3. Includes TOTP, HOTP, @5 OCRA.","0.10.2"],"rugflo":[C[463],"0.4.1"],"ptr-union":["Pointer union @g @4 size of a pointer by storing @4 tag in @4 alignment bits.","2.1.0"],"linenoise":[C[416],"0.0.3"],"cranelift-native":["Support @0 targeting @4 host @7 Cranelift","0.77.0"],"reflection_@b":[C[733],"0.1.1"],"ctr":["CTR block mode of operation",C[7]],"bls12_381_plus":["@v of @4 BLS12-381 pairing-&E elliptic curve construction.This is a fork @t zkcrypto/bls12_381 but adds ^z to curve @5 multiexponentiation methodsas well as enables multi-pairing ^Y @4 ^l requirement.","0.6.0"],"bytepack":["bytepack offers a Read @5 Write $y ^h generalized @0 any packed @w $l.","0.4.1"],"libp2p-broadcast":["broadcast &y to connected peers","0.6.0"],"jsdoc":["JsDoc @i writen in @f","0.45.0"],"indextree":["Arena @n ^0 $V by @u indices instead of reference counted pointers","4.3.1"],"nvapi":["NVIDIA NVAPI @6","0.1.3"],"zone":["@3 @6 @0 Zone ^A","0.1.8"],"ramhorns-derive":[C[746],C[28]],"rust-script":["Command-$D ^4 to run @3 \"scripts\" $i can make $d of $R.",C[26]],"frunk_^B_@a_impl":["Proc @a inernal @T @0 Frunk",C[0]],"unique_port":["@p @0 getting available ports","0.1.1"],"fabruic":["A @d QUIC-@n @9 @u quinn. Written @0 PliantDB @5 Cosmic Verge.",C[417]],"&K_&1_util":["&7 ^t to ^n $4 $f @0 git packages",C[3]],"core-graphics-types":["@H @0 some fundamental Core Graphics @g","0.1.1"],"unic-ucd-bidi":["UNIC — &h Character Database — Bidi Properties","0.9.0"],"dpdk-ethernet":["A @h $G DPDK's ethernet device ^j $7.",C[32]],"quickersort":["Fast sorting ^i @7 stable Rust.Also has (optional) @j @0 ^Z @5 robust sorting of floating point ^M.","3.0.1"],"sodiumoxide":[C[244],"0.2.7"],"tectonic_bundles":["Tectonic \"bundle\" (@j $0 $b) @T.",C[3]],"azure-functions":["Azure Functions @0 @3",C[16]],"futures-turnstyle":["Futures-aware turnstyle-esque, sequential notifications to waiters.","3.0.0"],"elfloader32":["A @f @1 to load ELF @z, modified to handle 32-bit ELF.","0.0.3"],"vsop87":["Pure @3 VSOP87 $1 @2. Includes all VSOP87 algorith versions:VSOP87, VSOP87A, VSOP87B, VSOP87C, VSOP87D @5 VSOP87E.VSOP87 are a family of ^3 $2 to predict @4 position of planets in thesolar @O @7 great accuracy. That position can be $2 by astronomicalsoftware to create views of @4 sky, or by simulation software to know theposition of @4 planets.","2.1.0"],"sparkline":["unicode sparklines in @f ▁▂▃▄▅▆▇█","0.1.1"],"serde-lite":["A general-purpose @M/de-@M @1",C[3]],"test-case":[C[418],"1.2.0"],"simd_&w":["Helpers to &0 more compact simd @V",C[0]],"phase21":[C[892],C[16]],"tars-stream":["@0 tencent/Tars TARS ^c $5/^P","0.1.1"],"cursive_buffered_$N":["$8 buffering $N @0 any Cursive $N","0.6.0-alpha.0"],"reproto-parser":["reproto @i","0.3.36"],"stm32l4xx-hal":["Hardware $F layer @0 @4 stm32l4xx chips","0.6.0"],"rotsprite":["Rotate sprites @u @4 rotsprite $1","0.1.3"],"unshare":["$8 low-@C @m @0 linux namespaces (containers)","0.7.0"],"pest_grammars":["pest popular grammar @T","2.1.0"],"rovr":["A VR headset @1 @0 @3 programs targeting @4 Oculus Rift.","0.0.2"],"assert_cmd":[C[419],"2.0.2"],"tomlq":["A ^4 @0 obtaining $f @t a TOML $0 on @4 @D $D",C[0]],"curve":["$8 @X @s curves.","0.6.1"],"milstian-http":["A $Q ^s @i.","0.1.9"],"gopher":["Gopher @9 @2","0.0.3"],"eth2_ssz":["SimpleSerialize (SSZ) as $2 in Ethereum 2.0",C[1]],"hashmap_@b":["A proc_macro to @b @4 FromMap $y",C[0]],"display-link":["rusty @6 to apples CADisplayLink/CVDisplayLink @m",C[3]],"carapax":["A Telegram Bot Framework",C[13]],"hermit-sys":["$L @6 to HermitCore","0.1.24"],"editorconfig":["A @8 @l implements editorconfig","1.0.0"],"linemux":["A @1 ^R $n, multiplexed tailing @0 (namely log) @z.","0.2.3"],"sass-sys":["Low @C $W @0 @4 Sass @1","0.4.22"],"chamkho":["Khmer, Lao, Myanmar, @5 Thai word segmentation/breaking @1 @5 @D $D","1.0.2"],"sabre-sdk":["Sawtooth Sabre is a transaction family $i implements on-chain smart contracts executed in a $x virtual machine.","0.7.2"],"inputbot":["Cross-@N (^6 & &j) @1 @0 simulating keyboard/mouse input events @5 registering global input device event handlers.","0.5.1"],"h2":["An ^s/2.0 @c @5 @U","0.3.7"],"tokio-service":["$8 @F `Service` $y @0 Tokio.",C[0]],"upaste":["@K ^y pasting @c @0 paste.rs, hastebin, or any general pasting &t",C[1]],"bmp_rs":["A bitmap $0 decoder @0 Microsoft bmp @z","0.0.9"],"askama_rocket":["Rocket $T @0 Askama templates",C[420]],"gstreamer-audio":["@3 @6 @0 GStreamer Audio @1","0.17.2"],"rustfm-scrobble":["Last.fm Scrobble @8 @0 @3","1.1.1"],"seer-z3":[C[421],C[4]],"webpki-roots":["Mozilla's CA root certificates @0 $d @7 webpki","0.22.1"],"forest_cid":["A Cid @1 $2 in Forest @0 @4 Filecoin @9",C[1]],"network-endian":["Unsigned integers to make it easier @5 more ^Z to work @7 ^9 endian @w.","0.1.5"],"interpolate_name":["@K $e @e &U @0 repetitive tests","0.2.3"],"app_dirs":["Put $r app's @w in @4 right place on every @N [&T]","2.0.1"],"swc_ecma_@i":["Feature-@q es2019 @i.","0.76.0"],"arrayvec":["A vector @7 fixed capacity, backed by an array (it can be stored on @4 stack too). Implements fixed capacity ArrayVec @5 ArrayString.","0.7.1"],"parse_duration":["Parses a duration @t a $c.","2.1.1"],"mcp794xx":["Platform-&f @3 ^j @0 @4 MCP794xx real-$z clock / calendar (RTC) family. Compatible @7 MCP7940N, MCP7940M, MCP79400, MCP79401, MCP79402, MCP79410, MCP79411 @5 MCP79412.",C[5]],"r-rust":["Useful &1 @5 @a @0 research (WIP).Currently, a microbench probe is implemented.","0.0.16"],"misdreavus-test":["demo @8 to ^7 interactions @7 docs.rs","0.7.2"],"chip8_vm":["Virtual machine @0 @4 CHIP-8 $m @L",C[2]],"septem":["A @1 @0 @R @5 ^p @7 Roman numerals","1.1.0"],"validatron":[C[474],C[5]],"rdftk_@F":["@Q @8 @s @4 @F RDF @w model; concrete @T @0 Statements @5 Literals, along @7 a Resource $l @l @s a &I-$C experience @0 models.","0.3.1"],"google-cloudbilling1":[C[798],C[210]],"afi":["Audio & video $k, plus encoder & decoder $3.",C[815]],"bson-rs":[C[1086],C[0]],"environmental":[C[521],"1.1.3"],"dayu":["Alibaba's Dayu SMS ^N @0 @3.",C[1]],"kissfft":["@3 $W @0 Kiss FFT","0.0.8"],"staticdir":["Providing list of directory entries @0 Iron @k","0.3.1"],"maxminddb":["@p @0 &3 MaxMind DB @G $2 by GeoIP2 @5 GeoLite2","0.21.0"],"memorable-wordlist":["List of memorable words","0.1.7"],"bls-signatures":["Aggregate BLS Signatures",C[17]],"solana-perf":["Solana Performance APIs","1.8.1"],"sexpy":["^W derivable s-expression parsers @0 @d $m languages","0.5.6"],"gregorian":["&x to $d date @1",C[5]],"actix-ratelimit":["Rate limiting &G @k @0 actix-&e","0.3.1"],"yaque":["Yaque is yet another disk-backed persistent queue @0 @3","0.6.2"],"rehashinghashmap":["A HashMap @h @l shrinks to fit in &7 steps.",C[4]],"rstats":["Statistical Measures, Vector Algebra, Geometric Median, Data Analysis @5 Machine Learning","0.8.7"],"bellperson":[C[710],C[43]],"binary-ff1":["Optimized @3 @2 of FF1 encryption @7 radix 2",C[3]],"sev":["@p @0 AMD SEV",C[0]],"wayland-scanner":["Wayland Scanner @0 $E @f APIs @t XML wayland @9 @z. Intended @0 $d @7 wayland-@r. You should only need this @8 if you are ^p on custom wayland @9 &p. Look at @4 @8 wayland-@c @0 usable @6.",C[98]],"externalities":["Tetcore externalities $F","2.1.2"],"rust-covfix":["Fix @3 coverage @w @n on source @V",C[5]],"derive-dynamic-node":["&n @e work $Z Grapl plugins",C[5]],"splay":["A &8 @2 of a Splay Tree @0 @3. Splay Trees are self-balancingbinary search trees $i adapt dynamically to lookups &6 $z to allow commonaccess patterns to frequently have better than log(n) lookup $z.","0.1.8"],"ident":["A $w @8 @0 wrapping @g @7 an immutable identifier @5 storing/accessing such @g in &C.","0.3.10"],"littletest":["A little $S @1.",C[8]],"totems":["A $b of assertion @a @0 unit $S or otherwise.","0.2.7"],"nom-recursive-macros":["Helper @8 of nom-recursive",C[2]],"sc-executor-wasmi":["@Q @8 @s an @2 of `WasmRuntime` @l is baked by wasmi.","0.9.0"],"gost94":["GOST R 34.11-94 ^z @Y","0.9.1"],"solana-netutil":[C[745],"0.20.5"],"meter_proxy":["A TCP proxy @l measures latency @5 throughput of a @c-@U $U","0.2.3"],"fonterator":["Load fonts as vector ^T in ^X @3 @7 advanced ^D layout.","0.9.0"],"halfbrown":["Multi $N HashMap @0 higher $J on different key space sizes",C[38]],"vnc":["An @2 of VNC @9, @c state machine, a @c @5 a proxy",C[2]],"array2d":["A fixed sized two-dimensional array",C[5]],"radix_fmt":["Format a &a in an arbitrary radix","1.0.0"],"pipewire":["@3 @6 @0 PipeWire","0.4.1"],"prost-types":[C[231],"0.9.0"],"winping":["An &x-to-$d ICMP Echo @x @0 ^6 programs ^Y requiring elevated rights",C[12]],"sigma_fun":["A @k @0 making Sigma protocols fun!",C[9]],"coins-bip39":["Bip39 in @3",C[1]],"hueclient":[C[929],"0.4.1"],"proguard":["Basic proguard mapping $0 ^a @0 @3","4.1.1"],"gtmpl_&5":["Internal &5 @G @0 gtmpl-@f","0.5.1"],"wasmer-interface-types-fl":["$x Interface Types @1 @0 Wasmer","0.20.2"],"executable-path":["Get @4 path of a $Q target's executable","1.0.0"],"nkeys":["@3 @2 of @4 NATS nkeys @1",C[0]],"secured_linked_list":["A cryptographically secured @5 provable linked list","0.3.1"],"ckb-rational":["Rational ^M.",C[302]],"shellfn-attribute":["Attribute @e @0 `shellfn` @8","0.1.1"],"checksumdir":["Compute deterministic ^z of a directory",C[1]],"openapiv3":["@Q @8 aims to provide @w $k @l represent @4 Open @x v3 specification easily deserializable @7 $6.",C[422]],"reverse_io":["A @h $l allowing @4 reversing of std::io::{Read, Write, Seek}","0.0.5"],"$6_stacker":["Serde adapter @l avoids stack overflow by dynamically growing @4 stack","0.1.4"],"holochain_@F_@g":["@F @g needed @0 all holochain &D",C[18]],"riker-testkit":["Tools to make $S Riker @P easier",C[0]],"csv-sniffer":["A CSV $0 @G sniffer @0 @3","0.1.1"],"embedded-spi":["@3 ^b ^j ^t @X (new releases at spi-hal)","0.6.2"],"sysmon":["Type $h @5 (de)@M @j @0 Sysmon events","0.2.5"],"bytesize":["an $w @0 human-readable bytes representations","1.1.0"],"wkt":["@3 read/&0 @j @0 well-known ^D (WKT)","0.9.2"],"distance":["A $b of approximate $c matching ^3",C[2]],"bulletinboard":["A general-purpose DHT","0.5.3"],"google-compute1":["A @q @1 to @o @7 compute (@9 v1)",C[101]],"tectonic_cfg_@j":["A build.rs @j @8 @l helps deal @7 CARGO_CFG_TARGET_* variables.When cross-compiling, these variables must be $2 instead of constructs suchas `cfg!(target_arch = ...)` because @4 build.rs script is compiled totarget @4 $j host ^K, not @4 true target ^K.","0.1.3"],"^f_libra_&1":["Libra &1",C[10]],"tiny_ram_db":["A Tiny RAM Database @0 $I $X","0.1.14"],"imag-habit":["Part of @4 imag @F ^m: imag-habit @D",C[12]],"config-derive":["Proc @e $2 by Twelf @8","0.1.7"],"multirust-rs":["multirust in @f - manage &l @f installations @7 ease","0.0.4"],"nmea-parser":["NMEA 0183 @i @0 AIS @5 GNSS sentences",C[7]],"gfx_device_vulkan":[C[423],C[0]],"moore-vhdl-syntax":["$8 VHDL @i @2 of @4 moore ^2 @k.","0.12.1"],"fleet":["A @c @1 @0 CoreOS's fleet.",C[3]],"postgres-inet":["CIDR/INET @j @0 @f-postgres",C[26]],"darn":["Extras @0 @4 Book on Data Analysis @7 @3 Notebooks",C[1]],"tetsy-multistream-select":["Tetsy-Multistream-select negotiation @9 @0 tetsy-^v","0.10.2"],"chariot_drs":["A @1 @0 &3/$O Age of Empires (1997) DRS @z",C[4]],"tw2s":["A @d ^4 @0 converting Traditional Chinese(TW) to @K Chinese.","1.0.14"],"chomp-nl":["chomp-nl @s a @Y to remove @4 trailing newline characters.",C[4]],"cmdtree":["(@3) commands ^0",C[12]],"permutate":["&W permutator @l permutates singular @5 &l lists",C[9]],"msp430":["Low @C $X to MSP430 $s",C[8]],"piper":["Async pipes, channels, mutexes, @5 more.","0.1.3"],"staticsort":["Implements a @e ^R a compile-$z quicksort @Y @0 arrays of any length, containing any primitive Copy $l @7 a PartialOrd @2.","0.4.1"],"actix-identity":["Identity &t @0 Actix &e",C[549]],"buttplug":["Buttplug Intimate Hardware Control @p","5.0.1"],"soundchange-english":["Reimplementation of Mark Rosenfelder's pronunciation $1 @0 English","0.0.8"],"metrics-util":["Helper @g/@y $2 by @4 &q ecosystem.",C[12]],"abci":["Tendermint ABCI @U @0 @3","0.7.1"],"rocket_failure":["Failure $C ^q ^a @0 rocket",C[3]],"regex_@a":["An @2 of statically compiled regular expressions @0 Rust.Unless you specifically need compile $z regular expressions or a matchingengine @l is guaranteed not to allocate, you should temporarily prefer usingthe plain regex @8 (since it is almost always faster).",C[3]],"yubihsm":["Pure @3 @c @0 YubiHSM2 &N @7 @j @0 ^s andUSB-@n $X to @4 device. Supports most HSM functionalityincluding ECDSA, Ed25519, HMAC, @5 RSA.","0.39.0"],"async-pidfd":["Process $0 descriptors (pidfd) @0 &j","0.1.4"],"noble-transaction-payment":["FABRIC noble to manage transaction payments","2.0.0"],"sbz-switch":["Utility @0 changing Sound Blaster parameters on ^6","4.0.0"],"madato":["A @1 @5 @D $D ^4 @0 ^p tabular @w (XLS, ODS, CSV, YAML), @5 Markdown","0.5.3"],"jsonrpc-ipc-server":["IPC @U @0 ^k-RPC","18.0.0"],"pijul-macros":["^o $2 to &0 libpijul.",C[2]],"tc-consensus-epochs":[C[473],C[7]],"tarpc":[C[424],"0.27.2"],"gir-format-check":["File @G checker",C[4]],"tink-aead":["AEAD $7 @0 @3 port of Google's Tink cryptography @1",C[5]],"ruma-federation-api":["Types @0 @4 endpoints in @4 Matrix @U-@U @x.","0.3.1"],"cute":["A @e @0 Python-esque comprehensions",C[1]],"dntk":["Command line's multi-@N interactive calculator, GNU bc @h.","2.2.1"],"include-repo-impl":["@Q is @4 ^J impl @8 @0 @4 include-repo; please do not $d this one directly",C[0]],"darkside":["A TUI-kit @0 @3 @n on ncurses-rs","1.2.5"],"chownr":["Recursive $0 ownership changer. Like chown -r.","3.0.0"],"google-manager1_beta2":[C[430],"2.0.8+20140915"],"st7735-lcd":["ST7735 TFT LCD ^j @7 ^b-^T @j","0.8.1"],"http-client":["Types @5 $3 @0 &z clients.","6.5.1"],"finalfusion":[C[425],C[72]],"interpolate_idents":["Useable @e identifier concatenation $Y","0.2.9"],"cuda-config":["Helper @8 @0 finding CUDA &4",C[0]],"specs":["Specs is an Entity-Component-System @1 $A in @3.",C[26]],"forest_bigint":["BigInt @E @0 $d in Forest","0.1.4"],"tokio-eventfd":["&j eventfd @0 $v",C[3]],"parse-ansi":["Parse ANSI escape codes (colors, underlines, etc.)","0.1.6"],"futures-intrusive":["Futures @n on intrusive @w $k - @0 std @5 no-std environments.",C[2]],"inspector":["General purpose inspection @0 popular @w $k",C[0]],"measure_$z":["Provices @a to measure @4 $z until end of scope.","0.7.0"],"protofish":["Protofish is a decoder focused on ^P arbitrary @9 buffer messageswith ^q recovery.",C[2]],"poppler":["Wrapper @0 @4 GPL-licensed Poppler PDF &S @1.",C[1]],"nng-sys":[C[760],"1.4.0-rc.0"],"rsb_@b":["An opinionated @a @2 @0 @3 struct &I pattern","0.4.2"],"slack-morphism-models":["Slack Morphism Models","0.9.0"],"bevy_log":["@W &H @0 Bevy Engine","0.5.0"],"context-attribute":["Set @4 ^q context @u doc comments.","1.0.0"],"actionable-macros":["^o @0 `actionable`",C[59]],"vk-shader-macros":["$q @a @0 ^p @7 Vulkan shaders","0.2.7"],"mnt":["Parse mount points","0.3.1"],"$P_cloudhsm":["^r ^N @0 @3 - Amazon CloudHSM @ 2014-05-30",C[27]],"$c":["A UTF-8 encoded $c @7 configurable byte ^x.",C[5]],"spinning":["Mutexes @5 SIX locks implemented by spinning",C[0]],"google-genomics1-cli":[C[1079],C[147]],"uclient":["Universal ^s @c @0 @3","0.2.3"],"num-runtime-fmt":["Format ^M according to a @G spec determined at @I.",C[4]],"jstime_@F":[C[426],"0.35.0"],"modinverse":["Small @1 @0 finding @4 modular multiplicative inverses.","0.1.1"],"navi":["An interactive cheatsheet ^4 @0 @4 @D-$D","2.17.2"],"serde-big-array":["Big array ^t @0 $6.",C[9]],"histogram":["histogram ^x @5 percentile &q @7 precision guarentees","0.6.9"],"sp-phragmen-compact":["Phragmen Compact Solution",C[427]],"cosmos":["Cosmos","0.0.17"],"stratum-server":["$8 @U @V @0 @4 @3 Stratum (v1) @2","2.2.35"],"rfyl":["A dice roller accepting dice notation.","0.3.1"],"thunk":["Primitives @0 ^G lazy evaluation in @3. @Q @8 requires nightly @0 `untagged_unions`.",C[1]],"pb":["Client @1 to work @7 Pushbullet REST @x",C[3]],"sqs-lambda":["SQS Service ^t @1","0.21.1"],"allegro":["Allegro 5 @F @1 @3 @h","0.0.41"],"google-language1_beta1":["A @q @1 to @o @7 Cloud Natural &R (@9 v1beta1)",C[33]],"conduit-static":["Middleware @0 serving &k @z @0 conduit",C[428]],"crossterm_winapi":["WinAPI @h @l @s some basic @d abstractions $G $u WinAPI calls","0.9.0"],"teraron":["Genrate @3 @V @t a .tera template @5 a .ron @w",C[0]],"zcash_$9":["@3 @T of @4 Zcash $9","0.5.0"],"ifaces":["@3 @6 to retrieve ^9 @m $f",C[0]],"gfx_shader_watch":["GFX Utility @0 watching shaders @5 reloading pipeline state on @4 fly","0.6.0"],"config":["Layered $H @O @0 @3 @P.",C[16]],"sendgrid-async":["An @J-std @n @c @0 sending emails @7 SendGrid",C[0]],"gloo-storage":["Convenience @8 @0 ^p @7 local @5 session ^x in browser",C[3]],"uluru":["A @d, $I, LRU cache @2","3.0.0"],"rumqttd":["Distributed, embeddable mqtt broker @1",C[7]],"netfilter_queue":["@H @0 @4 libnetfilter_queue @1",C[5]],"google-analytics3-cli":[C[429],"2.0.4+20190807"],"vented":["Event driven encrypted tcp communicaton","0.11.7"],"opcua-types":["OPC UA @g @5 constants","0.8.1"],"float-cmp":["Floating point approximate comparison $3","0.9.0"],"unic-char-basics":["UNIC — &h Character Tools — Basic Stable Character Properties","0.9.0"],"usdt":["Dust $r @3 @7 USDT probes","0.1.17"],"ufind":["Finds you all sort of funky characters","0.3.1"],"primapalooza":["prime &a calculations implemented in @f","0.3.4"],"glium-typed-buffer-any":["Type-erased, dynamically checked vertex buffers @0 glium","0.6.0"],"tempfile":["A @1 @0 managing temporary @z @5 directories.","3.2.0"],"rtag":["@p @0 &3 @5 $O a id3 metadata","0.3.5"],"b3sum":["a @D $D @2 of @4 BLAKE3 ^z @Y","1.1.0"],"sized-vec":["Type @C sized vectors",C[1]],"tera":["Template $a @n on Jinja2/Django templates","1.13.0"],"adler32":["Minimal Adler32 @2 @0 @3.","1.2.0"],"google-manager1_beta2-cli":[C[430],"2.0.4+20140915"],"gdk4-sys":["$L @6 of GDK 4","0.3.1"],"picky-asn1":["Provide ASN.1 @d @g",C[2]],"solana-stake-api":["Solana Stake ^U @x","0.20.5"],"option-filter":["Option::filter polyfill @0 @3 1.26 @5 older","1.0.2"],"google-firestore1_beta1":[C[982],C[310]],"tantivy-fst":["@Q is a tantivy-specific fork @t @4 fst @8 @t Burntsushi. (Please $d @4 fst @8 instead.)",C[1]],"prototty_glutin":["Prototty context @0 glutin windows.","0.27.0"],"$M_^9":["$8 Safe Network Core. @x message $h, routing @5 nodes, @c @F ^S.","0.36.4"],"number-as":["Extend primitive &a @g to make them have a `number_as` method.","1.0.9"],"atsamd51j":["Peripheral $X @x @0 ATSAMD51J $s (^8 @u svd2rust)",C[16]],"uom":["Units of measurement","0.31.1"],"numerals":["@p @0 numeric systems, both ancient @5 modern","0.1.4"],"schnorrkel":["Schnorr VRF, signatures, etc. @u @4 Ristretto group","0.10.2"],"xsv":["A high $J CSV @D $D toolkit.",C[15]],"gluon_base":["Basic $l $h @5 @y @0 @4 gluon $m @L",C[43]],"urdict":["Urban dictionary commandline ^4 @5 dict @U","0.3.4"],"^L_@B":["Allows to easily ^n streams @7 @J/await",C[0]],"opentelemetry-prometheus":["Prometheus exporter @0 OpenTelemetry","0.9.0"],"bevy_input":["@W input $7 @0 Bevy Engine","0.5.0"],"p384":["NIST P-384 (secp384r1) elliptic curve",C[7]],"broadcast":["A rustlang adapter @0 $O to &l sources",C[0]],"schemamama":["A ^O ^Q schema migration @O",C[1]],"exonum-configuration":["An Exonum &t @l @s $7 of modifying @4 global $H.",C[28]],"kompact-component-derive":["A @b @e @0 Kompact component $h.",C[12]],"clin":["Command completion desktop notifications",C[1]],"pallet-staking":["FRAME &v staking","3.0.0"],"apca":["A @8 @0 &2 @7 @4 Alpaca @x.","0.21.1"],"zeros":["Keccak @2","11.1.0"],"iron-slog":["Logging Middleware @0 Iron @k, @7 slog-rs","0.0.2"],"self-ref":["Allows @4 creation of self-referencing &o.",C[4]],"crunchy":["Crunchy unroller: deterministically unroll constant loops",C[8]],"google-spectrum1_explorer-cli":[C[937],"2.0.4+20170306"],"pallet-lottery":["FRAME Participation Lottery Pallet","3.0.0"],"hamcrest":["A port of @4 Hamcrest $S @1","0.1.5"],"$P_cloudwatch":["^r ^N @0 @3 - Amazon CloudWatch @ 2010-08-01",C[27]],"sapling-crypto_ce":["Cryptographic @1 @0 Zcash Sapling @7 more content","0.1.3"],"&e_timer":["Web @y @0 timers","0.2.5"],"rustup-toolchain-install-master":["Install master &K toolchain ^d rustup","1.8.0"],"metamorphose":["^o $b @0 converting Structure to Model, @0 a mango-orm ^g.","0.4.4"],"fluid_attributes":["Proc @e attributes @0 @4 fluid @8.",C[2]],"imag-annotate":["Part of @4 imag @F ^m: imag-annotate @D",C[12]],"ena":["Union-find, congruence closure, @5 other unification @V. Based on @V @t &K.",C[24]],"oauth2":["An extensible, strongly-typed @2 of OAuth2","4.1.0"],"tcp-stream":["std::net::TcpStream on steroids",C[88]],"@f_cast":["@p @l allows you to communicate @7 Google Cast enabled &N (e.g. Chromecast).",C[72]],"varlink_stdinterfaces":["varlink $u interfaces","11.0.2"],"zstd-safe":["Safe low-@C @6 @0 @4 zstd ^C @1.","4.1.1+zstd.1.5.0"],"ethereum-forkid":["Ethereum fork identifier @0 chain compatibility checks","0.6.0"],"async-zmq-derive":["@W derivation @0 Async ZMQ Socket @h @g",C[0]],"rustun":["A @1 @0 ^5 STUN @U @5 @c asynchronously","0.3.7"],"slick":["@J ZSH prompt","0.9.5"],"tokio-named-pipes":["^6 named pipe @6 @0 $v.",C[0]],"unicode-casing":["Titlecase ^t @Y on characters.",C[0]],"socketlabs":["Unofficial @3 @1 @0 @4 SocketLabs Injection @x.",C[5]],"mio-pool":["A worker pool collectively ^a a set of connections","0.5.7"],"rspirv-reflect":["@K descriptor reflection @1 @0 SPIR-V","0.5.0"],"bracket":["Fast @5 correct handlebars-^i template $a",C[16]],"difference":[C[737],"2.0.0"],"seckey":["Use `memsec` protected secret $g.","0.11.2"],"irc-channel":["A channel-$C @x @0 an IRC @c.","0.1.1"],"darling_@F":["Helper @8 @0 ^B-@e @1 @0 &3 attributes ^d &o whenimplementing custom derives. Use &Y://crates.io/$R/darling in $r @V.",C[15]],"raider-server":["Affiliates dashboard. Used by affiliates to ^n tracking codes @5 review their balance.","1.2.0"],"glutin":[C[514],"0.27.0"],"rusqlite":["Ergonomic @h @0 SQLite","0.26.1"],"rsc":["A zero-&m calculator @0 solving scientific math equations in $p.","2.0.0"],"electro":["A &7 toolkit @0 computational electromagnetics, including FD, MM, @5 FEM. Unstable till 1.0.","0.9.3"],"timeplot":["Personal activity tracker & graph plotter","0.8.1"],"extindex":["Persisted immutable index","0.4.1"],"streamson-lib":["@p @0 &u large JSONs","7.1.0"],"odbc-iter":["High @C ^Q $X @1 @n on 'odbc' @8 @l uses &8 ODBC drivers to $X variety of databases","0.2.6"],"&k_map":["A &k hashmap @2, @n on @4 Round-Robin hashing $1 found in &K.",C[431]],"slog-scope-futures":["slog-scope @0 `Future`s","0.1.1"],"likemod":["A ^X-@3 @1 to work @7 &j kernel modules",C[3]],"resolv-conf":["$8 resolv.conf $0 @i","0.7.0"],"google-tagmanager2":[C[432],C[92]],"unicode_names":[C[433],"0.1.7"],"typeshare":["Generate @V in different languages @t @3 $l $h @0 $L interop","0.0.11"],"comedy":["^6 ^q ^a, COM, @5 handles",C[3]],"panning":["A variety of @E related to audio panning.","0.1.1"],"triple_buffer":["An @2 of triple buffering, useful @0 sharing frequently updated @w $t threads","5.0.6"],"dnsclient":["A &7, @d @5 secure DNS @c @1",C[60]],"tari_@E":["A set of useful @5 commonly $2 @E @l are $2 in several places in @4 Tari ^g.",C[1]],"sincere_token":["token","0.1.7"],"tracing-elastic-apm":["Elasting APM intake @x &g layer.","3.1.0"],"hdf5-rs":[C[832],C[3]],"iron_valid":["Request validation @1 @0 iron, @n on Laravel's validation","0.5.0"],"fluminurs":["A @c in @3 to $X @4 reverse-engineered LumiNUS @x","1.1.8"],"logtest":["Test @5 assert log statements","2.0.0"],"sequoia-rfc2822":["An RFC 2822 name-addr @i",C[13]],"substudy":["&R-learning &1 @0 ^p @7 parallel, bilingualsubtitles @5 media @z.","0.4.5"],"reword":["@W @y @0 human readable formatting of words @5 sentences.","6.2.0"],"libxdo-sys":["$L @6 to libxdo",C[16]],"sc-chain-spec":["Substrate chain configurations.","3.0.0"],"holochain_&g_@a":[C[1025],"0.0.24"],"skylane_scanner":["Marshalling @V @B @0 skylane/wayland","0.1.1"],"bufstream":["Buffered I/O @0 streams where each read/&0 half is separately buffered","0.1.4"],"thrust":["Thrift @0 @3",C[0]],"native-windows-gui":["A @f @1 to develop &8 GUI @P on @4 desktop @0 Microsoft ^6. &M-windows-gui wraps @4 &8 win32 window controls in a rustic @x","1.0.12"],"libspa":["@3 @6 @0 libspa","0.4.1"],"starship_^F_config_@b":[C[434],C[5]],"buf-read-ext":["Trait extending anything @l implements BufRead @7 stream_until_token()",C[2]],"parity-daemonize":["A more advanced daemonizer",C[1]],"lis2dh12":["Platform-&f @3 ^j @0 @4 LIS2DH12 accelerometer.","0.6.6"],"get-port":["Get an available TCP/UDP port","4.0.0"],"&V_typegen_^y":["Command $D $w @0 $E @3 @g @t ^k samples","0.7.0"],"wasmer-runtime-core-near":[C[435],"0.18.2"],"exonum-merkledb":["Persistent ^x @2 @n on RocksDB $i @s APIs to work @7 Merkelized @w $k.","1.0.0"],"safe-graph":["Graph @2 (refactored $4 of GraphMap @t popular @8 petgraph).","0.1.6"],"^f_libra_state_view":["Libra state view",C[10]],"io-uring":["$8 low-@C `io_uring` userspace @m @0 @3","0.5.2"],"solana-bpfloader":[C[436],C[99]],"scte35dump":["Dump SCTE-35 @w @t a Transport Stream contained within a $0 or RTP ^9 ^L","0.1.6"],"zbase32":["@v of zbase32.",C[4]],"juniper":["GraphQL @U @1","0.15.7"],"executor-trait":["A $b of $3 to define a $u @m across executors","2.0.1"],"waybackrust":["A ^4 to query @4 WaybackMachine (&Y://archive.org/&e/)...","0.2.11"],"restructure":["Match regex expressions ^d struct fields",C[3]],"nu_$Y_s3":["An S3 $Y @0 Nushell","0.39.0"],"imgui-miniquad-render":["miniquad @n minimal imgui $U @h","0.1.8"],"fontconfig-sys":["@H to fontconfig @0 locating font @z.","2.11.1"],"symbolic_polynomials":["A @1 @0 manipulation of polynomials &6 @4 integers.",C[0]],"assimp":["@3 @6 @0 @4 Assimp @1","0.3.1"],"diesel_logger":["Times @5 logs queries executed by diesel","0.1.1"],"libimagutil":[C[39],C[12]],"license":["@W ^b license $f @t SPDX.","1.1.10"],"conventional":[C[437],"0.5.0"],"res-regex":["A js-regex validator","0.1.3"],"index_vec":["Newtype-style &w @0 `Vec` @5 `usize`.","0.1.3"],"nu_$Y_start":["A $Y to open @z/URLs directly @t Nushell","0.39.0"],"waker-set":["waker set",C[3]],"lexical-core":[C[438],"0.8.2"],"libimagtimeui":[C[39],C[12]],"ethcontract-generate":["Code ^1 @0 $l-$M @6 to Ethereum smart contracts.",C[99]],"webmention":["@p @5 a CLI ^4 @0 sending @5 validation webmentions",C[2]],"google-androidmanagement1":[C[511],C[210]],"gtk4-sys":["$L @6 of GTK 4","0.3.1"],"duration-string":["$c to duration @5 visa-versa lib. @G is [0-9]+(ms|[smhdwy]) such as 100ms, 1s, 2h, 1y","0.0.6"],"miniserve":["For when you really just want to serve some @z &6 ^s right now!",C[43]],"mhost":["More than host - A modern take on @4 classic host DNS lookup $w including an &x to $d @5 very $I @3 lookup @1",C[1]],"crisp-status-reporter":["Crisp Status Reporter @0 @3.","1.3.0"],"extended-primitives":["A @1 ^R primitive-$C @g @0 $d","0.3.5"],"agnostik":["Executor Agnostic Runtime @l can run $r @Z @7 $r favourite Executor.","0.2.3"],"^D_placeholder":["A flexible ^D template $a",C[2]],"binwrite_@b":["&n @e @0 binwrite",C[5]],"psk-client":["@K @h to facilitate TLS connections $i $d pre-&J keys.","0.1.8"],"paw":["CLI argument @i.","1.0.0"],"pact-stub-server":["Standalone pact stub @U","0.4.4"],"hakari":["Manage workspace-hack packages @l do feature unification inside workspaces.","0.6.2"],"json-tools":["A zero-copy &V-lexer, filters @5 serializer.","1.1.2"],"vulkan_rs":["Vulkan @6 @0 @4 @f $m @L.","1.0.62"],"bip32":["BIP32 hierarchical key derivation implemented in a ^G, no_std-friendlymanner. Supports deriving keys @u @4 ^X @3 k256 @8 or theC @1-backed secp256k1 @8",C[8]],"sophia_^S":["A @3 toolkit @0 RDF @5 Linked Data - Core @x","0.7.0"],"ndarray-odeint":["solve ODE @u @f-ndarray","0.7.0"],"finshir":["A coroutines-driven Low & Slow traffic sender, $A in @3","1.0.5"],"termstyle":["create @5 ^7 @4 style @5 formatting of ^D in $r $o @P",C[4]],"libtelnet-rs":["libtelnet-&X telnet @i @0 @f.","2.0.0"],"wgpu_glyph":["A $I ^D renderer @0 wgpu, powered by glyph_brush","0.15.1"],"maskerad_stack_^l":["Stack-@n allocators, @0 contiguous allocation @5 $g fragmentation prevention.","1.1.2"],"stop-words":["&O stop words in several languages",C[2]],"reformation":["Parsing via regular expressions","0.5.3"],"iter-enum":["#[@b(Iterator, DoubleEndedIterator, ExactSizeIterator, Extend)] @0 enums.","1.0.1"],"eieio":["Error Implementing `Eq + Clone` replacing `std::io::Error`","1.0.0"],"cage":["Develop multi-pod docker-compose apps","0.3.6"],"yew-stdweb":[C[439],C[43]],"metrix":["&q @0 $U monitoring","0.13.13"],"iui":["@K, &7, &x to distribute GUI @6.",C[1]],"exempi-sys":["Unsafe @3 @6 to Exempi 2.4. Part of exempi-rs.","2.5.0"],"graphql-parser":["A @i, AST @5 serializer @0 graphql query @L @5 scheme definition @L (sometimes called IDL).",C[1]],"gcsf":["Filesystem @n on Google Drive","0.1.28"],"async-smtp":["SMTP @c",C[2]],"vault-api":["Vault @x @1","0.7.2"],"v_jsonescape":["$8 simd optimized ^k escaping @V","0.6.1"],"hyperdual":["Fully-featured Dual Number @2 @7 features @0 automatic differentiation of multivariate vectorial @y","0.5.0"],"secret-sys":["Libsecret @6 @0 @3",C[3]],"raw-syscall-base":["Low-@C raw @O call base.","0.8.2"],"swar":["Perform $B in parallel on bit subslices in unsigned ^M",C[2]],"largest-remainder-method":["$8 largest remainder method","0.1.1"],"http-auth-basic":["^s Basic Authentication Scheme (RFC 7617 @5 RFC 2617 compilant, base64-encoded credentials) @0 @3 @P","0.3.1"],"special-fun":["Special @y @0 @3 by $W to @4 Cephes @1.",C[3]],"static-server":["@p @0 serve &k @z by ^s","0.0.11"],"chalk-recursive":["Recursive solver @0 @4 Chalk ^g","0.72.0"],"static-buffer":["Static ring buffer @7 paddings",C[3]],"gjio":["&b input @5 &Z.","0.1.3"],"distill-loader":["Loader component of @4 asset pipeline `distill`.","0.0.3"],"arc-cache":["An Adaptative Replacement Cache @0 @3.","0.2.5"],"sentry-contrib-native":["Unofficial @6 to @4 Sentry &M ^N @0 @3.","0.3.1"],"syscallz":["@K seccomp @1 @0 @f","0.16.1"],"google-clouddebugger2":[C[496],C[33]],"graph-search":[C[1088],C[3]],"backtrace-parser":["A zero-copy @i @0 @3 backtraces.",C[0]],"fftw-sys":["unsafe @h of FFTW3","0.6.0"],"irc-proto":["$8 IRC @9 distilled.",C[23]],"cassandra-cpp-sys":["A bindgen-^8 @3 @h $G @4 DataStax Cassandra C++ ^j plus ^p examples. You probably want to $d @4 \"cassandra-cpp\" @8 $i @s a $M @h.","0.12.3"],"wasmer-runtime-core":[C[435],C[43]],"solana-budget-api":["Solana Budget ^U @x","0.20.5"],"mccs-caps":["MCCS capability $c @i",C[0]],"ferrous_threads":["Task runner, &d pools, multi-producer, multi-consumer queues, oh my! @Q is a @8 @7 &w @0 $K concurrent software easily @5 safely.","0.1.1"],"mbox":["malloc-@n box.Supports wrapping pointers or null-terminated $p returned @t malloc as a @3 $l, whichwill be free'd on drop.","0.6.0"],"oxygen_quark":["Oxygen Quark is a maths @1 mainly developed @0 @4 Oxygen Engine.","0.0.11"],"pem-rfc7468":["PEM Encoding (RFC 7468) @0 PKIX, PKCS, @5 CMS Structures, ^5 astrict subset of @4 original Privacy-Enhanced Mail $5 intendedspecifically @0 $d @7 ^w keys, certificates, @5 other messages.Provides a no_std-&E, constant-$z @2 suitable @0 $d withcryptographic private keys.","0.2.3"],"squash-sys":["@r-@C @6 to @4 squash ^C @1","1.0.2"],"urldecode":["URL ^P made &x","0.1.1"],"kg-symbol":["Atomic $p in @3.",C[3]],"murmur_grpc":["Wrapper &6 Murmur's gRPC @m","2.0.10"],"heim-process":["Cross-@N processes $f","0.1.1-rc.1"],"hashbrown":[C[714],"0.11.2"],"xmltree":["Parse an XML $0 ^d a @d ^0-$C $V","0.10.3"],"wasmer-wasi":["WASI @2 @1 @0 Wasmer $x @I","2.0.0"],"tugger-apple":["Random $7 related to Apple platforms","0.5.0"],"^Q_exporter":["Export any ^Q to any @G","0.1.4"],"serde-xml-any":["xml-rs @n deserializer @0 Serde, @7 changes required @0 serde_any","0.0.3"],"isatty":["Deprecated -- $d @4 `atty` @8",C[3]],"iq-cli":["Cargo-$C colored @D-$D interfaces",C[0]],"aoc-runner":["A runner @0 @4 Advent of Code",C[1]],"dpdk-elastic-flow-distributor":["A @h $G DPDK's elastic flow distributor (EFD) @k.","0.1.7"],"sane":["SANE Serialization @5 Deserialization @0 @3",C[5]],"jsonapi":["JSONAPI @2","0.7.0"],"ommui_$0_loading":["Filesystem loading &w @0 ommui","0.7.1"],"atomic-pool":["Statically allocated pool ^R a std-$C Box.",C[8]],"tinytemplate":["@K, ^O template $a","1.2.1"],"tendermint-rpc":["tendermint-rpc contains @4 @F @g returned by a Tendermint node's RPC endpoint. All networking related features are feature guarded to keep @4 &c &7 in cases where only @4 @F @g are needed.",C[354]],"setenv":["Helpers @0 $O &1 @l will be eval'd by shells",C[4]],"libsqlcipher-sys":["&M @6 to @4 libsqlcipher @1","0.9.0"],"fastfield_codecs":["Fast field codecs $2 by tantivy",C[0]],"scalar":["A $y @0 scalars (integers @5 floats)","0.1.8"],"graphene-rs":["@3 @6 @0 @4 Graphene @1","0.14.8"],"quantized-density-fields":["@3 @2 of Quantized Density Fields @w $V.","0.2.3"],"winutils-rs":["@3 &r of various ^6 @x @5 $h.",C[8]],"ubuntu-ami":["Scrape cloud-images.ubuntu.com @0 AMI ids.",C[3]],"raui-yaml-renderer":["RAUI renderer @0 YAML @G","0.38.2"],"stm32-usbd":["'usb-device' @2 @0 STM32 $s","0.6.0"],"wy":["@3 @2 of wyhash ^3","1.1.2"],"audrey":["A @8 to simplify &3, $O @5 converting $t a range of audio formats.",C[1]],"iota-client":["Client to $d IOTA APIs","1.0.1"],"drone":["CLI $w @0 Drone, an Embedded Operating System.",C[24]],"nature_integrate_^7_executor":["Local Executors $2 by Nature Test","1.0.0"],"$P_shield":["^r ^N @0 @3 - ^r Shield @ 2016-06-02",C[27]],"sosistab":["An obfuscated datagram transport @0 horrible networks","0.4.38"],"gtk-layer-shell-sys":["Unsave gir-^8 $L @6 @0 gtk-layer-shell","0.2.3"],"rhq":["A repository ^A ^4",C[1]],"rosa":[C[61],C[62]],"ofiles":["Identify processes @l have opened @z or sockets",C[3]],"changepoint":["Change Point Detection in @3","0.12.2"],"a":[N,"0.0.1"],"dasp_slice":["Conversions @5 $B @0 slices of audio PCM DSP samples @5 frames.",C[16]],"pick-one":["Picks one &L element @t an array","1.0.1"],"nats_^7_@U":["An intentionally buggy NATS @U @l facilitates fault injection @0 $S ^q paths in NATS-@n &4",C[1]],"lc3-isa":["Types @5 friends @0 @4 LC-3 ISA.",C[440]],"blip_buf":["Blip_buf is a &7 waveform synthesis @1 meant @0 $d in classic video game sound chip emulation.Bindings to blip_buf (&Y://code.google.com/p/blip-buf/)","0.1.4"],"tugger-windows-codesign":["Code signing on ^6 platforms","0.5.0"],"crast":["CRAST, Context RNA Alignment Search Tool","1.0.4"],"lightspeed_email":[C[209],"0.40.1"],"libflo_^F":["$8 base libflo ^F loader.",C[4]],"@c_side_validation":["Client-side validation foundation @1","1.0.0-rc.2+1"],"sgf-parser":["A @1 @0 @R SGF @z","2.6.0"],"zvariant_@b":[C[441],"2.9.0"],"hado":["Monadic do notation @u a @e","0.1.1"],"librespot-playback":["$8 audio playback logic @0 librespot","0.3.1"],"zbox":["ZboxFS is a zero-details, privacy-focused in-app $0 @O.","0.9.2"],"xio_jobset_compilation":["XIO jobset compilation @1",C[13]],"kaktus":["Parent Pointer Tree","0.1.3"],"implot":["@3 @6 to &Y://github.com/epezent/implot","0.6.0"],"fpool":["Non-leased object-pooling.","0.5.0"],"&H_timer":["@K timers @l log @4 elapsed $z when dropped","1.0.0"],"jwt-simple":["Easy to $d, secure, non opinionated JWT (^k Web Tokens) @2 @0 @3.","0.10.6"],"literalext":["A ^t @8 @0 interpreting ^B-@e `Literal` ^V",C[3]],"slog-extlog":["Object-@n &H @5 statistics tracking through logs","7.0.0"],"pgn-reader":["Fast non-allocating @5 streaming reader @0 chess games in PGN notation",C[95]],"marker":["Tool @0 finding issues in CommonMark documents",C[7]],"vorbisfile-sys":["$L @0 @4 vorbisfile @1","0.0.8"],"collect_slice":["Collect an iterator ^d a slice.","1.2.0"],"xio_job_to_blockdiag":["XIO job to blockdiag conversion ^4",C[7]],"flexpolyline":["Flexible Polyline $5: a lossy compressed representation of a list of coordinate pairs or triples",C[0]],"rustimization":["A @f optimization @1 $i includes L-BFGS-B @5 Conjugate Gradient $1","0.1.1"],"kurobako_solvers":["A $b of black-box optimization solvers",C[5]],"tarpc-plugins":["Proc @a @0 tarpc.",C[28]],"$M_authenticator":[C[1089],"0.18.1"],"thruster-server":["$8 @F future &r aroun @4 thruster &e @k",C[78]],"triehash":[C[755],"0.8.4"],"rill-export":["Exporter @0 rill-hub","0.24.0"],"rawr":["@3 @x Wrapper @0 Reddit","0.1.1"],"bitfield-rle":["A run-length-encoder @l compresses bitfields",C[3]],"unix-tty":["Unix TTY @x","0.3.4"],"rope":["Ropes in @3","0.0.1"],"matrix-sdk":["A high @C Matrix @c-@U @1.","0.4.1"],"baudot":["Baudot @5 related five bit codes in @3","0.1.1"],"uritemplate":[C[1092],C[4]],"noble-elections-phragmen":["FABRIC noble @n on seq-Phragmén election method.","3.0.0"],"c2-chacha":["$8 ChaCha family of ^L ciphers","0.3.3"],"multihash-derive":[C[442],"0.7.2"],"simple-fcl-sys":["Raw @6 @0 @4 FCL @1 @0 $d in @d-fcl","0.0.5"],"fblog":["&V log viewer","3.0.2"],"fddf":["Fast, parallelized duplicate $0 finder.","1.7.0"],"smallpt":["A &7 ray/pathtracer in @3, &X by Kevin Beason's educational 99-lines ray/pathtracer (&z://www.kevinbeason.com/smallpt/)","0.3.5"],"$P_elbv2":["^r ^N @0 @3 - Elastic Load Balancing @ 2015-12-01",C[27]],"minilzo":["A @h $G @4 portable lossless @w ^C @1",C[3]],"trackable_@b":["Custom @b @0 `trackable` @8","1.0.0"],"wrapping_@a":["A @e @0 wrapping arithmetic.","0.4.13"],"test-generator":["@3 Test @B: enumerating entries according to $0-@O pattern @5 $E a ^7 @Y @0 each entry.",C[1]],"caves":["A $b of ^b, &d-$M key-&5 stores in @3.",C[5]],"@O_^q":["A @1 @0 cross @N @O errors","0.1.1"],"&e_$u":["Web @y @0 $u $B","0.4.2"],"telegram-bot":[C[443],C[7]],"journald":["A @f $W @0 @4 systemd journald ^S","0.6.0"],"syslog-ng-sys":["Low @C @6 @0 syslog-ng",C[1]],"ckb-occupied-capacity-core":[C[205],C[302]],"unicode-normalization":[C[444],"0.1.19"],"rs6502":["A 6502 Microprocessor ^4 suite. Includes a Disassembler, Assembler @5 Emulator.","0.3.4"],"libxdo":["@H to libxdo","0.6.0"],"ethereum-hexutil":[C[445],"0.2.3"],"ckb-rocksdb":[C[155],"0.16.1"],"tsukuyomi":["&b Web @k @0 @3","0.5.3"],"tc-keystore":[C[659],"2.0.0"],"cargo-sort-ck":[C[446],"2.1.1"],"pnetlink":["Netlink @1 in ^X @f","0.0.3"],"sealed":["Macro @0 sealing $3 @5 $k",C[1]],"submetadatan":["submetadatan","0.5.4"],"flags":[C[447],"0.1.5"],"console-traits":["Basic console $3, such as setting char position @5 $O $p.",C[1]],"linear-map":["A map implemented by searching linearly in a vector.","1.2.0"],"specs_camera":["camera 2d @5 3d component @0 specs","0.5.0"],"gping":["Ping, but @7 a graph.","1.2.6"],"rustlex":["Lexical analysers @B @0 @3, $A in @3",C[2]],"simple-http-server":["@K ^s @U","0.6.1"],"chan-signal":["&T. Use crossbeam-channel @5 signal-hook instead.","0.3.3"],"mould":["@3 &e-@k @0 websocket @n &e-apps.","0.0.22"],"calcify":["Physics vector @1","0.8.1"],"addr2line":["A cross-@N symbolication @1 $A in @3, @u `gimli`",C[26]],"json-gettext":["A @1 @0 getting ^D @t ^k usually @0 internationalization.","4.0.0"],"rust-tfidf":["@p to calculate TF-IDF (Term Frequency - Inverse Document Frequency) @0 ^G documents","1.1.1"],"peresil":["A @d @5 simplistic $c @R @1",C[448]],"two_timer":["@i @0 English $z expressions","2.2.3"],"shapefile":["Read & Write shapefiles in @3",C[1]],"fragment":["@K fragment/substring matching @1","0.3.1"],"libnice-sys":["@3 $L @6 to libnice, automatically ^8 @7 bindgen.",C[2]],"swc_ecma_ext_transforms":["Extensions @0 @swc/@F (nodejs)","0.35.0"],"parasail-sys":["&M @6 to @4 parasail pairwise genetic sequence alignment @1.","0.2.5"],"kompact-actor-derive":["A @b @e @0 Kompact Actors.",C[12]],"nvml-wrapper":["A $M @5 ergonomic @3 @h @0 @4 NVIDIA Management @p","0.7.0"],"ungrammar":["A DSL @0 describing concrete syntax trees","1.14.9"],"google-cloudlatencytest2":[C[530],"2.0.8+20160309"],"peano":["$8 peano ^M implemented in Rust's $l @O. Consider @u typenum instead @0 much faster $l-@C ^M.","1.0.2"],"primitive-types":["Primitive @g &J by Ethereum @5 Substrate",C[12]],"proj-sys":["@3 @6 @0 PROJ v8.1.x","0.21.0"],"gpio-utils":["Command-$D @E @0 &2 @7 GPIOs under LinuxThis wraps @4 `sysfs_gpio` @8 in a form usable by bothRust @P or any other @P.",C[1]],"coi":["coi is a Dependency Injection @1.",C[13]],"gfx-hal":["gfx-rs hardware $F layer","0.9.0"],"try-block":["@e @l makes $r ^q-catching blocks (appear) labmdaless",C[0]],"futures-task":["Tools @0 ^p @7 tasks.","0.3.17"],"pad":["@p @0 padding $p at @I","0.1.6"],"ws2_32-sys":["Contains @Y $h @0 @4 ^6 @x @1 ws2_32. See winapi @0 @g @5 constants.",C[5]],"kvmi-sys":["@3 $L @6 @0 libkvmi (v6)",C[8]],"lapacke":["$8 @X @s &r @0 LAPACKE (C).","0.5.0"],"htmlentity":["Encode a unicode character to html entity, decode html entity to a unicode character.","1.2.0"],"type-layout":["Derivable $y to view @4 layout of a struct, useful @0 debugging.",C[3]],"broot":["A new $0 &F","1.6.6"],"pest_meta_tmp":[C[681],"2.1.1"],"forgiving-semver-parser":["Parsing of @4 semver spec. Fork of &Y://github.com/steveklabnik/semver-@i.",C[12]],"sc-client":["Substrate Client @5 associated logic.","0.8.0-alpha.6"],"dlopen":["@p @0 opening @5 operating on dynamic link &4 (also known as &J objects or &J &4). @Q is a modern @5 more flexible alternative to @4 already existing &4 $C libloading or sharedlib","0.1.8"],"wepoll-sys":["Raw @6 to @4 wepoll @1","3.0.1"],"storage-map":["Concurrent append-only map ^x",C[1]],"weblog-proc-macro":[C[449],C[450]],"pretty-lint":["A very @d @1 @0 showing lint errors","0.1.1"],"fake":["An &x to $d @1 @0 $E fake @w $C name, &a, address, lorem, dates, etc.","2.4.1"],"symengine-sys":["Unofficial @3 &r to @4 C++ @1 SymEngine, a $I C++ symbolic manipulation @1.","0.1.0+1"],"cargo-template-ci":["Generate a CI $H @t a template @5 Cargo config",C[3]],"volition":["Minimalist input lib","0.1.4"],"signal":["$8 higher-@C abstractions $G unix signals","0.7.0"],"ra_ap_cfg":["TBD","0.0.79"],"vte":["&B @0 ^5 $o emulators",C[12]],"pam-client":["Application @x @h to Pluggable Authentication Modules (PAM)",C[1]],"lsystem":["A @p @0 $K L-Systems in @f",C[5]],"infer":["Small @8 to infer $0 @g @n on its magic &a signature","0.5.0"],"quit_@a":["$q @a $2 by @8 quit","1.1.4"],"zfp-sys":["Raw @3 @6 to ZFP (&Y://github.com/LLNL/zfp).",C[32]],"pretty":["Wadler-style pretty-printing combinators in @3",C[13]],"maybe-async":["A procedure @e to unify SYNC @5 ASYNC @2","0.2.6"],"bytes-cast":["Safely re-interpreting &[u8] bytes as custom &o ^Y copying, @0 efficiently &3 structured $Q @w.",C[3]],"hourglass":["Timezone-aware datetime @1 @5 $z-related subtleties",C[7]],"tinyjson":["Tiny @d ^k @i/@B","2.3.0"],"fltk-sys":[C[763],"1.2.9"],"bevy":["A refreshingly @d @w-driven game $a @5 app @k","0.5.0"],"rendy-memory":["Rendy's $g &F","0.5.2"],"diesel_full_^D_search":["Adds @j @0 PostgreSQL full ^D search to Diesel","1.0.1"],"tilecover":["Generate @4 minimum &a of tiles to cover a geometry","2.0.0"],"google-dataflow1_b4":["A @q @1 to @o @7 dataflow (@9 v1b4)","0.1.5+20150401"],"follow-redirects":["Extension @0 hyper to follow ^s redirects","0.1.3"],"interledger-btp":["Bilateral Transfer ^c (BTP) @c @5 @U services @0 Interledger.rs",C[2]],"tp-block-builder":[C[451],"2.1.2"],"site_checker":["@K site status checker $A in @3",C[5]],"parity-util-mem":["Collection of $g related @E","0.10.2"],"fluent-langneg":[C[452],C[15]],"minifb":["Cross-@N window setup @7 optional bitmap &S","0.19.3"],"it-to-bytes":["Defines $y ToBytes $2 @0 IT @M",C[0]],"coaster":[C[453],"0.1.1"],"rawloader":["A @1 to extract @4 @w @t camera raw formats","0.37.0"],"stcp-scraper":["Fetches @5 parses bus $f @t STCP's website (www.stcp.pt).","0.4.4"],"openvr":["A high-@C $W @0 OpenVR.","0.6.0"],"reproto-backend-go":[C[89],"0.3.36"],"opentelemetry-application-insights":["OpenTelemetry exporter @0 Azure Application Insights",C[43]],"jnix":["High-@C &p to help @7 @4 usage of JNI in @3 @V",C[2]],"bytestool":["Compiler plugins: compile $z byte_size_of!(..) @5 concat_bytes!(..)",C[1]],"tikv-jemalloc-ctl":[C[462],"0.4.2"],"axum-server":["High @C @U designed to be $2 @7 axum @k.","0.2.5"],"sessions":["General sessions ^F @0 &e services","0.2.3"],"waithandle":["A @1 @l makes signaling $t threads a bit more ergonomic.",C[2]],"base2":["Base-2 @y","0.3.1"],"noble-contracts":["FABRIC noble @0 WASM contracts","2.0.0"],"prio":["@v of @4 Prio aggregation @O @F: &Y://crypto.stanford.edu/prio/","0.5.0"],"vlog":["^o to do stdout / stderr logs @n on verbosity @C.","0.1.4"],"time-macros-impl":[C[536],C[4]],"arraytools":["A variety of helpful &P @0 ^p @7 fixed-size arrays.","0.1.5"],"shell-quote":["A @3 @1 @0 shell quoting $p, e.g. @0 interpolating ^d a Bash script. @Q is not as @d as most people think!",C[0]],"term-painter":["Coloring @5 formatting $o &Z",C[1]],"mp4ameta":["A @1 @0 &3 @5 $O iTunes style MPEG-4 audio metadata.",C[16]],"nvapi-sys":["NVIDIA NVAPI $L @6","0.1.3"],"oboe":["Safe @m @0 oboe an android @1 @0 low latency audio IO","0.4.4"],"futures-signals":["Zero cost FRP signals @u @4 @Z @8","0.3.23"],"ash":["Vulkan @6 @0 @3","0.33.3+1.2.191"],"cab":["Read/&0 ^6 cabinet (CAB) @z",C[1]],"jnix-macros":["Companion @8 to jnix @l @s ^B-@a @0 interfacing JNI @7 @3",C[2]],"$P_events":["^r ^N @0 @3 - Amazon EventBridge @ 2015-10-07",C[27]],"statistics":[C[454],"0.4.1"],"smart_open":["opens @z @0 &3.","0.1.3"],"yubico":["Yubikey @c @x @1",C[13]],"pallet-contracts-rpc-runtime-api":[C[455],"3.0.0"],"my-iot":["Yet another home automation","0.97.0"],"winhttp-sys":["$L @6 to winhttp. @Q @8 is a placeholder @0 @4 future. If you are interested in this @1 feel free to get in touch @7 me: &z://www.rustaceans.org/retep998","0.0.1"],"specs_bundler":["specs component @5 @O bundler","0.6.0"],"neon-sys":["Exposes @4 low-@C V8/NAN C/C++ APIs. Will be superseded by N-@x.","0.9.1"],"routeros_@f":["Mikrotik @x @0 @3","0.0.21"],"syn_util":["^t APIs @0 $e @a","0.4.2"],"@Y_group":["A @e to hack in @Y overloading to @f","0.2.4"],"nature_db":["$8 persistent layer $i $2 by Nature",C[23]],"gitconfig2json":["Parse `git config --list --null` @u gitconfig::Value @0 ^S",C[2]],"rttp_@c":["@3 &z @c lib",C[0]],"tauri-hotkey-sys":["&M @6 @0 @4 Tauri hotkey @x",C[4]],"ipjdb":["In-^I ^k ^Q",C[23]],"rustsym":["Tool to query symbols @t @f @V @0 $d in IDEs",C[9]],"sufdb":["Command $D ^4 @0 searching documents @7 suffix arrays.","0.1.7"],"@O_uri":["System URI @x @1",C[2]],"liquid-value":[C[87],C[335]],"sc":[C[456],"0.2.5"],"rfc2047-decoder":["@K RFC 2047 MIME Message Header decoder",C[4]],"piston2d-deform_grid":["A 2D deform grid @0 Piston-Graphics",C[13]],"decentralized-internet":["A @1 to create decentralized @5 grid computing @P via @3",C[8]],"gfx-backend-gl":[C[862],"0.9.0"],"win-crypto-ng":["Safe @6 to ^6 Cryptography @x: Next Generation",C[2]],"bitmap":["A dense bitmap","3.1.3"],"guessing_game":["Finished $4 of Guessing Game",C[4]],"dirs-2":["A tiny low-@C @1 @l @s @N-specific ^E locations of directories @0 config, cache @5 other @w on &j, ^6 @5 macOS by leveraging @4 mechanisms defined by @4 XDG base/user directory specifications on &j, @4 Known Folder @x on ^6, @5 @4 Standard Directory guidelines on macOS.","3.0.1"],"tskit":["@f @m to tskit","0.5.0"],"gelf_logger":["Minimal @f logger to send log entries in GELF.","0.1.4"],"hexponent":["Hexadecimal float @R","0.3.1"],"format-bytes":["A @e to @G bytestrings",C[8]],"reflink":["copy-on-&0 mechanism on supported $0 systems","0.1.3"],"seqlock":["A reader-writer lock @l @s extremely $I read $X ^Y starving writers.",C[4]],"pasts":["Minimal @5 simpler alternative to @4 @Z @8.",C[7]],"ahrs":["A @3 port of Madgwick's AHRS $1",C[2]],"mem_cmp":["Memory comparison $t @g.","0.1.4"],"atarashii_imap":["IMAP @c $A in @3",C[1]],"actix-macros":["^o @0 Actix @O @5 @I","0.2.3"],"async-sse":["Async Server Sent Event @i @5 encoder","5.1.0"],"smithy":["Smithy, a @k @0 &e &D","0.0.7"],"plotters-svg":["Plotters SVG $N","0.3.1"],"calc":["CLI calculator app",C[1]],"recrypt":["A ^X-@3 @2 of Transform Encryption, a Proxy Re-encryption scheme",C[28]],"glob":["Support @0 matching $0 paths against Unix shell style patterns.",C[1]],"k8-diff":["Used @0 computing diff $t Kubernetes objects",C[4]],"@d_asn1":["A @d DER/ASN.1 $5/^P @1.","0.6.0"],"exonum-rust-runtime":["$8 @I is @0 running Exonum services $A in @3.","1.0.0"],"nitrokey":["@H to libnitrokey @0 communication @7 Nitrokey &N","0.9.0"],"direct-gui":["@K direct &S of GUI controls on a buffer","0.1.26"],"persia-rpc-macro":["^B @a @0 @4 persia-rpc @8","0.6.0"],"qcell":["Statically-checked alternatives to RefCell @5 RwLock","0.4.3"],"tp-offchain":["Tetcore offchain workers $9","2.0.2"],"blinq":["An ^b-hal blinking queue",C[3]],"$P_signature":["^r ^N @0 @3 - Request Signing",C[27]],"cstr":["Macro @0 $K &k CStr reference","0.2.9"],"amplify_@b":["Amplifying @3 @L capabilities: @b @a @0 @4 'amplify' @1","2.9.0"],"simple-vector2d":["@K 2D vector @2","0.1.4"],"crc32c":["Safe @2 @0 hardware accelerated CRC32C instructions @7 software fallback","0.6.0"],"$P_autoscaling":["^r ^N @0 @3 - Auto Scaling @ 2011-01-01",C[27]],"qapi-spec":["QEMU QAPI $u @g","0.3.1"],"recycle":["Transform Box, Vec @5 HashMap while recycling @4 backing $g if possible.",C[0]],"solana-budget-program":["Solana Budget ^U","1.7.0"],"wallpaper":["Gets @5 sets @4 desktop wallpaper/background.","3.2.0"],"tetra":["A @d 2D game @k $A in @3","0.6.6"],"edid":["Parse EDID @w $k",C[1]],"vec-collections":["@3 &C @l are newtype &r $G smallvec","0.3.6"],"tendermint-testgen":["tendermint-testgen is a @1 @5 a &7 $Q $w @0 $E tendermint datastructures @t minimal input (@0 $S purposes only). $8 @1 also contains some $7 to simplify running ^7 batches.",C[354]],"ress":["A scanner/tokenizer @0 JS @z","0.11.2"],"netcdf":["High-@C NetCDF @6 @0 @3","0.6.1"],"cpp_to_@f":["Automatic @B of C++ @1 &r","0.5.3"],"rafx-api":[C[457],"0.0.14"],"hogwild":["Data @g @0 hogwild SGD","0.6.1"],"external_mixin_umbrella":["Backing @1 @0 `rust_mixin` @5 `external_mixin` to keep themDRY.","0.0.2"],"twapi":["A @d Twitter @1. @Q is &x @0 customize.","0.7.0"],"okapi":["Structs @0 OpenAPI (AKA Swagger) documents","0.7.0-rc.1"],"queue":["@K @h $G Vec to provide a FIFO queue.","0.3.2-final"],"regex-automata":["Automata construction @5 matching @u regular expressions.",C[32]],"bacteria":["Bacteria: Strobe & Transcript ^c","0.0.10"],"easybench-wasm":["A ^O benchmarking @1 @0 Wasm target",C[5]],"hex-literal":["$q @e @0 converting hexadecimal $c to byte array at compile $z.","0.3.3"],"umask":["$w to deal @7 unix $X mode","1.0.0"],"managed":["An @m @0 logically owning objects, whether or not heap allocation is available.",C[7]],"throw":["Efficiently add statically-calculated stack traces to errors.","0.1.7"],"gc_$Y":["Garbage collector $Y @0 @f-gc","0.1.1"],"clap_flags":["Collection of reusable flags @0 Clap","0.5.0"],"waiter_^H":["Macro @0 Waiter DI","1.6.5"],"typos":[C[686],"0.7.4"],"bevy_reflect_@b":["&n @T @0 bevy_reflect","0.5.0"],"easy-cast":["Type conversions $i are expected to succeed","0.4.4"],"async-graphql-actix-web":["@J-graphql @0 actix-&e","2.10.6"],"md5-asm":["Assembly @2 of MD5 ^C @Y","0.5.0"],"picky-asn1-x509":["@W ASN1 @g defined by X.509 related RFCs","0.6.1"],"ld":["Run @4 GNU linker (ld) during $r Cargo $j.","0.0.1"],"lockfree":["@Q @8 @s concurrent @w $k @5 a solution to @4 ABA problem as an alternative of hazard pointers","0.5.1"],"swc_ecma_visit":[C[825],"0.42.0"],"macchina":["A @O $f fetcher, @7 an (unhealthy) emphasis on $J.","4.0.1"],"nue":["I/O, POD, @5 misc. $Q @w $5",C[1]],"absal":["Optimal reduction of λ-terms","0.1.4"],"timeout-iterator":["TimeoutIterator is a @h &6 any iterator @l adds peek_timeout @5 next_timeout functions.The canonical $d-case is @R multi-$D free-form records (such as tailing a log fime) where it is desirable toconsume @4 very last $D, @5 peek whether @4 record continues on @4 next $z, but not blockindefinitely on @4 peek.","1.1.4"],"swc_ecma_^H_@a":["^o @0 swc_ecma_codegen.","0.6.0"],"jexl-parser":["A JEXL @i $A in @3","0.1.7"],"samuel":["@3 @1 @0 SAML 2.0",C[4]],"ciborium":["CBOR codec @E @7 $6 @j",C[0]],"pijul":["A distributed $4 control @O.","1.0.0-alpha.55"],"sourceview4-sys":["$L @6 @0 GtkSourceView 4",C[3]],"namedlock":["Namespaces @0 named locks","0.7.0"],"rpki-rtr":["A @1 @0 RPKI RTR.",C[3]],"tc-consensus-babe-rpc":[C[458],C[7]],"yeslogic-fontconfig-sys":["Raw @6 to Fontconfig ^Y a vendored C @1","2.11.2"],"ref-map":["Helper $y @0 Option @5 Result to map references","0.1.3"],"crossterm_cursor":["A cross-@N @1 @0 moving @4 $o cursor.",C[2]],"libnuma-sys":["An $W @l wraps libnuma (also known as numactl)","0.0.9"],"rtl-sdr":["@3 @h @0 librtlsdr.","0.1.5"],"gobject-sys":["$L @6 to libgobject-2.0",C[24]],"rustc-hex":["&K-serialize ^i hex conversion $3","2.1.0"],"quasi":[C[693],"0.32.0"],"oxiri":["@K @5 $I @2 of IRI validation @5 relative IRI resolution","0.1.1"],"rsyntax":["A custom @3 @i cloned @t @3 libsyntax.It is only $2 @0 rfmt, another @3 source @V formatter.","1.10.0"],"libeither":["Either struct @0 @3",C[2]],"tvis":["A console/$o UI @1 (very alpha! such WIP!)",C[99]],"event-listener":["Notify @J tasks or threads","2.5.1"],"cargo-maj":["$8 libmaj CLI companion. Manage packages, keys @5 versions.","0.1.6"],"$P_mediapackage":["^r ^N @0 @3 - ^r Elemental MediaPackage @ 2017-10-12",C[27]],"bart_@b":["#[@b(BartDisplay)] @2 @0 supporting @4 bart @X","0.1.4"],"netcode":["Wrapper @0 netcode.io @1","0.3.1"],"mio-anonymous-pipes":["&b @h @0 windows synchronous pipes",C[3]],"tetcore-storage":["Tetcore ^x related $9","2.1.2"],"arr_@e_impl":["Private impl @8 @0 arr_macro","0.1.3"],"sheets":["A fully ^8 & opinionated @x @c @0 @4 Google Sheets @x.",C[5]],"actix-web-async-await":["@W a preview of Actix @7 @J/await @j.",C[3]],"derivation-path":["@K struct @0 dealing @7 BIP32/44/49 derivation paths","0.1.3"],"blkid-rs":["@3 @2 of blkid @0 LUKS volumes",C[459]],"mdbook-toc":["mdbook preprocessor to add Table of Contents","0.7.0"],"finalfrontier-utils":["Train @5 $d word embeddings @7 subword representations","0.6.2"],"conch-runtime":["A @1 @0 evaluating/executing programs $A in @4 shell $m @L.","0.1.6"],"tower-test":["^e @0 $O @c @5 @U `Service` tests.",C[2]],"@f_info":["Extracts @4 current @f ^2 $f.",C[9]],"orbtk-theming":["Theming $a of OrbTk.",C[204]],"xmldecl":["Extracts an $5 @t an ASCII-@n bogo-XML declaration in ^D/html in a Web-^i way",C[3]],"async-codec-lite":["Adaptors @t AsyncRead/AsyncWrite to Stream/Sink @u @Z.","0.0.0"],"lyon_tessellation":["A low @C path tessellation @1.","0.17.10"],"libbeaglebone":["A &E @3 @m to @4 BeagleBone family of &N.","0.5.0"],"actix-slog":["structured $X-&H @0 actix-&e utilizing slog, thus enabling ^k-&H",C[5]],"yabs":["Yet another $j @O",C[8]],"signal-hook-tokio":["Tokio @j @0 signal-hook",C[1]],"kankyo":["@K, ^Z, @5 precise .env @1.",C[1]],"psyche-graphics":["Graphics ^1 ^F @0 Psyche AI Toolset","0.2.19"],"i18n-config":["@Q @1 contains @4 $H stucts (along @7 their @R @y) @0 @4 @S-i18n ^4/@O.","0.4.2"],"fdt":["A ^X-@3 `#![no_std]` @8 @0 @R Flattened Devicetrees","0.1.3"],"indicatif":["A progress bar @5 ^y reporting @1 @0 @3","0.17.0-beta.1"],"sfxr":["Reimplementation of DrPetter's 'sfxr' sound effect @B","0.1.4"],"sk-cbor":["CBOR @R @1",C[4]],"futures-await-syn":["Temporary fork of @4 `syn` @8 @0 @Z-await",C[28]],"solana-compute-budget-program":["Solana Compute Budget ^U","1.8.1"],"android-logd-logger":["A &H @2 @0 `log` $i directly writes to @4 Android logd daemon",C[8]],"rustforce":["Salesforce REST @x Client",C[3]],"tentacle-ping":["ping @9 @2 @0 tentacle","0.3.9"],"ads1x1x":["Platform-&f @3 ^j @0 @4 ADS1x1x ultra-&7, low-power analog-to-digital converters (ADC). Compatible @7 @4 &N: ADS1013, ADS1014, ADS1015, ADS1113, ADS1114 @5 ADS1115.",C[8]],"git-features":["A @8 to integrate various capabilities @u compile-$z feature flags",C[26]],"mio-aio":["POSIX AIO @6 @0 mio","0.6.0"],"bme680":["A ^X @3 @2 @0 @4 BME680 environmental sensor.","0.6.0"],"packer_@b":["Derives @0 @4 packer @8","0.5.3"],"rnix":["A Nix @i $A in @3","0.9.1"],"c":["A shortcut @0 libc.","1.0.0"],"snarkvm-r1cs":["R1CS @0 a decentralized virtual machine","0.7.9"],"netatmo-rs":["@K @1 to talk to Netatmo's @x","0.5.0"],"aliasmethod":["@v of Walker's Alias method.",C[2]],"bindgen":["^W generates @3 $L @6 to C @5 C++ &4.","0.59.1"],"interledger-settlement":["Settlement-related components @0 Interledger.rs",C[1]],"expanduser":["attempts to expand ~ @5 ~user while $Z a filesystem path","1.2.2"],"veriwasm":["A safety verifier @0 &8-compiled $x @V","0.1.3"],"rand_chacha":["ChaCha &L &a @B","0.3.1"],"variant_count":["&n @e @0 enum $i adds to it @4 count of variants.","1.1.0"],"slugid":["SlugId ^1 @0 @3","1.0.0"],"mergui":["A @d GUI @O @0 $d @7 @4 quicksilver game $a","0.1.0-alpha0.8"],"defmt-test-macros":["defmt-^7 @a",C[5]],"spandoc":[C[460],C[5]],"ffflaij23kap1p-crate-io-test":["Some dummy ^7 @8.","0.1.5-dev.4"],"io-surface":["@H to IO Surface @0 macOS","0.15.1"],"captcha":["@p @0 $E CAPTCHAs.","0.0.8"],"maybe-single":["A singleton. Maybe.",C[23]],"dent":["@p @5 ^4 @0 summarizing @5 comparing &7 @w sets.","0.4.1"],"elf":["A ^X-@f @1 @0 @R ELF @z","0.0.10"],"syslog":["Send log &y to syslog","5.0.0"],"libimagcounter":[C[39],C[2]],"crossbeam-deque":["Concurrent work-stealing deque","0.8.1"],"mdblog":["&k site @B @t markdown @z.",C[95]],"specialize":["Type specialization @a @5 &w.","0.0.3"],"bitter":["Swiftly extracts unaligned bit-@C @w @t a byte slice","0.5.1"],"globwalk":["Glob-matched recursive $0 @O walking.","0.8.1"],"idlset":["Fast u64 set $B @1",C[3]],"duplexify":["Combine a reader + writer ^d a duplex of Read + Write.","1.2.2"],"esrs":["A Prima.it-opinionated @1 to achieve cqrs/es","0.5.2"],"nativeshell_$j":["Integrate Flutter $j ^I @7 Cargo",C[32]],"iron_compress":["A modifier @0 Iron @l can compress response bodies","0.1.3"],"partition-identity":["Find @4 ID of a device by its path, or find a device path by its ID.","0.2.8"],"transducers":["A transducer @1 @0 @3","0.0.2"],"fingertree":["Finger Trees in @3","0.0.1"],"ckb-logger":["CKB &H facade.",C[302]],"encoding-index-korean":["Index tables @0 Korean character encodings",C[461]],"clingo-sys":["Raw $L @6 to @4 C @x of @4 clingo @1","0.7.1"],"lapack-sys":["$8 @X @s @6 to LAPACK (Fortran).",C[24]],"scopeguard":["A RAII scope guard @l will run a given closure when it goes out of scope,even if @4 @V $t panics (assuming unwinding panic).Defines @4 @a `defer!`, `defer_on_unwind!`, `defer_on_success!` asshorthands @0 guards @7 one of @4 implemented strategies.","1.1.0"],"ethereum-tx-sign":["Allows you to model a raw ethereum transaction @5 sign it @7 $r private key","3.0.4"],"inline_assets":["A @3 @1 @0 inlining Javascript, CSS, @5 font @z ^d $r html @z @0 &x ^m.","0.4.1"],"parcel":["Crate renamed to pax.","1.0.0"],"etherparse":["A @1 @0 @R & $O a bunch of packet @n protocols (EthernetII, IPv4, IPv6, UDP, TCP ...).","0.9.0"],"algs4":["Algorithms, 4ed. MOOC in Coursera. in @3.","0.7.0"],"bolt-client-macros":["$q @a @0 bolt-@c.",C[5]],"tree-sitter-facade":["A uniform @m @0 `^0-sitter` (@f) @5 `&e-^0-sitter` (&s-bindgen).",C[0]],"interpolate":["A @d form of $c interpolation","0.2.3"],"elastic_@g_@b":[C[704],C[384]],"perlin_noise":["A @d perlin noise @2 in @3","1.0.1"],"vector-trees":["Vector backed B @5 AVL trees",C[0]],"@f_^x_@m_@1":["A @3 @1 @l @s @3 to $x developers @7 syntax @0 load @5 store $7","0.1.30"],"virtual_view":["a virtual view diff in @f",C[8]],"clocksource":["clocksource @s TSC $X @7 transparent fallback to clock_gettime()","0.5.0"],"realsense-rust":["High-@C RealSense @1 in @3","1.1.0"],"crdts":["Practical, serializable, thoroughly tested CRDTs","7.0.0"],"rune-modules":["&M modules @0 Rune, an embeddable dynamic $m @L @0 @3.","0.9.1"],"jemalloc-ctl":[C[462],"0.3.3"],"rugcom":[C[463],"0.4.1"],"in_definite":["Get @4 indefinite article ('a' or 'an') to match @4 given word. For example: an umbrella, a user.","0.2.4"],"google-calendar":["A fully ^8 & opinionated @x @c @0 @4 Google Calendar @x.",C[4]],"memzero":["A @h @0 zero-ing out $g when dropped",C[0]],"pulsectl-rs":["A higher @C @x @0 libpulse-$W",C[9]],"validators":["@Q is a @1 @0 validating @5 modeling user input @5 this @8 @s models, @Y, $3, errors @5 other &c $2 @7 @4 `validators-@b` @8.","0.23.1"],"patch-rs":["@3 patch @2","0.6.2"],"sortedvec":["a sorted vector @l enables quick lookups","0.5.0"],"ruma-identifiers-validation":["Validation logic @0 ruma-identifiers @5 ruma-identifiers-@a","0.5.0"],"sawp-flags-derive":["SAWP BitFlags Handling @5 Storage &n Macro","0.6.0"],"redbpf-probes":["eBPF probe-related @g @0 redbpf","2.0.2"],"progress":["@p @0 showing ^D @n progress bar @5 job status",C[3]],"solana-btc-spv-program":[C[560],"1.2.32"],"asi_opengl":["@3 $M @6 @0 OpenGL / OpenGLES.","0.6.2"],"stopper":["an @J ^L @5 future stopper mechanism",C[3]],"xml_tokens":["Parse XML to tokens. Serialize tokens to XML.","0.1.5"],"cargo-up":["Upgrade $r &c by automatically fixing $r @V",C[0]],"wasmer-engine-native":["Wasmer &M Engine","1.0.2"],"metrics-recorder-text":["metric recorder @0 hierarchical, ^D-@n &Z",C[8]],"google-doubleclicksearch2-cli":[C[464],C[54]],"isl29125":["Platform-&f @3 ^j @0 @4 ISL29125 low-power digital RGB color light sensor @7 IR blocking filter.",C[0]],"linux-api-exit":["@H to kernel/exit.c","0.1.1"],"amethyst":["Data-oriented game $a $A in @3",C[99]],"thin-vec":["a vec @l takes up less space on @4 stack","0.2.3"],"v-common-v8":[C[195],"0.1.82"],"gfx-renderdoc":["&W RenderDoc $T $2 by gfx-rs backends",C[0]],"base64-rs":["Encodes @5 decodes base64","0.1.1"],"^f_rbpf":[C[465],"0.2.14"],"yoga":["@3 @6 @0 Facebook's Yoga, a Flexbox layout $a","0.3.1"],"zigzag":["ZigZag $5 @5 ^P",C[0]],"find_folder":["A @d ^4 @0 finding @4 absolute path to a folder @7 a given name.",C[1]],"format-buf":["Drop-in replacement @0 @G! @e, $i can &0 to existing buffer","1.0.0"],"taskpipe":["A @d, multithreaded pipeline @1",C[4]],"libimagwiki":[C[39],C[12]],"bluez":["Control Bluetooth on &j.","0.3.1"],"aqi-nacor-schema":["@3 &o @l adhere to AQI's NACOR XML schema","2.3.0"],"piston_meta":["A DSL @R @1 @0 human readable ^D documents","2.0.1"],"define-errors":["@Q @8 is abandoned. Please open an issue against one of my github repos if you wish to take control of @4 name.","0.1.8"],"clog-cli":[C[621],"0.9.3"],"^D_trees":["@K textual &Z @0 ^0-$C $k.",C[4]],"svgtypes":["SVG @g @i.",C[7]],"derefable":["^W @b Deref/DerefMut @T",C[0]],"simulacrum_&J":["Types $2 when both $Z @5 @u mock objects @7 Simulacrum.",C[0]],"gl":["OpenGL @6",C[24]],"gstreamer-rtsp":["@3 @6 @0 GStreamer Rtsp @1",C[26]],"seax_util":["General-purpose &1 @0 compilers targeting @4 Seax @N.",C[4]],"may_waiter":["@K coroutine communication blocker",C[4]],"reactor":["A @h $G mio $i allows easily composable, but still $I, evented components","0.1.4"],"numanji":["Local-affinity first NUMA-aware ^l @7 optional fallback","0.1.5"],"wireguard-p2p":["A WireGuard peer-to-peer @c",C[1]],"iterpipes":["Compositional, pipes-style ^L &u.",C[3]],"tuftool":["Utility @0 $Z @5 signing $8 Update Framework (TUF) repositories","0.7.0"],"dxgi":["@W a convenient, higher @C wrapping of @4 DXGI APIs. Targetting dxgi 1.2 stuffthat works on ^6 7.",C[1020]],"viu":["View images right @t @4 $o.","1.3.0"],"cranelift-reader":["Cranelift textual IR reader","0.77.0"],"smoke":["A @k @0 $S","0.3.1"],"libp2p-pnet":[C[466],"0.22.0-rc.1"],"dxgi-win":["$L @6 to DXGI",C[5]],"tetsy-kvdb":["&W tetsy key-&5 $y","0.9.1"],"jsonrpc-tcp-server":["TCP/IP @U @0 ^k-RPC","18.0.0"],"exec":["Use @4 POSIX exec @Y to replace @4 running ^U @7 another","0.3.1"],"french-numbers":["Represent ^M in French @L","1.1.4"],"holochain_@F":["holochain @F",C[18]],"appinsights":["Application Insights ^N @0 @3",C[8]],"any-cache":["Cache @7 freely typed keys @5 any associated &5","0.2.3"],"slab_^0":["A vec-backed ^0 $V @7 ^0-specific generational indexes.",C[9]],"load_image":["Load PNG or JPEG @7 color profile @j","2.15.1"],"debug-derive":["Tetcore @a to @b @I debug @2.","2.1.2"],"mediumvec":["Vector @g optimized @0 space, including a 32-bit Vec","1.2.0"],"syncat-stylesheet":["&B @0 Syncat Stylesheets.","2.2.1"],"utfx":["...",C[0]],"mqtt4bytes":["MQTT 4 @F @M @5 &9",C[2]],"sgxs-loaders":["Platform-specific loaders @0 SGX enclaves.The following loaders are supported:* SGX device (&j)* Enclave @x (^6)* libsgx_enclave_common (&j & ^6)","0.3.1"],"navitia-poi-model":["Navitia's POIs (Point of Interest) model",C[2]],"tree-sitter-tags":["@p @0 extracting tag $f",C[42]],"git-mix":["Mix @4 git @w @7 AES-256-ECB mode","0.1.5"],"piet-web":["Web canvas $N @0 piet 2D ^T $F.",C[346]],"amadeus-parquet":["An Apache Parquet @2 in @3.","0.4.3"],"iowrap":["Small &w @0 @u io::Read/io::Write",C[3]],"termimage":["Display images in $r $o, kind of","1.1.0"],"umash-sys":["$L &r @0 @4 umash ^z/fingerprint @Y",C[3]],"qrcode":["QR @V encoder in @3",C[28]],"marine-utils":["Fluence Marine ^u @8",C[3]],"lyon_^3":["2D Path manipulation/transformation ^3.","0.17.6"],"whirlpool":["Whirlpool ^z @Y","0.9.0"],"pest_consume_@a":["^o @0 pest_consume","1.1.0"],"vector2math":["Traits @0 doing 2D vector geometry $B @u ^E @g",C[15]],"enum_^L_^H":["A @i @B. @Q @X handles @V generationfor @4 `enum_stream` @e.\"",C[0]],"jrsonnet-stdlib":["jsonnet ^E @1 packaged as @8","1.0.0"],"j4rs":["j4rs stands @0 'Java @0 @3' @5 allows effortless calls to Java @V, @t @3",C[15]],"jieba-rs":["$8 Jieba Chinese Word Segmentation Implemented in @3","0.6.5"],"sta":["A set of additions I think go well @7 @4 ^E @1.","0.2.5"],"diskonaut":["Terminal disk space visual navigator",C[16]],"llvm-bitcode":["LLVM Bitcode @i in @3",C[4]],"inflate":["DEFLATE ^P","0.4.5"],"intel-seapi":["Mid-@C @h @0 Intel Single Event @x (SEAPI) @5 ittnotify, as $2 by Intel VTune","0.3.1"],"glyph_brush_layout":["Text layout @0 ab_glyph","0.2.3"],"asn1":["ASN.1 (DER) @i @5 writer @0 @3.","0.8.5"],"galvanic-mock":["A behaviour-driven mocking @k @0 ^G traits.Create mocks @0 (&l) $3 in a behaviour-driven &D mocking framework.Define @4 behaviour of mocks @5 expected method calls @u argument patterns.Supports mocking of ^G $3 @5 ^G methods.Requires: nightly","0.1.3"],"$6_mtproto_@b":["$q @e ^t @0 serde_mtproto","0.3.1"],"gloo-console":["Convenience @8 @0 ^p @7 browser's console",C[3]],"gfx_window_metal":["Metal window @0 gfx-rs","0.6.0"],"proc-macro-hack":[C[1090],"0.5.19"],"gitclass":["Tool @0 teachers to manage classes @u git",C[7]],"shrinkwraprs":["Auto-@b @0 @3 conversion $3 -- make ^p @7 newtypes a breeze",C[1]],"resiter-dpc-tmp":["Helper @8 @0 ^a iterators &6 result [dpc's temporary release]",C[1]],"coins-bip32":["Bip32 (@5 related BIPs) in @3",C[1]],"findshlibs":["Find @4 set of &J &4 loaded in @4 current ^I @7 a cross @N @x",C[12]],"addr":["A @1 @0 @R domain names",C[23]],"fwdansi":["Forwards a byte $c @7 ANSI escape @V to a termcolor $o","1.1.0"],"conan":["A @3 @h of @4 conan C/C++ @X &F (conan.io) to simplify usage in $j scripts",C[3]],"deno-libffi-sys":[C[736],"0.0.7"],"egui_wgpu_$N":["Backend @V to $d egui @7 wgpu.",C[15]],"rlbot":["RLBot @6 @0 @3","0.5.0"],"mgf":["A 3D collision @5 physics @k @0 video games.","1.4.0"],"^y_@F":[C[467],C[0]],"ternary":["Kleene Logic within Rust's $l @O","0.1.3"],"hhmmss":["Format $z @5 duration in chrono, std::$z @5 $z as HH:MM:SS @5 HH:MM:SS.xxx",C[0]],"idea":["IDEA block cipher",C[2]],"rpds":["Persistent @w $k @7 structural sharing",C[13]],"confluence":["Access @5 modify Atlassian Confluence pages @t @3","0.4.1"],"find_git":["A cross-@N @1 $i returns @4 full path to @4 Git $Q if it can be found.","1.2.0"],"crossgen":["Cross compilation template @B","0.6.0"],"netopt":["@W options to work @7 tcp or ssl streams @5 has a choice in $t.","0.1.3"],"gulkana":["A @d ^Q","1.3.3"],"async-broadcast":["Async broadcast channels","0.3.4"],"sse":["@d SSE @U/@c",C[3]],"slog-kvfilter":["Key ^V @5 Regex @n filter Drain @0 slog-rs","0.7.0"],"msp430-rt":["Minimal @I / startup @0 MSP430 $s","0.2.4"],"debug-cell":["A clone of @4 ^E library's `RefCell` $l @7 extra debugging @j innon-release builds. Whenever a borrow ^q happens @4 current locations ofwhere known borrows were created will be printed out as well.","0.1.1"],"saturating":["@W Saturating, an intentionally-saturating arithmetic @h.",C[0]],"openssh-keys":["read @5 &0 OpenSSH public keys","0.5.0"],"msql-srv":["@H @0 emulating a MySQL/MariaDB @U","0.9.6"],"bounded-integer-macro":["Proc @e @0 `bounded-integer`. Do not $d directly.","0.5.0"],"closed01":["@W checked floating point $B within @4 range [0,1]","0.5.0"],"cretonne-faerie":["Emit Cretonne &Z to &8 object @z @7 Faerie","0.13.2"],"squark-macros":["^o $C JSX to help $K Squark $U","0.7.0"],"cargo-kcov":["Cargo &i to run kcov to get coverage report on &j","0.5.2"],"gaia_assetgen":["Prepares Gaia assets, @0 $d in $j scripts",C[9]],"airkorea":["Airkorea mobile page crawler","0.4.3"],"google-coordinate1":[C[468],"2.0.8+20150811"],"simpath":["Search @0 @z on a path defined in an ^K variable","2.3.0"],"graph-io-gml":["GML (Graph Modelling &R) loader",C[1]],"vtd_xml":["VTD-XML, $I XML @i","0.3.4"],"rkyv_@b":["&n @e @0 rkyv","0.7.20"],"directx":["High-@C @3 @h @0 @4 DirectX @x.","0.0.1"],"cargo-sym":["Prints various $Q symbols in $r @8","0.0.6"],"ed":["Encode @5 Decode $3",C[8]],"allegro-sys":["Allegro 5 @F @1 @3 $W","0.0.41"],"panic_rtt":["Panic @u @4 JLINK RTT @9",C[1]],"pratt":["A Pratt @i @0 @3",C[1]],"autocxx-build":[C[227],C[28]],"libp2p-mdns":[C[469],"0.32.0-rc.1"],"flamegraph":["A @d @S &i @0 $E flamegraphs, @u inferno under @4 hood",C[2]],"lut":["@s lookup tables @5 helps @7 constructstructing (@5 merging) more of them","0.1.1-unstable"],"ra_ap_^B_@e_srv":["TBD","0.0.79"],"coreaudio-rs":["A &E @f @m @0 Apple's CoreAudio @x.",C[13]],"black-jack":["DataFrame / Series / general @w &u in @3",C[0]],"kqueue":["kqueue @m @0 BSDs","1.0.4"],"jsonwebtoken":["Create @5 decode JWTs in a strongly typed way.","8.0.0-beta.4"],"interleaved-ordered":["Combine two ordered iterators ^d one","0.1.1"],"smol-timeout":["A way to poll a future until it or a timer completes.","0.6.0"],"simple-mutex":["A mutex more ^Z than std @5 simpler than parking_lot","1.1.5"],"fastpbkdf2":["A @f $W @0 fastpbkdf2. @Q is a PBKDF2 @7 HMAC-SHA1, HMAC-SHA256 @5 HMAC-SHA512 @5 is faster than other @T.",C[0]],"noble-indices":["FABRIC indices ^A noble","2.0.0"],"webdav-handler":["handler @0 @4 ^s @5 Webdav protocols @7 filesystem $N",C[3]],"viuer":["Display images in @4 $o","0.5.2"],"&V_in_$l":["a @1 @0 $I &V @M","1.1.1"],"promise":["A @d future/promise @1 @0 @f","0.0.4"],"intertrait-macros":["^o @0 intertrait @8, $i allows @0 direct casting $t $y objects",C[8]],"display-error-chain":["Formats a ^E ^q @5 its sources",C[0]],"rsjni":["@3 @6 to @4 Java &M Interface",C[2]],"public-ip":["Find @4 public IP address of a device",C[5]],"connectr":["A super ^O Spotify controller.","1.1.2"],"seq_io":["Fast FASTA, FASTQ @5 FASTX @R",C[448]],"bluez-generated":["Generated @6 @0 talking to BlueZ on &j.",C[5]],"naia-server-socket":["An $F to provide a $u @x &6 either a UDP socket or a &t @l can establish WebRTC connections",C[120]],"blake2-rfc":["A ^X @3 @2 of BLAKE2 @n on RFC 7693.","0.2.18"],"yew-router-route-parser":["$8 @i @0 @4 routing syntax $2 @7 yew-router",C[23]],"$P_@j":["^r ^N @0 @3 - ^r Support @ 2013-04-15",C[27]],"ttf-parser":["A high-@C, $M, zero-allocation TrueType font @i.",C[15]],"allegro_dialog":["Allegro 5 dialog addon @3 @h","0.0.41"],"mqtt-protocol":["MQTT ^c @p",C[17]],"bevy_rapier3d":["3-dimensional physics $a in @3, official Bevy $Y.",C[16]],"winapi-wsapoll":["Safe @h $G WSAPoll","0.1.1"],"annotate-snippets":["@p @0 $K @V annotations","0.9.1"],"dinghy-build":["Cross-compilation made easier - &w @0 build.rs scripts","0.4.62"],"reproto-backend-doc":[C[89],"0.3.36"],"lorikeet":["a parallel ^7 runner @0 devops",C[24]],"moho":["Barebones @3 Game @p","0.0.9"],"realfft":["Real-to-complex FFT @5 complex-to-real iFFT @0 @3","2.0.1"],"galvanic-test":["A $S @k @0 setting up @5 tearing up ^7 fixtures/environments @7 @j @0 parameterised ^7 cases.This @8 is part of galvanic---a @q ^7 @k @0 @3.",C[3]],"hts-sys":["@Q @1 @s HTSlib @6.","2.0.2"],"google-autoscaler1_beta2":[C[999],"2.0.8+20150629"],"wasmer-runtime-near":[C[470],C[43]],"heapsize_$Y":[C[797],"0.1.6"],"http-body":["Trait representing an $n, streaming, ^s request or response body.","0.4.4"],"piston-music":["A high @C @1 @0 playing music @5 sound effects","0.26.0"],"determinator":["Figure out $i packages changed $t two commits to a workspace.","0.6.0"],"&x_reader":["A @3 @1 @0 easily navigating forward, backward or randomly through @4 lines of huge @z.","0.5.1"],"seed-icons":["Get icons &C @0 Seed","0.4.2"],"^0_^z_@b":["$q @b @a to accompany @4 tree_hash @8.","0.3.1"],"ceph_usage":["Helper @1 @0 ceph-usage $Q","0.1.9"],"uil":["User @m @1 oriented @0 games. It includes user @m languages.","0.0.3"],"nlp-annotations":["A $b of $u NLP annotation schemes such as part-of-speech tagsets, dependencygrammar relations, @5 sets of morphological features.",C[4]],"ricom":["DICOM Toolkit",C[4]],"embed_js_$j":["Minimalist ^O inline JavaScript @0 @3 @P targeting $x via @4 `wasm32-unknown-unknown` target.This is @4 @8 @0 $j scripts. For @4 js @e itself, see embed_js.","0.1.4"],"farmhash":["Farmhash is a successor to Cityhash (also @t Google). Farmhash, $C Cityhash before it, $d ideas @t Austin Appleby's MurmurHash.","1.1.5"],"download-lp":["a @1 @0 &x downloading of @z.",C[3]],"pyo3-derive-backend":[C[471],"0.12.5"],"lambda_@I_errors":["@3 @I errors @0 ^r Lambda","0.1.1"],"clap-v3":[C[472],C[415]],"git-object":["Immutable @5 mutable git objects @7 ^P @5 $5 @j",C[23]],"redox_uefi_alloc":["UEFI allocation @j",C[4]],"tiled-json-rs":["A @8 to parse @5 @o @7 Tiled editor ^k @z","0.2.6"],"webp":["WebP conversion @1.",C[3]],"bmp085":["A @3 ^j @0 @4 Adafruit BMP085/BMP180 thermometer/barometer device.",C[4]],"hamlrs":["A @3 @1 @0 @R [Haml](&z://haml.info) templates","0.4.3"],"swc_ecma_transforms_classes":["Helper @0 transforms @0 @4 swc ^g","0.27.0"],"pem":["Parse @5 encode PEM-encoded @w.","1.0.1"],"tracing-test":["Helper @y @5 @a @l allow @0 easier $S of $R @l $d `&g`.",C[0]],"actix-form-data":["Multipart Form Data @0 Actix Web","0.6.0-beta.10"],"bevy_kira_audio":["Bevy $Y @0 dynamic audio","0.6.0"],"tectonic_status_base":["Basic @g @0 reporting status &y to a user.",C[3]],"jet":["Jet @x Client @0 @3","0.2.3"],"xi-core-lib":["@p ^F @0 xi-@F",C[1]],"hdfs":["libhdfs $W @1 @5 $M @3 APIs","0.0.4"],"string-builder":["A @d $c &I $l",C[3]],"boring-sys":["$L @6 to BoringSSL","1.1.1"],"orbtk-theme":["Default theme of OrbTk.",C[204]],"pallet-transaction-payment-rpc-runtime-api":["RPC @I @x @0 transaction payment FRAME &v","3.0.0"],"ring-pwhash":["deprecated","0.99.0"],"seed-bootstrap":["Components @0 @u Bootstrap toolkit @7 Seed @k",C[3]],"^f_libra_@L_e2e_tests":["Libra @L e2e tests",C[10]],"remove_dir_all":["A $M, reliable @2 of remove_dir_all @0 ^6","0.7.0"],"redox_uefi":["UEFI @j @1",C[4]],"xml_oxide":["XML @i @2 @0 SAX @m: xml_sax","0.0.6"],"moniker":["^W @b variable $W @5 alpha equivalence @0 abstract syntax trees","0.5.0"],"ed25519":["Edwards Digital Signature Algorithm (EdDSA) &6 Curve25519 (as specified in RFC 8032)","1.2.0"],"quinn":["QUIC transport @9 @2 @0 Tokio","0.7.2"],"har":["A ^s Archive @G (HAR) @M & &9 @1.","0.7.1"],"wedpr_l_&Q_^z_keccak256":["@p of WeDPR &J Hash Function implement by keccak256.","1.1.0"],"sel4":["High-@C @3 @m to @4 seL4 kernel","0.0.12"],"genpass":["A @d yet robust commandline &L password @B.","0.4.18"],"ternop":["A tiny @e @l implements a ternary operator @0 @3","1.0.1"],"sc-consensus-epochs":[C[473],"0.9.0"],"tokio-codec":["^e @0 $5 @5 ^P frames.",C[30]],"aprs":["Automatic Position Reporting System (APRS) @9 $h","0.3.1"],"easer":["Tiny @1 imlementing Robert Penner's easing @y",C[5]],"cuba":["A @3 @h @0 @4 C Cuba $T @1","0.2.4"],"nzb":["Get Things Done® @7 nzb, a beautiful $o @m @0 Nozbe. Inspired by Wunderline","0.5.3"],"rust-xmlrpc":["Minimal @3 XML-RPC @1","0.0.6"],"iup-sys":["Raw IUP @6 @0 @3","0.0.3"],"follow":["Watch @z @5 print what is $A to them. Similar to 'tail -F'.","0.1.5"],"target_$j_^u":["&T: Use Cargo ^K variables `CARGO_CFG_TARGET_*`","0.3.1"],"tls-api-stub":["TLS @x @2 @l returns ^q on any operation","0.7.0"],"firestorm-core":["Internals @0 firestorm","0.1.1"],"tract-onnx-opl":[C[94],"0.15.5"],"i3wsr":["Change i3-wm workspace names @n on its contents","2.0.1"],"notify_send":["@Q has been renamed ^d notify-@f. Dev will go on there.","0.0.5"],"validatron_@b":[C[474],C[5]],"nrf52810-pac":["Peripheral Access Crate @0 Nordic's nrf52810 microcontroller",C[12]],"cranelift-frontend":[C[475],"0.77.0"],"jsonrpc-core-client":[C[476],"18.0.0"],"g2p":["A @8 to create @g @l implement $I finite field arithmetic.",C[2]],"noble-randomness-collective-flip":["FABRIC randomness collective flip noble","2.0.0"],"hid-sys":["Contains @Y $h @0 @4 ^6 @x @1 hid. See winapi @0 @g @5 constants.",C[3]],"miniscript":["Miniscript: a subset of Bitcoin Script designed @0 analysis","6.0.1"],"barcoders":["A barcode-$5 @1","1.0.2"],"chalk-derive":["A ^t @8 @0 $d by chalk $R @0 `@b` @a.","0.72.0"],"parallel-gnuplot":["Parallel calls to GNUPlot. Calls @4 same GNUPlot script once @0 each @w $0 block.",C[8]],"gazebo_@b":["&n @a @0 @4 Gazebo @1","0.4.1"],"$6_item":[C[477],C[3]],"cereal":["A @d @w serialisation @1","0.3.1"],"tink-awskms":[C[478],C[5]],"chrono-tz":["TimeZone @T @0 @f-chrono @t @4 IANA ^Q","0.6.0"],"nano-vanity":["Generate NANO cryptocurrency addresses @7 a given prefix","0.4.13"],"instant-segment":["Fast English word segmentation","0.8.3"],"libra-canonical-serialization":["Libra Canonical Serialization (LCS)",C[0]],"csfml-network-sys":["@H to csfml-^9",C[3]],"groupy":[C[479],"0.4.1"],"dmg":["@K attaching/detaching of macOS disk images","0.1.1"],"i54_":["A 54-bit signed integer $F. Created @0 easier interop @7 GraphQL @5 Javascript.",C[3]],"classfile-parser":["A @i @0 Java Class @z $A in @f","0.3.5"],"oso":["oso is an open source policy $a @0 authorization that’s ^b in $r $U",C[74]],"avocado_@b":[C[879],"0.6.0"],"fd":["File descriptor @E","0.2.3"],"tri-mesh":["A triangle mesh @w $V including basic $B.","0.5.0"],"soloud-derive":[C[480],C[2]],"futures-lite":["Futures, streams, @5 @J I/O combinators","1.12.0"],"gmp":[C[634],"0.3.1"],"ang":[C[481],"0.5.0"],"ark-bls12-377":["$8 BLS12-377 pairing-&E elliptic curve",C[1]],"zpatial":["Algorithms @0 Spatial Acceleration @5 Geometries.","0.4.3"],"cargo-ensure-installed":["Like @S install but if you already have a suitable $4, simply leaves it as-is.",C[5]],"solana-storage-api":["Solana Storage ^U @x","0.20.5"],"imgui-ext-derive":["$q @e @0 @4 imgui-ext @8.",C[1]],"iron_session":["Session &G @0 @4 iron @k.","0.0.4"],"rbxpacker":["Generates installation scripts @0 Roblox &4","1.2.2"],"tzdata":["see hourglass","0.4.1"],"linea":["Linear Algebra: Vectors @5 Matrices","0.9.6"],"bitalloc":["Allocation managing @1 @n on bitmap.This @1 does not include bitmap @1.","0.0.1"],"samplerate":["A @1 @n on libsamplerate @0 converting samplerates","0.2.4"],"abscissa":["Application microframework @7 @j @0 @D-$D option @R,$H, ^q ^a, &H, @5 $o interactions.This @8 contains a CLI $w @0 $E new @P.",C[482]],"by_address":["Wrapper @0 comparing @5 hashing pointers by address","2.0.0"],"teardown_^0":["A $Q search ^0 @l supports $I clone @5 delete-range $B","0.6.6"],"cdrs-tokio":["Async Cassandra DB ^j $A in @3","5.0.0"],"dcv-color-primitives":["a @1 to perform image color model conversion",C[1]],"webfinger":["A @8 to help you fetch @5 serve WebFinger resources","0.5.0"],"ntru":["@v of @4 NTRUEncrypt $1. Interface to libntru.","0.5.6"],"sstable":["Sorted String Tables, an on-disk @G @0 storing immutable maps consisting of $c,$c pairs, @5 retrieving ^V by key efficiently. @Q @8 also features bloom filters, checksums @5 skipping bad blocks. It is @n on @4 @V implemented @0 @4 rusty_leveldb @8.","0.8.2"],"enum_$3_@a":["$q @a @l adds $7 to enums by deriving $3 @t @4 @8 `enum_traits`","2.0.0"],"$P_servicediscovery":["^r ^N @0 @3 - ^r Cloud Map @ 2017-03-14",C[27]],"grin_wallet_config":["Configuration @0 grin wallet , a @d, private @5 scalable cryptocurrency @2 @n on @4 MimbleWimble chain @G.","5.0.1"],"http-connection":["Trait representing ^s connections.",C[0]],"esp8266-hal":["An experimental hardware $F layer @0 @4 esp8266","0.5.0"],"updns":["DNS proxy ^4","0.1.5"],"glm":["GLSL mathematics @0 @3.","0.2.3"],"roman":["Convert $t integers @5 roman numerals","0.1.6"],"openssl-errors":["Custom ^q @1 @j @0 @4 openssl @8.",C[3]],"insult":["insult is @4 @D $D \"$w\" to insult you @7 a \"Oh... Sir! $8 Insult Simulator\"-$C fashion!","2.0.3"],"macrotest":["Test harness @0 @e expansion","1.0.8"],"smart-leds-trait":["A $y @0 ^5 effects, modifiers @5 drivers @0 programmable leds",C[5]],"gcast-protocol":[C[483],"0.1.5"],"nu-cli":[C[484],"0.39.0"],"disk-types":["&O $3 @5 @g @0 ^a block &N, partitions, $0 systems, etc.","0.1.5"],"exonum-crypto":["Cryptography related @g, constants, $3 @5 @y.","1.0.0"],"sozu-command-lib":[C[716],C[15]],"aktoro-channel":["Channels @0 aktoro's ^J $d.","0.1.0-alpha.8"],"radix64":["A base64 @1 by another name","0.6.2"],"rogcat":["A adb logcat @h @5 log processor","0.4.1"],"elf-utilities":["^e @0 @R,$E,analyzing ELF","0.2.20"],"ruspiro-timer":["@Q $R @s @d timing @y to pause @4 current &u @0 a specific amount of $z. $8 @F pausing is called on will block.","0.5.2"],"snarkvm-marlin":[C[753],"0.7.9"],"vint64":["@K @5 ^Z variable-length integer $5 ^i @7 somevariants of VLQ (Variable-Length Quantity)","1.0.1"],"php_$6":[C[485],"0.6.0"],"gauc":["Couchbase @3 Adapter / CLI","0.8.1"],"encrypted-dns":["A modern encrypted DNS @U (DNSCrypt v2, Anonymized DNSCrypt, DoH)","0.9.1"],"signal-backup-decode":["A @d ^4 to decode signal backups","0.2.3"],"slice-ext":["Useful &p to slices @5 iterable @g","0.1.4"],"rocket-mongo-file-center-download-response":["@Q @8 @s a response struct $2 @0 @c downloading @t @4 File Center on MongoDB.","0.7.1"],"queues":["Efficient FIFO Queue @w $k","1.1.0"],"crusadertest2":[C[486],C[3]],"license-generator":["A Command $D ^4 @l ^n `LICENSE` $0.",C[7]],"trailer":["Store a $l @7 an associated buffer in contiguous $g",C[4]],"jomini":["Low @C, $J oriented @i @0 save @5 game @z @t EU4, CK3, HOI4, Imperator, @5 other PDS titles","0.16.4"],"cosmrs":["Transaction &I @5 signer @0 Cosmos-@n blockchains",C[5]],"deno-libffi":[C[487],"0.0.7"],"nu-value-ext":["Extension $3 @0 ^V in Nushell","0.39.0"],"icalendar":["Early, minimal icalendar @8.",C[13]],"rifling":["A @1 @0 $Z Github/Gitlab webhook listener",C[2]],"tokio-executor":["Future execution $9",C[30]],"cernan":["A telemetry @5 &H aggregation @U.","0.9.0"],"tokio-simplified":["A simplified @x to interract @7 $v sinks @5 streams",C[8]],"wesers":["a @d ^s/HTTPS @U in @3","0.4.1"],"linereader":["An ^Z buffered $D reader.",C[2]],"mles-client":["Mles-@c, a distributed @w @9 example (chat) @c/ws-proxy","1.1.6"],"cxx-gen":["C++ @V @B @0 integrating `cxx` @8 ^d higher @C &1.","0.7.56"],"chalk-macros":["^o @0 Chalk",C[13]],"sallyport":["@x @0 @4 Enarx hypervisor-microkernel boundary",C[0]],"imxrt-hal":["Hardware $F layer @0 all NXP i.MX RT $s","0.4.4"],"ieql":["An open ^E @5 @2 @0 monitoring Internet content",C[1]],"postgres-openssl":[C[788],"0.5.0"],"cargo-platform":["Cargo's representation of a target @N.",C[4]],"parity-secp256k1":[C[488],"0.7.0"],"iso_currency":["ISO 4217 currency codes","0.4.2"],"qrcodegen":["High-quality QR Code @B @1","1.7.0"],"audio_&d_priority":["Bump a &d to real-$z priority, @0 audio work, on &j, ^6 @5 macOS","0.23.4"],"beef":["More compact Cow","0.5.1"],"sixtyfps-rendering-backend-gl":["OpenGL &S $N @0 SixtyFPS","0.1.4"],"transitfeed":["GTFS public transit decoder/encoder @5 @E",C[1]],"bestbuy":["Bestbuy Marketplace @x @c.","0.1.1"],"netio":["Alternative @2 of parts of `std::io`, better suited @0 blocking IO &6 networks.","0.6.1"],"kick":["Tiny reactive @O @0 @3. Inspired by sodium",C[4]],"precomputed-hash":["A @1 intending to be a base &m to expose a precomputed ^z",C[3]],"minisign-verify":["A &7 @8 to verify Minisign signatures.",C[3]],"blake2":["BLAKE2 ^z @y","0.9.2"],"lcs-diff":["Compute differences $t two slices @u LCS $1.","0.1.1"],"base_url":["A @h $G @4 Url $l @0 &e urls","1.1.0"],"grid_search_cardinal_point_to_point":["Search $1 @0 finding @4 shortest path $t two points in a uniform-cost cardinal grid","0.3.1"],"cargo-bisect-rustc":["Bisects &K toolchains @7 rustup","0.6.1"],"variants":[N,C[1]],"futures-diagnose":["Wraps $G a Spawn @5 @s lots of diagnostics","1.0.1"],"batched-fn":["Middleware @0 serving deep learning models @7 batched prediction",C[8]],"i3nator":["i3nator is Tmuxinator @0 @4 i3 window &F","1.2.0"],"event_@f":["Lightweight non-blocking IO @j windows @5 linux","0.1.1"],"robotparser":["robots.txt @i @0 @3","0.10.2"],"tenjin":["A $I @5 @d template $a.","0.5.1"],"ommui_relm_widgets":["OMMUI relm widgets - deprecated","0.26.0"],"nanovg-sys":["&M @6 to @4 NanoVG @1","1.0.2"],"keepass":["KeePass .kdbx ^Q $0 @i","0.4.9"],"pact_consumer":["Pact-@3 ^F @l @s @j @0 $O consumer pact tests","0.8.0-beta.3"],"lua_bind_^z":["An @2 of @4 lua @6 ^z @t Smash Ultimate","1.0.1"],"user-error":["UserFacingError is an ^q @8 @l allows you to pretty print $r errors @5 ^q chain @0 consumption by @4 end user. If you implement @4 UFE $y, @4 default @2 will let $r print $r ^q nicely to @4 TTY. There is also @4 UserFacingError $l @l most std Errors can be converted ^d, or @l you can $d directly.","1.2.8"],"zub":["A $I, stack-@n virtual machine @0 dynamic languages, @7 an intuitive IR-&I, garbage $b @5 NaN-tagging.","0.3.14"],"jsonpath_lib":[C[489],C[1]],"acpi":["@p @0 @R ACPI tables","4.0.0"],"dx_@F":["Core $7 required by all @4 dx-rs $R. dx-rs is a DirectX @h @0 @f.",C[1]],"thrussh":["A @c @5 @U SSH @1.","0.33.5"],"st-map":["Runtime @0 a stack-alocated map","0.1.4"],"spirit-daemonize":["Spirit &w @5 config fragments to daemonize","0.5.1"],"fbx_direct":["Low-@C FBX @1","0.6.4"],"marine-rs-sdk-main":["Contains logger, allocators @5 several other modules @0 marine-rs-sdk","0.6.14"],"tau":["$8 important mathematical constant tau","1.0.4"],"extsort":["External sorting (i.e. on disk sorting) capability on arbitrarily sized iterator","0.4.2"],"k8s-openapi":["@H @0 @4 Kubernetes @c @x","0.13.1"],"ecpool":["Thread pool @0 managing executions of erasure coding","1.0.2"],"secret-service":["@p to @m @7 Secret Service @x","2.0.1"],"assert_fs":["Filesystem fixtures @5 assertions @0 $S.","1.0.6"],"varisat-checker":["Proof checker @0 proofs ^n by @4 Varisat SAT solver",C[8]],"@f_basic_matrix":["A @d N*N Matrix @w $V to help @7 constructing graphs","0.0.4"],"fce":["Fluence Compute Engine","0.5.0"],"phantom-enum":["A @d @e @1 @0 $Z phantom enums.","1.0.0"],"pallet-sudo":["FRAME &v @0 sudo","3.0.0"],"vdot":["Create $r .env @z @u HashiCorp Vault.","0.4.10"],"hwloc":["@3 @6 @0 @4 hwloc hardware locality @1.","0.5.0"],"ilc-base":[C[164],C[3]],"psapi-sys":["Contains @Y $h @0 @4 ^6 @x @1 psapi. See winapi @0 @g @5 constants.","0.1.1"],"scale_documentation_@i":["a ^B @e to parse @4 structured SCALE documentation ^d @3 datastructures",C[4]],"google-videointelligence1_beta1":["A @q @1 to @o @7 Cloud Video Intelligence (@9 v1beta1)","2.0.8+20171122"],"kaos":["Chaotic $S harness","0.1.1-alpha.2"],"unix_socket":["Unix domain socket @6","0.5.0"],"ntp-parser":["&B @0 @4 NTP @9","0.6.0"],"dhat":["A @1 @0 heap profiling @5 ad hoc profiling @7 DHAT.",C[8]],"remote-hal":["a ^k RPC @n remote ^b-hal @2 including a daemon, ^y, @5 @1","0.5.4"],"tester":[C[503],"0.9.0"],"slice-deque":["A double-ended queue @l Deref's ^d a slice.",C[1]],"pharos":["Observer pattern $i generates a @Z 0.3 ^L of events","0.5.2"],"vtcol":["Set &j console color scheme","0.42.2"],"lines_@t_$0":["@K @Y to get a vector of $c @7 lines of a $0",C[4]],"fallible_&C":["a @8 $i adds fallible allocation ^S to std &C","0.4.3"],"hacl-star":["HACL*, a formally verified ^w @1 @0 @3 ($W to hacl-c).",C[0]],"lunaria-api":["A @3 @x @c @0 @4 video game Lunaria",C[5]],"arduino_mkrzero":["Board Support @8 @0 @4 Arduino MKRZERO",C[16]],"mtbl":["@H to @4 MTBL C @1 (&Y://github.com/farsightsec/mtbl)",C[5]],"raze":["@3-&E @x @0 @0 Backblaze's B2 $N - Includes raw calls @5 &w","0.4.1"],"ruver":["My Operation System homework.","0.1.7"],"aur-depends":["A libary @0 resolving aur &c","1.0.3"],"backr":["A ^U @l backs up user @w @l matches a regular expression","0.5.0"],"either":["$8 enum `Either` @7 variants `Left` @5 `Right` is a general purpose sum $l @7 two cases.","1.6.1"],"eiktyrner":["@K &z @c @n on Hyper. Mainly ment to consume ^k apis.","0.7.0"],"compu":["@3 Compression @1 @7 ^G @m","0.5.3"],"wrecked":["A $o ^T @1","1.0.8"],"assert2-macros":["$e @a @0 assert2","0.3.6"],"fstrings-proc-macro":[C[1011],"0.2.4-rc2"],"rigel":["Minimal HMAC-SHA512 @2 optimized @0 ^b &N",C[8]],"btrfs":["Interface @0 BTRFS ioctls etc","1.2.2"],"tokio-stream":["^e to work @7 `Stream` @5 `$v`.","0.1.7"],"brainfuck_rs":["Brainfuck @i @5 interpreter @u nom","2.0.0"],"startin":["A Delaunay triangulator @0 terrains.","0.5.1"],"sapper_std":["Wrappers @0 rapid coding @0 sapper &e @k.",C[5]],"cef-sys":["Chromium Embedded Framework raw @6 @0 @3. Generated @u @f-bindgen.","0.0.3"],"lazy-init":["Lazy initialization.","0.5.0"],"google-tagmanager1-cli":[C[490],C[63]],"blas":["$8 @X @s &r @0 BLAS (Fortran).",C[74]],"bayard-proto":["^c Buffers @0 Bayard","0.8.2"],"graphql_@c_^H":[C[491],C[13]],"fingertrees":["Immutable persisten finger trees","0.2.4"],"totp-lite":["A @d, correct TOTP @1.","1.0.3"],"plugger-types":["Plugger @g","0.1.5"],"cargo-strip":["Strip @3 binaries created @7 @S","0.2.3"],"whatsys":["Determine @4 kernel $4",C[3]],"new-tokio-smtp":["extendible smtp @2 @0 $v","0.9.1"],"codeviz_python":[C[75],C[8]],"sp-finality-grandpa":[C[492],"3.0.0"],"leb128":["Read @5 &0 DWARF's \"Little Endian Base 128\" (LEB128) variable length integer $5.","0.2.5"],"native-dialog":["A @1 to display dialogs. Supports GNU/&j, BSD Unix, macOS @5 ^6.","0.5.5"],"redpitaya":["Crate to manipulate redpitaya","0.31.0"],"locale-codes":["locale-related codes/identifiers @5 any standards-@n $f concerning them.",C[1]],"uci":["A @1 to programmatically communicate @7 UCI ^i chess engines",C[4]],"smol_str":["&7-$c optimized $c $l @7 O(1) clone","0.1.18"],"lmdb-rkv":[C[726],C[24]],"prometheus-static-metric":["Static metric ^t @E @0 @f-prometheus.","0.5.1"],"hlua":["Zero-cost high-@C @h @0 Lua","0.4.1"],"ctest":[C[493],"0.2.22"],"inlinable_$c":["$8 `inlinable_string` @8 @s @4 `InlinableString` $l -- an owned, grow-able UTF-8 $c @l stores &7 $p inline @5 avoids heap-allocation -- @5 @4 `StringExt` $y $i abstracts $c $B &6 both `std::$c::String` @5 `InlinableString` (or even $r own custom $c $l).","0.1.14"],"hashlink":[C[494],"0.7.0"],"gridiron":["@3 finite field @1 @7 fixed size multi-word ^V.","0.9.0"],"ghakuf":["A @3 @1 @0 @R/$K SMF (Standard MIDI File).","0.5.6"],"ockam_transport_tcp":["TCP Transport @0 @4 Ockam Routing ^c.","0.31.0"],"cp437":["Module @0 MSDOS (CP437) Encoding","0.1.1"],"trace-error":["Extensions to Rust's ^q @O to automatically include backtraces","0.1.5"],"risky":["RISC-V instruction $5 @1",C[1]],"roaring":["&z://roaringbitmap.org: A better compressed bitset - ^X @3 @2",C[7]],"msgpack-schema":["A specification @L @0 MessagePack @w @G","0.4.1"],"druid-shell":["Platform abstracting $U shell $2 @0 druid toolkit.","0.7.0"],"proc-maps":["Helper @8 @0 getting virtual $g maps @t processes","0.1.9"],"istring":["A replacement @0 String @l allows storing short $p of length up to sizeof() - 1 ^Y a heap allocation",C[8]],"opentelemetry-otlp":["Exporter @0 @4 OpenTelemetry Collector","0.9.0"],"fuchsia-cprng":["@3 @8 @0 @4 Fuchsia cryptographically secure pseudorandom &a @B","0.1.1"],"to_method":["A $w micro-@8 @0 @u Into more ergonomically.","1.1.0"],"$P_$U_autoscaling":["^r ^N @0 @3 - Application Auto Scaling @ 2016-02-06",C[27]],"sanitizer":["A $b of &P @5 @a to sanitize struct fields","0.1.5"],"imap":[C[495],"3.0.0-alpha.4"],"oxygengine-animation":["Animation ^F @0 Oxygen Engine",C[42]],"block-utils":["^e to work @7 block &N. Formatting, getting device info, identifying $l of device, etc.","0.10.3"],"termion":["A bindless @1 @0 manipulating terminals.","1.5.6"],"google-clouddebugger2-cli":[C[496],C[497]],"simple-logging":["A @d logger @0 @4 log facade","2.0.2"],"skulpin-app-winit":["A winit-@n $U layer @0 skulpin",C[24]],"hyper-socks2-mw":[C[498],"0.4.4"],"oxidation":[C[811],"0.0.1"],"qstring":["Query $c @i","0.7.2"],"sarkara":["A experimental post-quantum cryptography @1.","0.10.0-alpha.4"],"relm-state":["Non UI part of relm",C[72]],"rendy-wsi":["Rendy's windowing @j","0.5.1"],"plotly":["A plotting @1 powered by Plotly.js","0.6.0"],"decent-synquote-alternative":["An alternative to @4 syn @5 quote $R @0 when you want to &0 $r own @b ^B-@e. It was originally @n on @4 microserde @V, but has grown a lot since then. It is not as @q, documented, or well-tested as syn or quote, but it fits my needs, @5 it compiles quite quickly.",C[2]],"haikunator":["Generate Heroku-$C &L names to $d in $r @3 @P",C[4]],"convex_hull":["An @2 of a 3D convex hull $1. Comes @7 an example","0.2.3"],"cabot":["@K ^s Client.","0.7.1"],"kg-utils":["Various &C @5 @E.",C[2]],"raui-json-renderer":["RAUI renderer @0 ^k @G","0.38.2"],"gstreamer-mpegts-sys":["$L @6 to libgstmpegts-1.0",C[26]],"watchexec-cli":["Executes commands in response to $0 modifications","1.17.1"],"colored-diff":["Format @4 difference $t two $p @7 ANSI colors","0.2.3"],"mongoc-sys":["Sys @X @7 installer @5 @6 @0 mongoc","1.17.5"],"adi_gpu_opengl":["OpenGL @2 @0 adi_gpu",C[16]],"axon":["run a @D $C a $Y @7 rpc",C[1]],"glicko2":["@v of @4 glicko2 rating @O","0.3.1"],"withers_@b":["A @e to implement wither &P @0 properties of a struct.",C[3]],"libdoh":["DoH @5 Oblivious DoH @1 @0 @4 @f-doh app","0.9.2"],"rudano":["A @w @M @G as similar as possible to Rust's own syntax",C[0]],"cargo-fuzz":["A `@S` &i @0 fuzzing @7 `libFuzzer`! Easy to $d!",C[16]],"random-fast-rng":["@3 @1 @0 Blazing $I non ^w &L &a @B","0.1.1"],"pathfinding":["Pathfinding, flow, @5 graph ^3","2.2.2"],"structmeta-derive":["@b @e @0 structmeta @8.","0.1.4"],"rumqttlog":[C[499],C[7]],"rustdoc-seeker":["rustdoc-seeker parse @4 `search-index.js` ^8 by `rustdoc` @5 provide $I searching ability","0.6.0"],"flo_curves":["@p @0 manipulating Bezier curves","0.5.1"],"superstruct":["Proc-@e @0 quasi-subtyping",C[3]],"tokio-byteorder":["&b @1 @0 &3/$O ^M in big-endian @5 little-endian.",C[1]],"structured":["Data $k to handle large, structured @w.","0.7.0"],"pcf857x":["Platform-&f @3 ^j @0 @4 PCF8574, PCF8574A @5 PCF8575 I/O expanders.",C[2]],"khronos":["@3 @g @0 Khronos @x",C[4]],"ref_slice":["Turn a reference ^d a slice of length one.","1.2.1"],"vec_shift":["A util @Y @0 doing @4 opposite $7 of `Vec::pop`",C[0]],"elicit":["SmartPointer-$C $V @0 polymorphism.","0.7.8"],"wccg-data":[C[500],C[17]],"plotlib":["Pure @3 plotting @1","0.5.1"],"reqwest-vcapra1-add-cookies":[C[501],"0.10.9"],"futures-sink":[C[504],"0.3.17"],"google-dlp2_beta1-cli":[C[502],"2.0.4+20171205"],"macaroons":["Cookie-$C bearer credentials @7 caveats @0 distributed authorization","0.3.3"],"shadowcast":["@v of @4 recursive shadowcast visible-area detection $1","0.8.1"],"cmdline-parser":["Platform-resembling cmdline @R @0 $K shells",C[0]],"hsl":["Represent colors in HSL @5 convert $t HSL @5 RGB.","0.1.1"],"system76_ectool":["System76 EC ^4","0.3.6"],"oss-rust-sdk":["Aliyun OSS ^N",C[5]],"yubikey-piv":["Pure @3 host-side ^j @0 @4 YubiKey Personal Identity Verification (PIV)$U ^R general-purpose public-key signing @5 encryptionwith hardware-backed private keys @0 RSA (2048/1024) @5 ECC (P-256/P-384)^3 (e.g, PKCS#1v1.5, ECDSA)",C[1]],"google-reseller1_sandbox":[C[541],"2.0.8+20160329"],"test-ignore-if":["A @f ^B @e to conditionnaly ignore tests",C[0]],"fmod":["A @f $W @0 @4 FMOD @1","0.10.2"],"rustc-test":[C[503],"0.3.1"],"bmp280":["A @d @1 @0 @u @4 Bosch BMP280 barometer @5 altimeter",C[2]],"yare-macro":["Attribute @e @8 @0 @4 Yare parameterized tests @1.","1.0.1"],"bitcoin_hashes":["Hash @y $2 by @f-bitcoin $i @j &K 1.29.0",C[13]],"ksuid":["A @1 @0 efficiently $E, @R @5 serializing Segment.io KSUIDs",C[3]],"heck":["heck is a case conversion @1.","0.3.3"],"case":["A set of letter case $c &w","1.0.0"],"swash":["Font introspection, complex ^D shaping @5 glyph &S.","0.1.4"],"dtn7":["@3 delay-tolerant-networking daemon @5 CLI &1 @n upon bp7 (bundle @9 $4 7 draft)","0.16.15"],"hbs-builder":["Heartbeats-@K Build Helper",C[5]],"ipp":["&b IPP print @9 @2","3.0.0"],"signature":["Traits @0 ^w signature ^3 (e.g. ECDSA, Ed25519)","1.4.0"],"futures-sink-preview":[C[504],C[19]],"kstring":["Key String: optimized @0 map keys","1.0.5"],"pcarp":["A ^X-@3 @1 @0 &3 pcap-ng @z","1.2.0"],"dprint-plugin-json":["^k formatter @0 dprint.",C[15]],"$P_clouddirectory":["^r ^N @0 @3 - Amazon CloudDirectory @ 2017-01-11",C[27]],"sprs":["A sparse matrix @1",C[16]],"@d_xml_serialize_@e":[C[1074],C[1]],"swc_css_^H":["CSS @V @B @0 @4 swc ^g",C[74]],"anchor-attribute-access-control":["Anchor &U @e @0 instruction $X control",C[43]],"avr-config":["An AVR foundational @8 @0 retrieving details, such as @4 CPU clock frequency, at @I","2.0.1"],"conventional_commits_next_$4":["A tooling @5 @L &f $w to calculate @4 next semantic $4 @n on @4 Conventional Commits since @4 prior $4. Supports monorepos.","4.0.0"],"foreign-types-macros":[C[505],C[5]],"rustc-ap-serialize":["^W published $4 of @4 @X `serialize` in @4 @f-lang/@f repository @t commit 10c2316a6bf7cf9255f991e06e82ce692e6f84d5 $8 publishing script @0 this @8 lives at: &Y://github.com/alexcrichton/&K-auto-publish","662.0.0"],"regalloc":["Modular register allocation ^3","0.0.32"],"starling":["@Q ^0 $V is a $Q merkle ^0 @7 branch ^C via split indexes.","3.2.3"],"wayland-sys":["$L @6 to @4 various libwayland-*.so &4. You should only need this @8 if you are ^p on custom wayland @9 &p. Look at @4 @8 wayland-@c @0 usable @6.",C[98]],"tc_coblox_bitcoincore":["Testcontainers image @0 @4 coblox/bitcoin-@F docker image.","0.5.1"],"barrel":["A powerful schema migration $K @x @0 @3","0.6.5"],"cargo-x":["A very @d third-party @S &i to execute a custom @D.","0.3.6"],"tuf":["@p @0 $8 Update Framework (TUF)",C[459]],"aliri_braid_impl":["@v @a @0 @4 `aliri_braid` @8","0.1.9"],"async-change-tracker":["reactive change notifications @u @Z","0.3.1"],"smelling_salts":["Abstraction &6 $0 descriptors to wake @Z when ready.","0.5.1"],"include-flate-codegen-exports":[C[506],"0.1.3"],"libudt4-sys":["&M @6 to a C @h $G @4 UDT @1",C[3]],"c3p0_mysql":[C[334],"0.53.0"],"piet-common":["Selection of a single preferred back-end @0 piet",C[346]],"kd-tree":["k-dimensional ^0","0.4.1"],"zoxide":["A smarter cd @D @0 $r $o","0.7.8"],"check-if-email-exists":["Check if an email address exists ^Y sending any email","0.8.25"],"tokio-serde-cbor":["Integration of serde_cbor ^d $v-io, to allow sending CBOR encoded frames across ^9 (@5 possibly through other transports).","0.6.0"],"lazy-transform-str":["Lazy-copying lazy-allocated scanning `str` transformations.This is good e.g. @0 (un)escaping ^D, especially if individual $p are short.","0.0.6"],"global":["Global variables ^Y @a.","0.4.3"],"cstr-argument":["A $y @0 converting @Y arguments to null terminated $p",C[4]],"swipl-macros":["Macro @8 @0 swipl-rs","0.3.3"],"google-dfareporting2":["A @q @1 to @o @7 dfareporting (@9 v2.0)","0.1.5+20150326"],"uio":["Helper @1 @0 $O linux user-space drivers @7 UIO.",C[3]],"zipf":["A $I @B of discrete, bounded Zipf-distributed &L ^M","7.0.0"],"git-appraise":["A @f port of @4 git-appraise @1",C[3]],"wry":["Cross-@N WebView &S @1","0.12.2"],"rcu_cell":["a lockless rcu cell @2",C[32]],"brotli":["A brotli compressor @5 decompressor @l @7 an @m avoiding @4 @f stdlib. @Q makes it suitable @0 ^b &N @5 kernels. It is designed @7 a pluggable ^l so @l @4 ^E lib's ^l may be employed. $8 default $j also includes a stdlib ^l @5 ^L @m. Disable this @7 --features=no-stdlib. All included @V is $M.","3.3.2"],"speedtest-rs":["Speedtest.net $S $w @5 @8",C[4]],"icns":["A @1 @0 $5/^P Apple Icon Image (.icns) @z.","0.3.1"],"binary-tree":["Collection of Binary Tree @w $k @5 ^3",C[3]],"js-intern":["A @e @0 interning JavaScript $9","0.3.1"],"cublas":[C[507],C[3]],"must_future":["A @h future marked must_use - mainly to wrap BoxFutures",C[4]],"tower":["Tower is a @1 of modular @5 reusable components @0 $K robustclients @5 servers.","0.4.10"],"old_school_gfx_glutin_ext":["Extensions @0 glutin to initialize & update old school gfx","0.27.0"],"combup":["dwote @n ComPtr wapper.","0.1.5"],"spinners":["🛎 60+ Elegant $o spinners @0 @3","2.0.0"],"font-loader":["A font loading $w $A in @5 @0 @3.",C[16]],"&k_merkle_^0":["Static Merkle Tree is dedicated @0 $E Merkle Root @5 Merkle Proof @0 a &k list of items.","1.1.0"],"ssb-common":["&O @g @5 @w among various ssb modules.",C[1]],"anybar":["A @3 @8 to @o @7 Anybar.","0.1.3"],"sys-info-rs":["Warning: @Q @X has already moved to @r-info.",C[4]],"rpki":["A @1 @0 validating @5 $Z RPKI @w.","0.12.2"],"snek":["A @d @1 @5 @e @0 @u dynamic &4",C[1]],"terminfo":["Terminal $f.","0.7.3"],"cpp_syn":["Internal @f-cpp nom @i @0 @3 source @V",C[28]],"wdg-uri":["URI","0.3.7"],"sapp-jsutils":["Helper @y @0 ^p @7 js objects in miniquad @n apps.","0.1.5"],"snarkos-parameters":["Parameters @0 a decentralized operating @O","1.3.17"],"x2apic":["A @3 @m to @4 x2apic interrupt architecture.",C[2]],"woodpecker":["Fast @5 extensible &H @0 @3",C[2]],"kube-runtime":["Kubernetes @Z controller @I","0.63.1"],"xapian-rusty":["@3 @6 to Xapian","0.1.4"],"winreg":["@3 @6 to MS ^6 Registry @x",C[12]],"git-protocol":["A WIP @8 of @4 gitoxide ^g @0 ^5 git protocols",C[28]],"tribool":["Tribool - Three-valued logic",C[3]],"sp800-185":["SHA-3 Derived Functions (SP800-185) @v in @3.",C[3]],"sm":["💋 SM – a &k State Machine @1","0.9.0"],"adblock":["&M @3 ^F @0 Adblock Plus syntax (e.g. EasyList, EasyPrivacy) filter @R @5 matching.","0.4.1"],"slr_lexer":["A @d $H @G. @Q @8 contains just @4 lexer, see @4 slr_config @8 @0 @4 @i @5 other @E.","0.0.13"],"drux":["Debian @3-@X updater @0 inhouse","0.7.8"],"automap":["@K pattern to implement key-&5 maps where @4 &5 $l contains @4 key $l",C[0]],"fractal-matrix-api":["@p to communicate @7 a Matrix.org @U","4.2.0"],"kamadak-exif":["Exif @R @1 $A in ^X @3","0.5.4"],"solana-ledger":["Solana ledger","1.8.1"],"evtx":["A Fast (@5 $M) @i @0 @4 ^6 XML Event Log (EVTX) @G","0.7.2"],"ber":["BER &3/$O","0.0.6"],"victorem":["UPD Game Server Framework","0.8.2"],"cargo-husky":["husky @0 @S","1.5.0"],"cargo-deb":["Make Debian packages (.deb) easily @7 a Cargo &i","1.32.0"],"$P_mturk":["^r ^N @0 @3 - Amazon Mechanical Turk @ 2017-01-17",C[27]],"tectonic_io_base":["Basic @g @0 Tectonic's pluggable I/O $N @O","0.3.1"],"&d":["...",C[0]],"noble-authority-discovery":["FABRIC noble @0 authority discovery","2.0.1"],"hwaddr":["MAC address ^a.","0.1.7"],"cblas-sys":["$8 @X @s @6 to CBLAS (C).","0.1.4"],"ta-lib-wrapper":["@3 @h @0 TA-lib",C[3]],"rocket_oauth2":["OAuth2 @0 Rocket @P",C[113]],"warmy":["Hot-reloading loadable @5 reloadable resources",C[15]],"scalable_bloom_filter":["Scalable Bloom Filter","0.1.1"],"bolero-afl":["afl $Y @0 bolero","0.6.0"],"link-config":["Compile-$z execution of pkg-config to detect what `#[link]` directives shouldbe inserted @0 linking to a &8 @1.","0.1.1"],"futures-enum":["#[@b(Future, Stream, Sink, AsyncRead, AsyncWrite, AsyncSeek, AsyncBufRead)] @0 enums.","0.1.17"],"angry-purple-tiger":["animal-@n ^z digests @0 humans",C[0]],"cdylib-link-lines":["Collection of link-lines useful to $j correct cdylibs on targets","0.1.4"],"wasm-bindgen-externref-xform":["Internal externref transformations @0 &s-bindgen","0.2.78"],"$6_v8":["@3 to V8 @M @5 &9",C[72]],"bresenham":["A $I, iterator-@n integer-only @2 of Bresenham's $D $1.","0.1.1"],"cty":["Type aliases to C @g $C c_int @0 $d @7 bindgen",C[8]],"ink_$9":["[ink!] Fundamental primitive @g @0 ink! smart contracts.",C[107]],"env_perm":["Sets ^K variables in $r profile","0.1.3"],"httptest":["^s $S facilities including a mock @U",C[99]],"opcua-client":["OPC UA @c @x","0.8.1"],"black_scholes":["A Black Scholes option pricing @1.","0.6.0"],"gqlog":["👾 filter $r &V logs @7 graphql 👾","1.0.3"],"rustup-mirror":["Setup a local rustup mirror.","0.6.0"],"tensorboard-rs":["Write @w @0 Tensorboard @t @3.","0.2.4"],"rtic-core":["Core abstractions of @4 Real-Time Interrupt-driven Concurrency @k","0.3.1"],"lapin":["AMQP @c @1",C[508]],"$c_template":["Very @d $c template @0 @3.",C[5]],"heapless-bytes":["Newtype $G heapless byte Vec @7 ^Z $6.",C[1]],"notcurses":["A higher @C @h @0 @4 notcurses C @1","2.0.0"],"i2c":["&W I2C $3",C[0]],"stopwatch":["A stopwatch @1 @0 timing things.","0.0.7"],"twiggy-ir":["Intermediate representation @0 @4 Twiggy @V size profiler.","0.7.0"],"abox":["A $M @h $G AtomicPtr","0.4.1"],"nson":["NSON is a ^O @w-interchange @G $C ^k or BSON","0.12.1"],"nickel_@a":["^o @0 nickel.rs",C[0]],"lain":["Mutation @k @0 usage in fuzzers","0.5.5"],"libjit-sys":[C[509],C[5]],"vks":["Vulkan $L @6 @5 symbol loader. Vulkan 1.0.59 @5 all &p are supported.","0.21.0"],"$0_^S":["@p to abstract read. Based on prefix URL, it select @4 adapted reader (^s or local $0 @O).","0.6.6"],"complex":["$8 @X is deprecated in favor of num.",C[7]],"sourceview4":["@x @6 @0 GtkSourceView 4",C[3]],"bootloader-locator":["Retrieves @4 $0 @O location of a `bootloader` &m","0.0.4"],"steamy-vdf":["VDF $0 @G ^a.",C[3]],"kudubot-bindings":["@3 @H @0 @4 kudubot @k","0.18.2"],"$6_db":["Deserialization of ^Q resultsets, @5 @M of ^Q parameters","0.9.2"],"cherries":["Expression ^0 &H",C[9]],"numeral":["Written english form of a &a","1.0.0"],"futures-promises":["Promises @5 Watched Variables @0 Futures",C[38]],"lpc177x_8x":["Peripheral $X @x @0 LPC177x @5 LPC178x $s (svd2rust 0.13.1)","0.13.5"],"winusb-sys":["$L @6 to winusb. @Q @8 is a placeholder @0 @4 future. If you are interested in this @1 feel free to get in touch @7 me: &z://www.rustaceans.org/retep998","0.0.1"],"chrono_^u":["Utils @0 chrono @1. It's may parse w3c date.","0.1.3"],"heim-host":["Cross-@N host $f",C[59]],"sounding-base":["Data formats @5 ^3 @0 atmospheric soundings. $8 base @8 is meant to be a $u base @0 other $R to $j on. These $R may be @0 managing a @w-store, displaying @w, or saving @5 loading @z.",C[17]],"emailaddress":["@K email address $l @5 @i",C[2]],"isocountry":["ISO 3166-1 enumeration @0 @3",C[9]],"doggo":["Command $D ^4 to evaluate @4 goodness of a doggo",C[60]],"rgx":["Mid-@C 2D ^T $F @7 a wgpu $N","0.8.1"],"eetf":["@p @0 $5/^P Erlang External Term Format","0.6.0"],"multipart":[C[510],C[43]],"stratum-client":["$8 @c @V @0 @4 @3 Stratum (v1) @2.","0.9.19"],"google-androidmanagement1-cli":[C[511],C[200]],"component_group_@b":["Automatic @b @0 @4 ComponentGroup $y","3.0.0"],"opt300x":["Platform-&f @3 ^j @0 @4 OPT300x ambient light sensors. Compatible @7 OPT3001, OPT3002, OPT3004, OPT3006 @5 OPT3007","0.1.1"],"sc2-proto":["^c buffers @0 @4 StarCraft II Client @x","0.2.3"],"krill":["Resource Public Key Infrastructure (RPKI) daemon","0.9.2"],"hash256-std-hasher":["Standard @1 hasher @0 256-bit prehashed keys.","0.15.2"],"barfly":["WIP. Donut $d. Implement osx dock/windows taskbar apps in @f.","0.1.3"],"$P_route53domains":["^r ^N @0 @3 - Amazon Route 53 Domains @ 2014-05-15",C[27]],"ethcore-util":["Ethcore $w @1",C[0]],"k8-metadata-client":["Trait @0 interfacing kubernetes metadata &t","3.1.3"],"nessus":["Nessus Vulnerability Scanner @x @c","0.5.1"],"const-tweaker":[C[512],"0.3.1"],"simi-macros":["^o @j @0 @4 Simi @k",C[5]],"slack-blocks":["Models + clientside validation @0 Slack's ^k Block Kit","0.25.0"],"storage-proofs-porep":["Proofs of replication","10.1.0"],"oxygengine-procedural":["$q content ^1 ^F @0 Oxygen Engine",C[42]],"stringly_conversions":["A @8 helping to convert to/@t various representations of $p.","0.1.1"],"vec1":["a std Vec @h assuring @l it has at least 1 element","1.8.0"],"specialized-div-rem":["specialized division ^3 @0 integer $9","1.0.1"],"nonsmallnum":["Basic arithmetic @0 unsigned arbitrarily-sized integers in ^X @3","0.0.7-alpha.3"],"discord-rpc-client":["A @3 @c @0 Discord RPC.",C[1]],"yamlette":["Comprehensive @5 user &E YAML 1.2 processor","0.0.8"],"nu_$Y_post":["An ^s post $Y @0 Nushell","0.36.0"],"runng":["High-@C @h $G nng (Nanomsg-Next-Generation) aka Nanomsg2",C[9]],"nphysics_testbed2d":["Testbed @0 @4 2-dimensional physics $a in @3.",C[13]],"wasm-typescript-definition":["$6 @j @0 exporting Typescript $h @u &s-bindgen","0.1.4"],"rumblebars-rustlex":["Lexical analysers @B @0 @3, $A in @3 (@8 dedicated to rumblebars, divergences $A by Nicolas Cherel)",C[9]],"liblmdb-sys":[C[513],C[8]],"cargo-multi":["Extends @S to run @4 given @D on &l $R similar to 'git multi'","0.5.0"],"solana-transaction-status":["Solana transaction status @g","1.8.1"],"exonum_librocksdb-sys":[C[321],"0.5.5"],"needletail":["FASTX @R @5 k-mer &P","0.4.1"],"&V_@e":["Pure &V @e @0 rust_serialize. No need ^2 features.","0.1.1"],"littlefs2":["Idiomatic @3 @x @0 littlefs",C[9]],"&z_header":["A @d, &m-less ^s-header &I @5 @i","0.8.2"],"swipl-fli":["Low-@C @6 to @4 SWI-Prolog Foreign &R Interface",C[9]],"min-max-heap":["An ^Z, double-ended priority queue","1.3.0"],"enumset":["A @1 @0 $Z compact sets of enums.","1.0.7"],"harmonizer":["Apollo Federation $w to compose a supergraph @t subgraphs","0.33.4-0"],"constellation-internal":["&O components @0 @4 `constellation` @k.",C[320]],"external_sort":["@W @4 ability to perform external sorts on &o, $i allows @0 rapid sorting of large @w streams.",C[4]],"flx":["Full-^D searching @5 scoring of $p",C[8]],"stm32f3":["Device @j $R @0 STM32F3 &N",C[24]],"jsonschema-valid":["A @d ^k schema validator.",C[2]],"cpio_reader":["A @1 to read @4 contents of cpio @z",C[0]],"rpa_derives":["Derives Module @0 RPA.","0.5.1"],"pem-parser":["A @d ^4 to convert RSA keys @t PEM to DER.","0.1.1"],"ntest":["Testing @k @0 @f $i enhances @4 built-in @1 @7 some useful features.","0.7.3"],"shred":["Dispatches systems in parallel $i need read $X to some resources,@5 &0 $X to others.",C[28]],"ptx-linker":["NVPTX modules linker","0.9.1"],"discotech_zookeeper":["A minimal ZooKeeper @c, work in progress",C[0]],"quickcheck_@b":["Derives quickcheck $3",C[1]],"xgboost-sys":["&M @6 to @4 xgboost @1",C[4]],"conduit-conditional-get":["Middleware to transform GET ^d a conditional response if headers indicate thatthe response is fresh.","0.9.0-alpha.3"],"getrandom":["A &7 cross-@N @1 @0 retrieving &L @w @t @O source","0.2.3"],"pears":["A @d ^4 @0 viewing open pull requests.","1.2.5"],"sacapart":["Partitioned suffix arrays, @0 $d @7 `sacabase`","2.0.0"],"cargo-pkg":["A @d &i @0 @4 Cargo @X &F @0 $K GTK packages @t @3 projects.","0.2.84"],"daumdic":["Daum Dictionary @x @h","0.6.1"],"gazebo":["A $b of well-tested @E","0.4.4"],"id-arena":["A @d, id-@n arena.","2.2.1"],"bassert":["A Better Assert macroThis @e will print out @4 ^V of each side of an expression @5 also thevalues of @Y arguments.","0.0.4"],"filters":["Build filters/predicates @7 @4 &I pattern",C[2]],"pin-project":["A @8 @0 $M @5 ergonomic pin-projection.","1.0.8"],"glib-macros":["@3 @6 @0 @4 GLib @1, ^B @a @8","0.14.1"],"os-release":["Parse /etc/os-release @z on &j distributions",C[0]],"ur20":["@3 @1 @0 @4 Weidmüller u-remote IP20 @O","0.5.1"],"cargo-hf2":["Cargo Subcommand @0 Microsoft HID Flashing @p @0 UF2 Bootloaders",C[9]],"external-memory":["&W external $g $k $2 by gfx-rs backends","0.0.1"],"filetreelist":["filetree $F @n on a sorted path list, supports key @n navigation events, folding, scrolling @5 more",C[2]],"lars":["A @1 @0 basic linear algebra.","0.2.4"],"rust-gist":["Yet another Gist @c","0.1.4"],"ra_ap_ide":["TBD","0.0.79"],"geiger":["Some @1 parts of @S-geiger, decoupled @t @S.","0.4.7"],"libc-stdhandle":["Helper @y @0 retrieving stdin, stdout, stderr.",C[0]],"ranagrams":["anagram discovery ^4","1.0.0"],"ed25519-dalek-bip32":["Simplified ed25519 BIP32 derivations","0.1.1"],"way-cooler-bg":["Background ^U @0 Way Cooler",C[5]],"pallet-session-benchmarking":["FRAME sessions &v benchmarking","3.0.0"],"ddp":["A @3 @p to connect to ddp / Meteor servers. Under heavy &D, more features to come soon. See repo @0 more info!","0.0.3"],"twilio-async":["An @J @5 ergonomic @h $G Twilio @x & TwiML","0.5.0"],"solana-install":["$8 ^f cluster software installer","1.8.1"],"dubp-documents-parser":["&B @0 DUBP documents.","0.58.0"],"ceph-rbd":["Ceph Rados Block Device @H",C[9]],"exocore-store":["Store / indexation layer of Exocore (Distributed @P @k)","0.1.15"],"ckb-dao-utils":["@Q @8 @s several util @y to operate @4 dao field @5 NervosDAO related errors",C[302]],"graphite":["A $I, ^X @f graphite @2. Includes whisper, carbon, @5 graphite.","0.2.3"],"epitaph":["Types @5 @a @0 more detailed errors.",C[3]],"core-error":["std::^q::Error @0 libcore","0.0.1-rc4"],"rustml":["A @1 @0 doing maching learning in @3.","0.0.7"],"portpicker":["Pick a free unused port","0.1.1"],"rsmtp":["An SMTP @1.",C[4]],"dunce":["Normalize ^6 paths to @4 most ^i @G, avoiding UNC where possible","1.0.2"],"$P_acm":["^r ^N @0 @3 - ^r Certificate Manager @ 2015-12-08",C[27]],"polygon2":["polygon 2d @y",C[1]],"insta":["A snapshot $S @1 @0 @3","1.8.0"],"truelayer-extensions":[C[749],C[4]],"rbx_reflection":["Roblox reflection ^Q @5 ambiguous $l resolution","4.2.0"],"servo-glutin":[C[514],C[23]],"^L_multiplexer":["Combines many streams ^d a few.","0.16.1"],"scrubcsv":["Remove bad lines @t large CSV @z @5 normalize @4 rest","0.1.9"],"params":["A multi-source request parameters @i @0 Iron.",C[7]],"conjure-codegen":["@3 @V ^1 @0 Conjure $h","0.7.4"],"tail-reader":["super $I @5 ^O $g mapped tailer reader","3.0.0"],"unordered-pair":["A tuple struct representing an unordered pair","0.2.3"],"rugrat":[C[463],"0.4.1"],"crusty-core":["@p @0 $Z blazing $I @5 configurable &e crawlers","0.78.0"],"caelum-id":["Oficial CaelumLabs Identity @3 @x/Core @2","0.1.9"],"modulo":["@K modulo operation.",C[4]],"accumulator":["A key-&5 store limited by size or $z, allowing accumulation of &l ^V under a single key.","0.7.0"],"tower-make":["Trait aliases @0 Services @l produce specific @g of Responses.",C[1]],"rocket_okapi_^H":["^o supporting rocket_okapi",C[752]],"oxygengine-build-tools":["Build &1 @0 Oxygen Engine",C[42]],"lalr":["a @1 @0 $Z LALR(1) parsers @t context-free grammars","0.0.2"],"synchronoise":["Synchronization $9 @l $j upon @4 ^E @1","1.0.0"],"pwasm-alloc":["Parity $x ^E @1 ^J ^l","0.4.1"],"rs-es":["Client @0 @4 ElasticSearch REST @x","0.12.3"],"stainless-ffmpeg-sys":[C[515],"4.2.3"],"alice-open-data":["Tools to download @5 manage @4 publicly released ALICE open @w","0.5.0"],"ff-find":["ff is a @d @5 $I $w @0 finding @z on Unix commandline. It also supports complex filters $C GNU find.","0.24.11"],"fluent-pseudo":["Pseudolocalization transformation @x @0 $d @7 Project Fluent @x.","0.3.1"],"mio-timerfd":["mio @j @0 linux's timerfd",C[3]],"cf_@y":["A @1 $i has characteristic @y @0 a variety of distributions.",C[72]],"webmachine-rust":["Port of @4 Ruby Webmachine @1 to @3",C[8]],"hdf5-src":["Build script @0 compiling HDF5 C @1 @t source.",C[7]],"persistentcache":["^o @0 persistently caching @Y calls @u @z or Redis","0.1.6"],"prose":["Reformat ^D pleasantly",C[9]],"log_buffer":["A zero-allocation ring buffer @0 storing ^D logs","1.2.0"],"query_@m":["Dynamically query a $l-erased object @0 any $y @2","0.3.5"],"log-update":["Log by overwriting @4 previous &Z in @4 $o",C[0]],"user_agent":["@W @4 concept of a user agent session, storing @5 retrieving cookies &6 &l ^s requests (a `Session`).",C[16]],"rpmalloc":["Cross-@N global $g ^l @u rpmalloc",C[8]],"markup":[C[638],"0.12.5"],"sha2":["Pure @3 @2 of @4 SHA-2 ^z @Y familyincluding SHA-224, SHA-256, SHA-384, @5 SHA-512.","0.9.8"],"consistenttime":["Constant $z $B @0 &Q &4.",C[3]],"async-barrier":["An @J barrier","1.1.0"],"lexical-parse-integer":["Efficient @R of integers @t $p.",C[7]],"num-iter":["External iterators @0 ^G mathematics","0.1.42"],"kg-diag":["Error/diagnostic ^A. I/O routines @0 &3 UTF-8 textual @w @7 position tracking.",C[2]],"atomic-instant":["Atomic @h @0 quanta::Instant","0.1.1"],"futures-io":["$8 `AsyncRead`, `AsyncWrite`, `AsyncSeek`, @5 `AsyncBufRead` $3 @0 @4 @Z-rs @1.","0.3.17"],"mmap-fixed":["A @1 @0 dealing @7 $g-mapped I/OThis is a fork of @4 original @f-mmap @7 updated &c @5 afix @0 @4 ^6 $4. @Q exists only because there are no otheralternative $R @0 `MAP_FIXED` allocations.","0.1.5"],"gdb-protocol":["An @2 of @4 GDB Remote Serial ^c, following &Y://sourceware.org/gdb/onlinedocs/gdb/Remote-Protocol.html",C[0]],"proc-exit":["Exit codes @0 ^I termination","1.0.2"],"etcommon-block":[C[941],"0.5.2"],"surfman-chains":[C[618],"0.6.0"],"$P_cloudhsmv2":["^r ^N @0 @3 - ^r CloudHSM V2 @ 2017-04-28",C[27]],"fastobo-derive-internal":["Internal @b @a @0 @4 `fastobo` @8.","0.13.1"],"microsalt":["&x to $d @f &Q lib (tweetnacl & $L @6 to it)","0.2.21"],"$P_lex_@I":["^r ^N @0 @3 - Amazon Lex Runtime Service @ 2016-11-28",C[27]],"libblockchain":["A Blockchain @2",C[4]],"coreboot-table":["Coreboot Table &B","0.1.6"],"iocuddle":["@p @0 $K @I-$M linux `ioctl()` interfaces","0.1.1"],"dtoa-short":["Serialize float &a @5 truncate to certain precision","0.3.3"],"hb":["^s Benchmark Tool","0.0.13"],"path-clean":["A @3 @2 of cleanname or path.Clean",C[0]],"hdf5-derive":["&n @e @0 HDF5 &o @5 enums.",C[7]],"dist_tx":["A @f @L $W @0 XA Distributed Transactions","0.2.4"],"zamm_yang":["A basic, experimental @V @B",C[3]],"twofish":["Twofish block cipher","0.6.0"],"imperator-save":["Ergonomically work @7 Imperator Rome saves (debug @5 ironman)","0.2.7"],"if-watch":["crossplatform $n ^9 watcher",C[8]],"temporary":["$8 @X @s means of managing temporary @z @5 directories.","0.6.3"],"die-exit":[C[790],"0.3.3"],"conduit-hyper":["Host a conduit @n &e $U on a hyper @U",C[842]],"sass-alt":["A more powerful alternative to sass-rs @l @s SASS @y, SASS importers @5 source map manipulation.","0.2.7"],"tokio-amqp":["lapin $T @7 $v","1.0.0"],"rsmath":["An uncomplicated @1 @0 Mathematics $A in @3","0.1.6"],"lua_actor":["Lua Actor @0 @3(sync/@J)","0.2.4"],"oaidl":["Crate to manage conversions to/@t SAFEARRAY, VARIANT, @5 BSTR @w $k in COM interop",C[5]],"f128_input":[C[516],C[5]],"unwind_$M":["Readable unwind-$M @V thanks to a try-finally-looking &I pattern","0.0.1"],"voronoi":["A @1 to compute Voronoi diagrams, @u Fortune's sweepline $1","0.1.4"],"bcs":["Binary Canonical Serialization (BCS)","0.1.3"],"futures-zmq":["@W Futures abstractions @0 ZeroMQ on any @Z executor","0.5.0"],"x11-input-supercharger":["Adds @O-wide ^6-$C scrolling mode @5 conditional clicking @u keyboard","0.5.0-alpha"],"at-cryptoauth":["Driver @0 ATECC608 Crypto Authentication secure elements",C[1]],"whiteread":["Crate @0 easily &3 whitespace-separated ^V @t $p or input.","0.5.0"],"swc_ecmascript":["Ecmascript","0.82.0"],"poloto":["@K 2D plotting @1 @l outputs SVG @5 can be styled @u CSS","2.20.4"],"sspi":["A @3 @2 of @4 Security Support Provider Interface (SSPI) @x",C[9]],"checked-enum":["@W a $y `CheckedEnum` @5 a $l `UncheckedEnum` $i areuseful when wrapping $L &4 @l $d enums $i you cannot guaranteewill be in range, but you would $C to allow a ^U to keep runningwhen such an enum &5 is encourtered.","0.1.1-alpha1"],"bitcoincore-rpc-async":[C[519],"3.0.1"],"tp-npos-elections":["Tetcore NPoS election $1 $9","2.0.2"],"google-cloudmonitoring2_beta2-cli":[C[517],"2.0.4+20170501"],"cp211x_uart":["HID-to-UART ^j @0 CP2110/CP2114 chipset",C[8]],"tectonic_$a_xdvipdfmx":["$8 `xdvipdfmx` ^U as a reusable @8.","0.1.3"],"systemd-manager":["A GTK3 GUI @0 managing systemd services on &j","1.0.0"],"isahc":[C[518],"1.5.1"],"splits-io-api":["@H to @4 Splits.io @x @0 @3.",C[3]],"url-prefix":["A @1 @0 $Z URL prefix $p.","2.0.3"],"default_^l":["default (userspace) $g ^l",C[1]],"riff-wave":["@K &P @0 &3 @5 $O PCM wave @z.",C[4]],"parallel-event-emitter":["Parallel Event Emitter @0 concurrent listener invocation @n on @Z-rs @5 @Z-cpupool","0.2.4"],"freertos_rs":["@3 @m @0 @4 FreeRTOS ^b operating @O.",C[1]],"cargo-deadlinks":["Cargo &i @0 checking $r documentation @0 broken links","0.8.1"],"text-tables":["A $o/^D table prettifier @7 no &c","0.3.1"],"syn-mid":["Providing @4 features $t \"full\" @5 \"@b\" of syn.","0.5.3"],"superlu":["$8 @X @s an @m to SuperLU.",C[9]],"falcon-z3":["@3 @6 @0 z3 @5 Falcon","0.5.2"],"sendgrid":["An unofficial @c @1 @0 @4 SendGrid @x","0.17.4"],"paw-attributes":["Proc Macro attributes @0 @4 Paw @8.","1.0.2"],"pwhash":["A $b of password hashing routines in ^X @3.","1.0.0"],"aes-stream":["Read/Write Wrapper @0 AES Encryption @5 Decryption during I/O Operations",C[5]],"tink-core":["Core @8 @0 @3 port of Google's Tink cryptography @1",C[8]],"spirv-utils":["SPIR-V ^e @1",C[5]],"tokio-retry":["Extensible, $n retry behaviours @0 @Z/$v",C[1]],"execute-command-macro-impl":["Create `Command` instances @u @4 `@D!` @e.","0.1.6"],"an-rope":["an rope @0 large ^D documents.","0.3.1"],"ursa":["@Q is @4 &J &Q @1 @0 Hyperledger components.","0.3.7"],"core-rpc":[C[519],C[23]],"prototty_elements":["Collection of ui elements @0 $d @7 prototty","0.7.0"],"domain":[C[520],"0.6.1"],"accel-mma84":["Driver @0 an MMA8452Q 3-axis accelerometer.",C[3]],"fluent_&I":["A @d &I @x.","0.6.0"],"jfs":["A ^k $0 store","0.7.0"],"ics23":["Merkle proof verification @1 - implements Cosmos ICS23 Spec","0.6.5"],"holochain_&V_@b":["@W @b @a @0 holochain persistence.","0.0.51"],"loirc":["Low-@C IRC @c @1 @7 robustness in mind.",C[3]],"aspotify":["&b @c @0 @4 Spotify @x","0.7.0"],"slab":["Pre-allocated ^x @0 a uniform @w $l","0.4.5"],"inline-c":["Write @5 execute C @V inside @3","0.1.6"],"rift":["@3 Thrift @1","0.5.1"],"bus":["A lock-free, bounded, single-producer, multi-consumer, broadcast channel.","2.2.3"],"pub-iterator-type":["Abstract an iterator @2 behind a struct tuple.","0.1.1"],"environ":[C[521],"1.1.3"],"wild_&d_pool":["wild &d pool",C[2]],"take-until":["A take until ^h @0 iterators",C[0]],"discord_game_sdk_@r":["Low-@C @6 @0 @4 Discord Game ^N","1.0.1"],"fallible-iterator":["Fallible iterator $3",C[5]],"printf":["A @1 to convert a fmt $c @5 va_list ^d @f String",C[0]],"lambda_&z":[C[522],"0.4.1"],"colorful":["Make $r $o &Z colorful",C[5]],"transpose":["Utility @0 transposing multi-dimensional @w",C[5]],"@d_redis":["@K @5 resilient redis @c.","0.6.1"],"ply-rs":["@p @0 &3/$O ascii @5 $Q PLY @z.","0.1.3"],"exonum-testkit":["Testkit @0 Exonum blockchain @k, allowing to ^7 &t APIssynchronously.","1.0.0"],"windows_winmd":["Winmd @i @4 windows @8","0.3.1"],"redis":["Redis ^j @0 @3.","0.21.3"],"winproc":["Small @h &6 some ^I-related ^6 APIs.","0.6.4"],"bio_edit":[C[50],"0.1.1"],"civet":["civetweb-@n @U @2 @0 conduit","0.12.0-alpha.5"],"fastly-shared":["Shared $h @0 Fastly Compute@Edge",C[7]],"libmath":["Mathematical @E",C[5]],"gfx_window_dxgi":["DXGI window @0 gfx-rs","0.19.1"],"mnist":["MNIST @w set @i.","0.4.1"],"msvc-demangler":["A @f @1 @l demangles / undecorates C++ symbols mangled by MSVC","0.9.0"],"ul-sys":["@H to Ultralight Framework (Ultralight, AppCore)","1.3.1"],"rustls":["Rustls is a modern TLS @1 $A in @3.",C[42]],"cose":["@p to $d COSE (&Y://tools.ietf.org/html/rfc8152) in @3","0.1.4"],"css-in-rust":["CSSinRust is a @X @0 $d @7 WASM @P ^R a component @C CSS styling experience.","0.5.0"],"puddle":[C[523],C[0]],"nom-trace":["A tracer @0 nom parsers",C[5]],"evdev-rs":["@H to libevdev @0 &2 @7 evdev &N. It moves thecommon tasks when dealing @7 evdev &N ^d a @1 @5 providesa @1 @m to @4 callers, thus avoiding erroneous ioctls, etc.","0.5.0"],"redis_tang":["A light weight $n connection pool @0 redis-rs",C[3]],"waterfall":["waterfall @w visualization","0.7.1"],"forest_$5":["Filecoin $5 @5 ^P @E @0 $d in Forest",C[5]],"gearley":["An Earley @i $a.","0.0.4"],"pbuf":["Read/Write to/@t anything @l implements Read/Write to/@t protobuf.","0.3.31"],"$6_syn":["Use $6 to parse @3 source @V.",C[0]],"tokio-ping":["&b ICMP pinging @1",C[1]],"quest":["@K @D-$D user input.",C[1]],"fasttext-serving":["fastText model serving @x @U","0.6.2"],"gj":["Event loop @5 promises.",C[3]],"polynomial":["Manipulations @5 @w @g @l represent polynomial.",C[0]],"whitespacers":["A whitespace JIT-^2, @0 when $r whitespace just isn't executing $I enough.","1.0.0"],"librsync-sys":[C[572],C[4]],"winapi-util":["A dumping ground @0 high @C $M &r &6 winapi.","0.1.5"],"io-kit-sys":["@H to IOKit @0 macOS",C[0]],"flapigen":[C[599],"0.6.0-pre7"],"arg-derive":["&n @0 arg @8","0.3.4"],"cargo-bpf":["Cargo $Y to manage eBPF probes @u redbpf","2.0.2"],"hey_listen":["An event-dispatcher-$b offering @J, sync, parallel, @5 prioritised solutions!","0.5.0"],"file-size":["a @Y formatting $0 sizes in 4 chars","1.0.3"],"err":["A few @a & misc @l make @u rust's Error infrastructure more convenient","0.0.8"],"eventsourcing":["Event Sourcing @0 @3","0.1.5"],"pairing_ce":[C[641],"0.26.0"],"pathfinder_ui":["A minimal immediate mode UI @1 @0 debugging overlays","0.5.0"],"bitar":["bita archive @E","0.9.0"],"mla":["Multi Layer Archive - A ^X @f encrypted @5 compressed archive $0 @G","1.2.0"],"vcell":["`Cell` @7 volatile read / &0 $B","0.1.3"],"trace-time":["Easily trace $z to execute a scope.","0.1.3"],"serde-wasm-bindgen":["&M Serde adapter @0 &s-bindgen","0.3.1"],"iron-params":["Query/Form params &p to Iron request.","0.1.3"],"ipfs":["IPFS node @2",C[5]],"model":["model-@n $S @0 @w $k, @7 linearizability checking",C[4]],"rsdns":["DNS Client @p","0.7.0"],"eframe":["egui @k - &0 GUI apps @l compiles to &e @5/or natively",C[23]],"ovr-sys":["Well documented raw @6 to libOVR v1.15.0, @4 Oculus Rift PC @I library.Documentation is transformed @t @4 original libOVR doxygen docs.Requires acceptance of @4 Oculus ^N License, included.",C[1]],"totp-rs":["RFC-compliant TOTP @2 @7 ease of $d as a goal @5 additionnal QoL features.","0.6.4"],"dyn-clonable-impl":[C[611],"0.9.0"],"bip_bencode":["Efficient ^P @5 $5 @0 bencode","0.4.4"],"starlark-dialect-build-targets":["A Starlark dialect ^R @d $j @O $9","0.6.0"],"fixed-slice-vec":["`FixedSliceVec` is a dynamic length Vec @7 @I-determined maximum capacity backed by a slice.",C[7]],"scutiger-lfs":["a set of Git LFS-related @E",C[3]],"trie-db":[C[1023],C[88]],"easy-parallel":["Run closures in parallel","3.1.0"],"termbox":["High @C $W @0 Termbox.",C[3]],"pest_ascii_^0":["Helper $R converting @4 @R result of any pest grammar ^d an ascii ^0.",C[0]],"http-stream":["Http &V streaming @1","0.14.2"],"^f_libra_@g":["Libra @g",C[10]],"rusty_dashed":["A &e dashboard @0 telemetry in @f apps","0.2.3"],"pocket-resources":["Include resources in $r @P.",C[9]],"ergo_fs":["Types @0 making ^p @7 @4 filesystem ergonomic, therefore fun.",C[3]],"permission":["&W permission control @8.",C[0]],"memory-db":["In-$g @2 of ^z-db, useful @0 tests","0.28.0"],"xxhash-rust":["@v of xxhash","0.8.2"],"object-alloc":["An object ^l $y @0 @3.",C[3]],"&Q_box":["Pure @3 @2 of NaCl's crypto_box public-key authenticatedencryption primitive $i combines @4 X25519 Elliptic Curve Diffie-Hellmanfunction @5 @4 XSalsa20Poly1305 authenticated encryption cipher","0.7.0"],"clams":[C[524],"0.0.16"],"routefinder":["router",C[2]],"smf":["@3 @6 @0 @4 illumos SMF @O",C[5]],"fletcher":["A &m free @2 of @4 Fletcher's checksum $1",C[3]],"slab_typesafe":["A @h @0 Slab @l @s $l-$M tokens instead of usize.","0.1.3"],"mayda":["Compression of integer arrays, favoring decompression speed.","0.2.5"],"crossbeam_requests":["Crossbeam channels but @7 a response",C[1]],"gpu-descriptor":["@v &f descriptor ^l @0 Vulkan $C APIs",C[5]],"google-dfareporting3-cli":[C[730],C[525]],"printpdf":["@3 @1 @0 $O PDF @z","0.4.1"],"^D_table":["A @1 to create formatted plain-^D tables @t arbitrary @w.","0.0.4"],"google-adsensehost4d1-cli":[C[526],"2.0.4+20200930"],"lines":["Utililities @0 iterating readers efficiently $D-by-$D.","0.0.6"],"object":["A unified @m @0 &3 @5 $O object $0 formats.","0.27.1"],"java-properties":["A @1 @0 &3 @5 $O Java properties @z in @3.","1.4.0"],"figlet-rs":["@3 @2 of [FIGlet](&z://www.figlet.org/) to create ascii art","0.1.3"],"ruma-client":["A Matrix @c @1.","0.7.0"],"winstructs":["&O $k $2 in @R various windows protocols",C[1]],"arccstr":["Thread-$M, reference-counted null-terminated immutable $p.","1.3.1"],"hash32-derive":["^o 1.1 @2 of #[@b(Hash32)]","0.1.1"],"geml":["A @d Generator-orientated ML @i.","1.1.26"],"latex_snippet":["Convert even erroneous LaTeX snippets ^d HTML","0.3.3"],"any":["WIP. Contact me if you want to $d this name!","0.0.0"],"drone-stm32-map-pieces-2":[C[46],C[24]],"rust-pushrod":["Pushrod UI @p","0.4.27"],"compactmap":["Compact Vec-@n map @l choses assigns IDs @0 $r ^V on it's own. Very similar to Slab.","0.3.7"],"futures-error-chain":["A workaround until @Z-rs @5 ^q-chain $R works out-of-box @7 each other.",C[0]],"swayipc":["A @1 @0 controlling sway through its IPC @m","3.0.0-alpha.3"],"try_map":["`try_map` @5 `flip` &P @0 `Option`. These allow more ergonomic ^q ^a when mapping @y @l return `Result` &6 `Option`.","0.3.1"],"stable-heap":["Heap allocation @0 stable @3",C[0]],"alloc_counter":["Count allocations, reallocations, deallocations. Allow, deny, or forbid allocations on an expression or @Y basis.","0.0.4"],"noble-tips":["FABRIC noble to manage tips","2.0.0"],"clircle":["Detect IO circles in $r CLI apps arguments.",C[1]],"ipnetwork":["A @1 to work @7 IP CIDRs in @3",C[43]],"rs-docker":[C[527],"0.0.60"],"diff":["An LCS @n slice @5 $c diffing @2.","0.1.12"],"minus":["An $n paging @1 @0 @3","4.0.2"],"ss_ewasm_^S":[C[605],C[16]],"nj-build":["$j $H @0 node-bindgen","0.2.3"],"progress_bar":["A @8 @l allows you to display a progress bar (same style than @4 @S progress bar).","0.1.3"],"kth":["Find @4 k-th order element of an array (one of $i is @4 median)",C[0]],"rargs":["xargs + awk @7 pattern matching @j.",C[1]],"raystack":["WIP SkySpark @c",C[17]],"lapin-futures":["AMQP @c @1 @7 a @Z @n @x","0.33.0"],"tokio-proto":["A ^9 $U @k @0 rapid &D @5 highly scalableproduction deployments of clients @5 servers.","0.1.1"],"rg3d-ui":["Extendable UI @1",C[24]],"ascii_^0":["generates ascii trees","0.1.1"],"crypto-ops":["Set of low-@C @y useful @0 cryptography","0.1.1"],"concurrent_prime_sieve":["Tools @0 $E filters @5 &C @7 primes concurrently. @3 @2 of @4 Sieve of Atkin. @Q @2 runs in O( sqrt(max_num) + section_size ) (where section_size = max_num - min_num). Integrated @7 primal @0 increased speed in some cases.","0.3.3"],"rhusics-transform":[C[528],C[2]],"&z":["A set of @g @0 representing ^s requests @5 responses.","0.2.5"],"bit_$b":["A $y @0 iterating &6 @4 individual bits of a $b.","0.2.3"],"ds323x":["Platform-&f @3 ^j @0 @4 DS3231, DS3232 @5 DS3234 extremely accurate real-$z clocks (RTC).",C[2]],"$I_brainfuck":["A Brainfuck JIT ^2","0.0.3"],"lcms2":["ICC color profile ^a. Rusty @h @0 Little CMS","5.4.1"],"matrix_bot_^S":["@x @0 $O a bot @0 @4 Matrix messaging @9","0.5.2"],"tc-consensus":["Collection of $u &A specific imlementations @0 Tetcore (@c)",C[7]],"elrond-wasm-module-pause":["Elrond $x smart contract ^F @l @s a contract pause flag","0.21.2"],"proc-macro-error-attr":["Attribute @e @0 ^B-@e-^q @8","1.0.4"],"epsilonz":["Functional $m in @3","0.0.2"],"vrf":["Fast @5 extensible Verifiable Random Function (VRF) @1; currently supporting secp256k1, secp256r1 @5 sect163k1 curves",C[8]],"futures-stable-preview":[C[529],"0.2.3"],"mudpie":["Dynamic ^s Server. Pure $M @3, no &c.","0.2.6"],"google-cloudlatencytest2-cli":[C[530],"2.0.4+20160309"],"obfstr":["Compiletime $c constant obfuscation @0 @3",C[1]],"MBrane":["MBrane @T in @3","1.0.10"],"msgbox":["A multi-@N message box modal @7 a OK button, $i runs synchronously.","0.6.1"],"swc_bundler":["Very $I ecmascript bundler","0.77.1"],"simplesched":["A naive coroutine @n scheduler @7 $n I/O @j","0.1.1"],"nfc":["@3 @6 @0 @4 libnfc @1",C[38]],"hbs-acc-sys":["$L @6 to libhbs-acc",C[5]],"notedown_ast":["notedown ast @5 converter",C[28]],"range-split":["^e @0 splitting sequences @7 range parameters",C[2]],"bb8":["Full-featured @J ($v-@n) connection pool ($C r2d2)","0.7.1"],"schedule":[C[531],C[0]],"itc":["Interval Tree Clocks as described in @4 itc2008 paper.",C[4]],"@9":[C[808],"3.1.9"],"vgmdb":["Retag mp3s @u vgmdb","0.3.1"],"gfx_app":["GFX example $U @k","0.9.0"],"twitch-irc":["Connect to Twitch chat @t a @3 $U.","3.0.1"],"summed-area-table":["@v of a summed area table","2.0.0"],"posixmq":["An idiomatic @1 @0 @u posix message queues, @7 optional mio $T","1.0.0"],"slab_^l":["Slab ^l @0 no_std systems. Uses &l slabs @7 blocks of different sizes @5 a linked list @0 blocks larger than 4096 bytes","0.3.5"],"rbspy":["Sampling CPU profiler @0 Ruby","0.8.1"],"lldb":["@3-$C @6 to @4 public LLDB @x. LLDB is @4 debugger @t @4 LLVM ^g @5 is @4 @O debugger on macOS.","0.0.10"],"^0_magic":[C[186],"0.2.3"],"enum-utils-from-str":["Code ^1 @0 mapping @t $p to arbitrary ^V",C[4]],"luminance":["Stateless @5 $l-$M ^T @k","0.44.1"],"vk-mem":["@3 ffi @6 @5 idiomatic @h @0 AMD Vulkan Memory Allocator (VMA)",C[8]],"datatest-stable":["Data-driven tests @l work on stable @3","0.1.1"],"swc_css_@i":["CSS paresr","0.24.0"],"tree-sitter-highlight":["@p @0 performing syntax highlighting @7 Tree-sitter",C[42]],"sapp-android":[C[532],"0.1.8"],"ya-client-model":["Yagna REST @x @w model",C[9]],"sluice":[C[758],"0.5.5"],"lockfile":["Create lockfiles @l remove themselves when they are dropped",C[1]],"drop_struct_@e_@b":["A @b @e to free (drop) $g @0 &o @l are $2 in @4 $L.","0.5.0"],"clipars":["Command $D @i @0 @3","1.2.3"],"ntest_timeout":["Timeout &U @0 @4 ntest @k.","0.7.3"],"rustbreak":["A modular @5 configurable ^Q","2.0.0"],"git-delta":["A syntax-highlighting pager @0 git","0.9.1"],"future-utils":["Extensions to Rust's Future @5 Stream $3","0.12.1"],"ucl":["@3 @6 to libucl","0.1.4"],"arg_combinators":["Command $D argument combinators","0.6.0"],"heron_rapier":["Physics behavior @0 Heron, @u rapier","0.12.1"],"msoffice_&J":["@p &J by other MS OpenOffice $0 @G &4","0.1.1"],"exonum-build":["Helper @y @0 $O build.rs @0 exonum services.","1.0.1"],"google-vision1":["A @q @1 to @o @7 Vision (@9 v1)",C[224]],"jubjub":["@v of @4 Jubjub elliptic curve group",C[7]],"slog-try":["Convenience @a @0 &H @7 an optional slog Logger.","1.0.1"],"pyoxidizer":["Package self-contained Python @P",C[43]],"google-bigquery2":[C[533],C[534]],"@b_&I_@e":[C[535],"0.10.2"],"sn_@c":["Safe Network Client","0.61.2"],"sgx_tunittest":[C[21],"1.1.1"],"bevy_ron":["temporary bevy ron fork","0.1.3"],"tk-redis":["A minimal redis @c @1 @n on @Z+$v-@F","0.1.3"],"hap":["@3 @2 of @4 Apple HomeKit Accessory ^c (HAP)","0.1.0-pre.11"],"electrs":["An ^Z re-@2 of Electrum Server in @3","0.9.1"],"ellipticoin":["A @1 @0 $K Elliptcoin smart contracts","0.1.6"],"git-mit-config":["A @D @0 enabling @5 disabling git lints","5.11.6"],"time-macros":[C[536],"0.2.3"],"beep":["Beep @4 PC speaker",C[1]],"cargo-extras":["A $b of @S subcommands",C[1]],"nrfind":["A set of useful mathematical @y @0 floating point ^M @n on @4 Newton-Raphson method @0 finding roots.","1.0.3"],"issue-47048-fix":["Issue #47048 fix","1.0.0"],"tari_pubsub":["Single publisher @7 &l subscribers to topic &y",C[5]],"trim-margin":["A $w @8 to help @7 layouting multi-$D $p by detecting their margin.",C[0]],"glsl-to-spirv-macros-impl":["@Q is an @2 detail of @4 @8 glsl-to-spirv-macros.Please see @l @8 @0 more $f.",C[0]],"tls-api-openssl":["TLS @x @2 &6 openssl @8","0.7.0"],"overflower_@j":["A bunch of specialized $3 + impls to allow automated overflow ^a ^Y $l inference. Nightly only","0.1.5"],"gloo-dialogs":["Convenience @8 @0 ^p @7 dialogs in browser",C[0]],"enum-repr-derive":["@K $y @0 converting enum to @5 @t its primitive repr $l",C[3]],"signal-hook-registry":["Backend @8 @0 signal-hook","1.4.0"],"telegram-bot-fork-raw":[C[550],"0.7.8"],"union":["Macro $i @s useful shortcut combinators, combines sync/@J chains, transforms tuple of results in result of tuple, supports single @5 multi &d (sync/@J) step by step execution of branches.","0.1.7"],"decnumber-sys":["Low-@C @6 @0 libdecnumber.","0.1.5"],"strason":["Json @i @l preserves field ordering @5 stores ^M as $p, preserving their full @w",C[2]],"simpl":["No &m ^q ^a, @5 own ^q construction @5 conversion lib",C[0]],"orbtk-widgets":["Base OrbTk widget @1.",C[204]],"libimagentrylist":[C[39],"0.6.4"],"sapp-ios":[C[706],C[4]],"brids":["Parse @5 ^n &L CPF/ICN @5 CNPJ, Brazil's ID ^M.",C[2]],"context":["Cooperative multitasking @0 @3 @u Boost.Context","2.1.0"],"ever-macro":["Helper @e @0 `ever`, $i prints @4 $j $f @7 minimal boilerplate.",C[3]],"piston-rect":["Helper &P @0 computing @d rectangle layout",C[1]],"block-modes":["Block cipher modes of operation","0.8.1"],"hiirc":["High-@C @5 featureful IRC @c @1 @7 ease of $d in mind.","0.5.0"],"glium_^D_rusttype":["glium_text fork, ^D drawing @7 glium @5 rusttype","0.3.3"],"drm":[C[537],"0.5.0"],"ggrep":["GGREP @0 grouping","1.0.0"],"abackus":["&B &I @u EBNF",C[8]],"&k_dir":["A @8 @0 embedding &k assets ^d warp webservers.",C[3]],"copy_dir":["Copy directories recursively in a straightforward @5 predictable way.",C[4]],"ical":["Ical/Vcard @i @0 @3","0.7.0"],"ppapi":["@3 idiomatic @6 to parts of @4 Pepper @x",C[4]],"pyo3cls":[C[886],"0.12.5"],"jurisdiction":["A ^O @x-&E $F @0 @4 jurisdiction in @4 world,@5 their accompanying &k $f pertaining to @l jurisdiction.Information available includes:* ISO 3166 country codes* UN M49 Region classifications","0.1.1"],"&J_arena":["A &d-$M & ^Z $g pool","0.8.4"],"queen":["message queue","0.26.0"],"cursive_calendar_view":["A basic calendar view @2 @0 cursive.","0.7.2"],"efflux":["Easy MapReduce @5 Hadoop Streaming interfaces in @3","2.0.1"],"pathfinder_simd":["A @d SIMD @1","0.5.1"],"libbpf-rs":["libbpf-rs is a $M, idiomatic, @5 opinionated @h $G libbpf-@r",C[15]],"air-interpreter-wasm":["Distribution of AIR interpreter as .&s","0.16.3"],"tickrs-api":["@x @0 tickrs","0.14.5"],"flate2":["DEFLATE ^C @5 decompression exposed as Read/BufRead/Write streams.Supports miniz_oxide, miniz.c, @5 &l zlib @T. Supportszlib, gzip, @5 raw deflate streams.","1.0.22"],"pgp":["OpenPGP @2 in @3","0.7.2"],"two-lock-queue":["A MPMC channel @n on @4 michael-scott two lock queue $1.","0.1.1"],"tikv-jemalloc-sys":[C[538],"0.4.2+5.2.1-patched.2"],"cargo-cov":["Collect source coverage via LLVM-GCOV (⚠ not fully tested, may eat $r laundry)","0.0.5"],"cw-storage-plus":["Enhanced/experimental ^x engines",C[12]],"xorshift":["@v of @4 high $J xoroshiro128+, xorshift128+, xorshift1024*, @5 splitmix64 pseudo &L &a generators.","0.1.3"],"deno-x86_64-unknown-linux-gnu":[C[539],"0.24.0"],"webrtc-unreliable":["UDP-$C (unreliable, unordered) communication $t Javascript/$x @5 &8 @3 via WebRTC","0.5.1"],"minicbor-derive":["&n minicbor `Decode` @5 `Encode` $3.","0.7.1"],"fluvio-stream-model":["Fluvio Event Stream Model","0.5.2"],"neo4rs":["neo4j ^j in @f","0.5.9"],"framestream":["Frame Streams @2 in @3","0.2.5"],"@f_decimal_@a":["Shorthand @a to assist $Z Decimal @g.","1.17.0"],"mitochondria":["Mitochondria is @4 powerhouse of @4 `Cell`","1.1.2"],"swc_visit_@a":[C[767],"0.2.3"],"rundo_attrs":["@a lib by rundo",C[2]],"google-kgsearch1":[C[540],"1.0.4+20151215"],"pleingres":["A ^X @3 @m to PostgreSQL. Will never block (hence @4 name, a pun on @l fact in french).","0.4.5"],"miracl_amcl":["$8 Apache Milagro Cryptographic @p ($4 3.2)","3.2.5"],"handlebars-markdown-helper":["A ^t @0 handlebars @l adds markdown &S","0.7.0"],"napi-sys":["NodeJS N-@x raw $W","1.1.1"],"sensors":["A @3-&E @m to lm-sensors",C[5]],"slack-morphism":["Slack Morphism is a modern @c @1 @0 Slack Web/Events @x @5 Block Kit","0.9.0"],"mapcomp":["Python-$C list comprehensions @0 ^E containers",C[8]],"google-reseller1_sandbox-cli":[C[541],"2.0.4+20160329"],"analit":["Add another dimension to $r @3 ^g @7 analog geometric literals.",C[0]],"wayland":["@K @6 @0 Wayland.","0.0.2"],"muon-rs":["Serde @j @0 MuON @w interchange @G","0.2.3"],"juliex":["a very basic future executor",C[542]],"ns-std-threaded":["Name &t @2 @0 abstract-ns @l uses stdlib's @2 run in a &d pool",C[1]],"can-dbc":["A @i @0 @4 DBC @G. $8 DBC @G is $2 to exchange CAN ^9 @w.","3.0.2"],"cannyls_rpc":["RPC @1 @0 operating cannyls's &N @t remote nodes","0.3.1"],"jwt":["^k Web Token @1",C[23]],"purescript_waterslide":["Generate Purescript @g @t $r @3 @g","0.3.1"],"differential-dataflow":["An incremental @w-parallel dataflow @N",C[28]],"zerodmg-emulator":[C[543],"0.1.9"],"byteorder":["@p @0 &3/$O ^M in big-endian @5 little-endian.","1.4.3"],"logind-dbus":["Communicate @7 @4 LoginManager DBus @x","0.1.1"],"newrelic-sdk":["@3 @6 @0 New Relic.","0.0.3"],"allegro_ttf-sys":["Allegro 5 ttf addon @3 $W","0.0.41"],"hashindexed":["A cache. A set $i compares elements in a customisable way ^Y overriding @4 eq() @5 ^z() @y on @4 $l itself.","0.1.1"],"locale-types":["Idiomatic @g @0 locale identifiers.",C[2]],"rug":["Arbitrary-precision integers, rational, floating-point @5 complex ^M @n on GMP, MPFR @5 MPC","1.13.0"],"pennereq":["Port of @4 Penner easing equations to @f","0.3.1"],"throttle":["Time-@n rate-limit $w",C[0]],"desync":["A hassle-free @w $l @0 $n $m","0.7.0"],"mucow":["Equivalent to Cow @0 mootable @w. $8 semantics are copy-on-consume, so a copy is only needed if you want to take ownership. Unlike Cow, @4 contents can be mutated ^Y making a copy.",C[0]],"onnxruntime-sys":["Unsafe @h $G Microsoft's ONNX Runtime","0.0.14"],"gdnative":["$8 Godot game engine's gdnative @6.","0.9.3"],"blurz":["Bluetooth lib @0 @3 @u blueZ/dbus",C[2]],"geoutils":["A $b of geo computation @E","0.4.1"],"simple-interner":["A @d append-only interner",C[3]],"html-validation":["Validation @0 HTML elements @5 attributes",C[4]],"xlsxwriter":["Write xlsx $0 @7 &a, formula, $c, formatting, autofilter, merged cells, @w validation @5 more.","0.3.5"],"symspell":["Spelling correction & Fuzzy search","0.4.1"],"cubic_spline":["Function @l calculates curve points @0 cubic spline","1.0.0"],"elp":["^r ELB Access Log &B","2.0.0"],"$P_guardduty":["^r ^N @0 @3 - Amazon GuardDuty @ 2017-11-28",C[27]],"flexmesh":["Mutable mesh $V @7 persistent adjacency @w @5 n-gon @j",C[4]],"elastic_@g":["A strongly-typed @2 of Elasticsearch @F @g @5 Mapping @x.",C[384]],"mdl":["Data model @1 to share app state $t threads @5 ^I @5 persist @4 @w in @4 filesystem. Implements a @d way to store &o instances in a LMDB ^Q @5 other &P $C BTreeMap","1.0.5"],"cookie":["^s cookie @R @5 cookie jar ^A. Supports signed @5 private(encrypted, authenticated) jars.","0.16.0-rc.1"],"dia-i18n":["ISO 3166-1 @5 ISO 639 codes","0.9.0"],"feattle-sync":[C[544],"0.7.0"],"garando_pos":[C[545],C[0]],"yoga-sys":["Raw @f @6 @0 yoga (facebook flex layout cross-@N $a)","0.2.3"],"chunk_store":["A @d, non-persistent, disk-@n key-&5 store.","0.4.1"],"flamescope":["Export flame @w to speedscopes profile @G",C[4]],"uuid":["A @1 to ^n @5 parse UUIDs.","0.8.2"],"futures-batch":["An adaptor @l chunks up elements @5 flushes them after a timeout or when @4 buffer is full. (Formerly known as $v-batch.)","0.6.0"],"rustc-ap-rustc_session":["^W published $4 of @4 @X `rustc_session` in @4 @f-lang/@f repository @t commit 9a27044f42ace9eb652781b53f598e25d4e7e918 $8 publishing script @0 this @8 lives at: &Y://github.com/alexcrichton/&K-auto-publish",C[215]],"futures-spawn":["An $F @0 spawning @Z","0.1.1"],"$M_@F":["SAFE @F","0.43.1"],"polyline":["Encoder @5 decoder @0 @4 Google Encoded Polyline @G","0.9.0"],"alt_$6_@b":[C[385],"1.0.119"],"near-vm-errors":["Error @l can occur inside Near Runtime encapsulated in a separate @8. Might merge it later.",C[359]],"uuid_to_pokemon":["Translates a UUID to a qualified pokemon name.","0.3.1"],"wasm-builder":["Tetcore $w @0 $K WASM binaries","3.0.1"],"libp2p-websocket":[C[546],C[547]],"rsbx":["Enhanced @2 of SeqBox in @3","2.0.0"],"is":["@Q is a @8 @l was made @7 idea @l made no sense to begin @7. I probably will never $d it @0 anything. If you want this name, please contact me @5 I'll transfer it to you unconditionally. Sorry @0 inconvenience.","0.6.0"],"event-manager":["Abstractions @0 ^5 event @n systems",C[5]],"libflo_^q":["Allows libflo libs to return errors.",C[4]],"routerify":["A ^O, idiomatic, composable @5 modular router @2 @7 &G @j @0 @4 @3 ^s @1 hyper.rs.","2.2.0"],"aabb3":["aabb3",C[5]],"bendy":["A @f @1 @0 $5 @5 ^P bencode @7 enforced canonicalization rules.",C[450]],"fehler-macros":["^o des Fehlers","1.0.0"],"liberasurecode":["A @3 @h @0 `openstack/liberasurecode`","1.0.3"],"moving_avg":["Moving average filter",C[3]],"lichessbot":["Lichess bot. Under construction.","0.1.36"],"fil-ocl-core":[C[548],"0.11.4"],"tensorflow-internal-macros":["$8 @X @s @a @0 ^J usage in TensorFlow. No backwards compatibility guarantees are made.","0.0.1"],"ckb-pow":[C[347],C[302]],"inspect":["Advanced &H @0 dumping expressions during debugging.",C[4]],"weather_icons":["An @x to organize icons @t &Y://weathericons.io",C[2]],"take_mut":["Take a T @t a &mut T temporarily",C[8]],"subset-map":["A map where @4 keys are subsets of an initial set of elements","0.3.4"],"loggest":["A high $J &H facility @0 Rust's log @8",C[8]],"ckb-resource":["Bundled resources @0 @4 CKB $Q.",C[302]],"qttypes":["Manually maintained buildings @0 Qt &5 @g","0.2.4"],"html2md":["@p @5 $Q to convert @d html documents ^d markdown","0.2.13"],"linked-list":["An alternative @2 of std::&C::LinkedList","0.0.3"],"lnp-core":["LNP Core @p: @f @2 of modular lightning channels architecture",C[549]],"chalk-engine":["Core $y $a @t Chalk ^g","0.72.0"],"grid":["Dynamic ^G 2D @w $V.","0.5.0"],"scheduled-thread-pool":["A scheduled &d pool","0.2.5"],"bytehash":["Trait abstracting &6 ^z-@y, allowing digests to be viewed as byte slices.","3.0.0"],"stats_^u":[C[50],"0.1.3"],"smbclient-sys":["$L @6 to libsmbclient",C[0]],"sled-extensions":["Wrappers $G @4 Sled ^b ^Q to permit storing structured @w",C[3]],"monteflake":["Use &Y://crates.io/$R/flaken instead","0.1.3"],"askalono-cli":["a ^4 to detect @4 contents of license @z","0.4.3"],"rua":["Secure jailed AUR ^t @0 Arch &j","0.18.2"],"oxidize":["Awesome matchers/asserts",C[5]],"port_scanner":["A @d port scanner","0.1.5"],"date_$z":["Date_Time is a high-@C @f @1 @0 $d in situations where precision beyond seconds is not necessary.","2.2.0"],"tokio-vsock":["&b Virtio socket @j @0 @3","0.3.1"],"futures-await-test-macro":["Helper @8 @0 @Z-await-^7.",C[1]],"libsoundio-sys":["&M @6 to @4 libsoundio @1.",C[1]],"ipc-channel":["A multiprocess drop-in replacement @0 @3 channels",C[23]],"rand04_compat":["Wrappers @0 compatibility @7 rand 0.4.","0.1.1"],"telegram-bot-raw":[C[550],C[7]],"hetseq":["Defines $3 @5 @g to work @7 heterogenous sequences",C[3]],"seccomp-sys":["low-@C @6 to libseccomp","0.1.3"],"sealrs":["Set of classic $n $9 (Actors, Executors, Futures / Promises)","0.13.2"],"elastic-array-plus":[C[649],C[13]],"juniper_subscriptions":["Juniper SubscriptionCoordinator @5 SubscriptionConnection @T",C[72]],"crypto-tests":["Test &w @0 ^w ^3","0.5.5"],"wikibase":["A @1 to $X Wikibase","0.5.0"],"bip_dht":["@v of @4 bittorrent mainline DHT","0.6.0"],"json-color":["Colorize ^k $p","0.7.1"],"mun_lld":["@H @0 LLD $2 to link Mun binaries","110.0.0"],"finql":["A quantitative finance toolbox",C[13]],"binomial-iter":["@W &1 to iteratively compute @4 binomial coefficient",C[0]],"command-macros-plugin":["@v @8 @0 @D-@a","0.2.7"],"crow":["A pixel perfect 2D &S $a","0.7.2"],"distill-core":["Core @g @5 ^u @0 `distill`","0.0.3"],"spidev":["@W $X to @4 &j spidev @m. Thisinterface allows @0 $H of @4 spidev device,half-duplex SPI $X, @5 full-duplex SPI $X.","0.5.0"],"arrow2":["Unofficial @2 of Apache Arrow spec in $M @3","0.6.2"],"click":["A @D-$D REPL @0 Kubernetes @l integrates ^d existing ^y workflows","0.5.4"],"corepack":["A no_std @j @0 messagepack in $6","0.4.1"],"failure_ext":["Convenience ^h $3 @0 @4 failure ^q-^a @8",C[4]],"symbolic-proguard":["A @1 to ^I ProGuard @5 R8 mapping @z @5 symbolicate frames fromoptimized @P.","7.5.0"],"bpfjit-sys":["@3 @6 to NetBSD's cBPF JIT $a","2.0.0"],"frozen":["Wrapper $i restricts $X to inner $l.","1.0.0"],"add3":["Toy @8 @l will go through major $4 changes to demo semver.","4.0.0"],"$P_codedeploy":["^r ^N @0 @3 - ^r CodeDeploy @ 2014-10-06",C[27]],"tacho":["A prometheus-focused &q @1 @0 Future-aware @P","0.4.2"],"cargo-contribute":["Cargo &i @0 contributing to &D of $r &c",C[8]],"suppositions":["Property $S @7 automagic shrinking.","0.1.4"],"google-groupsmigration1-cli":[C[551],C[777]],"&V_schema_^7_suite_^7_case":[C[552],C[1]],"callgrind":["callgrind","1.1.0"],"tcp-channel":["SPSC channels, ^p on everything @l implements Read @5 Write",C[9]],"basis-universal-sys":[C[553],"0.1.1"],"snocat-cli":[C[1033],C[119]],"ocf":["Open Container Specification",C[30]],"watson":["a no_std &e assembly loader","0.9.2"],"multicache":["An LRU cache where each object has a given weight","0.6.1"],"chrootable-https":["Sandbox &E &Y @c",C[72]],"deepspeech-sys":["Bindgen &Z @0 @4 DeepSpeech C++ @x","0.9.0"],"&K_apfloat":["rustc_apfloat ripped out of rustc_private modified to @j compiling on stable.","0.1.3"],"nom-hpgl":["@3 HP-GL @i (@u nom)",C[3]],"rumble":["A @3 Bluetooth Low Energy (BLE) central modulelibrary, currently supporting &j/Bluez",C[1]],"smart-ptr":["Alternative smart pointers @0 @3","0.4.1"],"amethyst_^y":["Deprecated, merged ^d amethyst_tools","0.1.5"],"garcon":["A $b of $y @5 classes to make $r &d or @J @Y wait.","0.2.3"],"yeslogic-fontconfig":["RENAMED: $d @4 fontconfig @8 instead.","0.1.1"],"utp":[C[554],"0.7.0"],"rustfbp":["Rustfbp @s a @d, composable, clearly defined @x, @7 a C ABI @0 every agent within a Fractalide deployment.","0.3.34"],"ckb-db":["$8 ckb @w persistent @2",C[302]],"onefetch":["Git repository summary on $r $o","2.10.2"],"$6_bytes":[C[1041],"0.11.5"],"tessel":["Runtime @1 @0 @4 Tessel microcontroller.","0.3.1"],"rubygems_^S":["Query @4 rubygems.org @x",C[1]],"libdwfl":[C[141],"0.0.6"],"px8":["Open source fantasy console in @3","0.0.4"],"assign":["@K @e to allow mutating instance @7 declarative flavor","1.1.1"],"tic":["a high-$J stats @1 focused on rates @5 latencies @t timestamped events","0.6.0"],"newtype":["Custom &n to give tuple &o newtype semantics",C[5]],"rangemap":["Map @5 set @w $k whose keys are stored as ranges.Contiguous @5 overlapping ranges @l map to @4 same &5 are coalesced ^d a single range.",C[49]],"$P_apigateway":["^r ^N @0 @3 - Amazon @x Gateway @ 2015-07-09",C[27]],"frame-executive":["FRAME executives $a","3.0.0"],"libgo":["Basic Go @1 @l implements @4 Go Text ^c.",C[2]],"$o_^y":["A standalone @1 @7 no-std @j @0 @D $D $o interfaces. With autocomplete @j, &w @0 commands @5 propertiesand a prompt @2.",C[3]],"no_proto":["Flexible, Fast & Compact Serialization @7 RPC","0.9.60"],"try_match":["An expression @e @l does pattern matching @5 returns @4 result in `Result`.","0.2.3"],"float_next_after":["A $y @0 &8 @f f64/f32 nextafter","0.1.5"],"cortex-m-semihosting":["Semihosting @0 ARM Cortex-M processors","0.4.1"],"pest_vm":["pest grammar virtual machine","2.1.0"],"ugli":["Universal OpenGL Interface","0.7.0-alpha.4"],"spirv_cross":["Safe @h $G SPIRV-Cross","0.23.1"],"puffin":["@K instrumentation profiler @0 games",C[13]],"local-waker":["A synchronization primitive @0 &d-local task wakeup","0.1.1"],"odbc":["ODBC @h @0 idiomatic @3",C[26]],"google-tasks1":[C[650],C[65]],"syn-inline-mod":["Inlines modules in @3 source @V @0 source analysis",C[2]],"ssdp-client":["An $n @1 @0 discovering, notifying @5 subscribing to &N @5 services on a ^9.","1.0.0"],"pallet-tips":["FRAME &v to manage tips","3.0.0"],"skeptic":[C[555],"0.13.6"],"flo_^L":["Pubsub @5 related streams @0 @3 @Z","0.6.0"],"proc-macro-crate":["Replacement @0 @8 (macro_rules keyword) in ^B-@a","1.1.0"],"odbc-sys":["ODBC ffi @6",C[42]],"chashmap":["Fast, concurrent ^z maps @7 extensive @x.","2.2.2"],"amcl":["$8 Apache Milagro Cryptographic @p ($4 3)",C[3]],"no-std-net":["Rust's std::net... ^Y @4 'std'.","0.5.0"],"$6_regex":["A $6 @h @l (de)serializes regex as $p","1.1.0"],"katex-doc":["See README",C[0]],"appendbuf":["A Sync append-only buffer @7 Send views.","0.1.6"],"reql-macros":["^o @0 @4 reql @8",C[1]],"pallet-mmr-primitives":["FRAME Merkle Mountain Range $9.","3.0.0"],"cargo-tree":["A Cargo &i @l visualizes a crate's &m graph in a ^0-$C @G","0.29.0"],"imgui-rs":["IMGUI-RS @s @3 @6 @0 IMGUI, a bloat-free intermediate mode GUI @1 @0 C/C++.IMGUI outputs vertex buffers @l you can render in $r 3D-pipeline enabled $U. It is $I, portable, renderer &f @5 self-contained.IMGUI does away @7 state synchronization by requiring @4 $U to explicitly pass all state required in real-$z. $8 user @m only retains @4 minimal amount of state required to facilitate @4 $7 required by each $l of widget supported by @4 @O.","1.47.0"],"async-sqlx-session":["sqlx session store @0 @J-session",C[2]],"tetsy-util-mem-derive":["Tetsy &O Crate @0 Memory Reporting","0.1.1"],"lok":["Count @4 &a of codes","0.1.4"],"yaml-merge-keys":["@v of @4 YAML merge key extension.http://yaml.org/$l/merge.html","0.4.1"],"stream-flatten-iters":["Flattens a ^L of iterators ^d one continuous ^L",C[3]],"segment_analytics":["Segment Analytics (segment.com) @c @0 @f ;)","0.1.3"],"xmc4200":["Peripheral $X @1 @0 XCM4200 ARM Cortex-M",C[2]],"ash-window":["Interop @1 $t ash @5 raw-window-handle","0.7.0"],"arguably":["A ridiculously @d argument-@R @1.","2.0.1"],"parity-rocksdb-sys":[C[321],"0.5.6"],"k8-config":["Read Kubernetes config","1.4.0"],"$u_failures":["Helpers @0 'failure', including io::Error &r @7 paths, quick_main!, display_causes_and_backtrace.","0.1.1"],"storage-proofs-post":["Proofs of Space Time","10.1.0"],"panic-itm":["Log panic &y @u @4 ITM (Instrumentation Trace Macrocell)","0.4.2"],"daemonize-simple":["A @d @8 to run an app as a Unix daemon","0.1.5"],"dbui-templates":["HTML templates $2 by @4 dbui @U","0.0.64"],"rayon_croissant":[" bikeshedding @4 name: something @l is mapped folded @5 collected, a 🥐",C[3]],"dasp_window":["Windowing @Y abstractions (e.g. hanning, rectangle) @0 audio PCM DSP.",C[17]],"actix-web-middleware-redirect-https":["A &G @0 actix-&e $i forwards all `&z` requests to `&Y` @7 optional url $c replacement.","3.0.1"],"docktape":["Wrapping @4 Docker @x","0.3.7"],"syn":[C[380],"1.0.81"],"rulinalg":["A linear algebra @1.","0.4.2"],"ff_@b":[C[238],C[16]],"cargo-rls-install":["@3 &R Server &x install","2.0.7"],"abscissa_@F":["Application microframework @7 @j @0 @D-$D option @R,$H, ^q ^a, &H, @5 $o interactions.This @8 contains @4 framework's @F $7.",C[482]],"louds-rs":["High $J LOUDS (Level-Order Unary Degree Sequence) @1",C[2]],"buf-min":["Minimal utf-8 $M buffer $3","0.6.1"],"free-ranges":["An ^Z @w $V @0 keeping track of indices $i are either free or not","1.0.7"],"ocl":[C[556],"0.19.3"],"libp2p-ratelimit":["Transfer rate limiting transport adapter @0 ^v",C[28]],"pre-proc-macro":["$q marco @T @0 [pre](&Y://crates.io/$R/pre/).",C[5]],"rusty-peg":["A @e @0 defining PEG parsers",C[2]],"rjq":["Redis job queue",C[1]],"flutter-engine":["Flutter $a embedder in @f","0.3.5"],"libressl-pnacl-sys":["openssl linking provider @0 PNaCl/NaCl targets.","2.1.6"],"x86_64":["Support @0 x86_64 specific instructions, registers, @5 $k.","0.14.6"],"redis-lua-macro":["Macro component of Redis Lua scripting ^t",C[2]],"epi":["Backend-&f @m @0 $O apps @u egui",C[23]],"atsamd21e18a":["Peripheral $X @x @0 ATSAMD21E18A $s (^8 @u svd2rust)","0.7.1"],"allegro_primitives-sys":["Allegro 5 $9 addon @3 $W","0.0.41"],"fast-modulo":["$I modulo calculation",C[1]],"der_@b":["Custom @b @j @0 @4 `der` crate's `Choice` @5 `Sequence` $3",C[853]],"enum-kinds":["Generate enums @7 matching variants but ^Y any of @4 associated @w.","0.5.1"],"tree-buf-macros":["Proc @a @0 @4 ^0-buf @8",C[13]],"prll-ri":["Parallel-RI, parallel executable $Q to wrap RIblast.","1.0.6"],"tokio-compat-02":["Tokio 0.2 compat @E",C[3]],"swc_css":["CSS apis @0 @f","0.24.0"],"nt_$4":["Queries @4 major, minor @5 $j $4 of ^6 (NT) efficiently.","0.1.3"],"theban_db_@U":["a unix socket @U @0 theban_db","0.3.6"],"mmap":["A @1 @0 dealing @7 $g-mapped I/O","0.1.1"],"ink_env":["[ink!] Low-@C @m @0 &2 @7 @4 smart contract Wasm executor.",C[107]],"joker":["A JavaScript tokenizer.","0.0.5"],"mozrunner":["Reliable Firefox ^I ^A.",C[15]],"$P_translate":["^r ^N @0 @3 - Amazon Translate @ 2017-07-01",C[27]],"pixiv":["Unofficial @f @1 @0 @4 Pixiv @x.",C[3]],"tarpit":[C[61],C[62]],"vaporetto_rules":["Rule-base filters @0 Vaporetto","0.1.3"],"fractal":["$8 @X @s a multiscale modeling @k @0 @4 analysis andsynthesis of positive-valued, long-range-dependent processes.","0.7.1"],"card_catalog":["Assists in collecting $0 metadata @0 later organization.","1.1.1"],"texture-synthesis":["Multiresolution Stochastic Texture Synthesis, a non-parametric example-@n $1 @0 image ^1","0.8.1"],"mg-settings":["Parse config @z.","0.4.3"],"proptest-derive":["Custom-@b @0 @4 Arbitrary $y of proptest.",C[1]],"lioness":["Lioness wide block cipher",C[4]],"pea2pea":["A &7 @1 allowing @d @5 quick creation of custom P2P nodes @5 networks.","0.28.0"],"telegram-typings":["Structs represents telegram bot typings","3.6.1"],"tokio-buf":["&b ^L of byte buffers",C[138]],"atat":["AT &B @0 serial @n device $R","0.13.1"],"@7_locals":["Function &U to return references to locals by @u CPS",C[1]],"hyper-timeout-connector":["A Hyper `NetworkConnector` $i offers a connection timeout",C[0]],"diesel_ltree":["Adds @j @0 @4 PostgreSQL ltree ^h to Diesel","0.2.4"],"holo_^z":["hashing &w supporting dht sharding","0.0.10"],"msg-transmitter":["A tcp-@n, single-@U-&l-clients model @7 @4 @3 $m @L.",C[9]],"smithy_@F":["$8 @F Smithy $7","0.0.7"],"errno":["Cross-@N @m to @4 `errno` variable.","0.2.7"],"cap-rand":["Capability-@n &L &a generators",C[42]],"hyphenation":[C[557],"0.8.4"],"sanitizer_@a":["&n @e @0 @4 sanitizer @8",C[5]],"nuklear-rust":["@3 @h @0 Nuklear 2D GUI @1 (github.com/vurtun/nuklear)","0.6.3"],"sharexin":["ShareX @0 &j @5 BSD","0.7.2"],"bounded-spsc-queue":["A bounded SPSC queue",C[2]],"oasis-macros":["^o $2 internally by @4 Oasis @k.",C[1]],"little":["Little interpreter designed as $I template $N.",C[1]],"riven":["Riot Games @x @p","2.1.0"],"sendgrid-api":["A fully ^8 & opinionated @x @c @0 @4 SendGrid @x.",C[3]],"extra_pointers":["Box, Rc @5 Arc do not suffice? Take some extra","0.1.4"],"randselect":["Tool @0 randomly selecting @z @t a directory.",C[1]],"max7219":["A @N &f ^j to @m @4 MAX7219 (LED ^j)","0.3.1"],"plugger-core":["$8 Plugger @j @1",C[1]],"dxguid-sys":["Contains DirectX GUIDs @0 COM typically found in `dxguid.lib`. See winapi @0 @g @5 constants.",C[3]],"minrs":["Visualizations @0 $Q @w in @4 wild","0.4.1"],"@F_&C":["@Q is a copy of libstd::&C @7 all @4 parts @l don't work in @F removed. Most importantly, it @s HashMap @5 HashSet.This @8 is (mostly) automatically ^8 @t @4 @f git source. Theversion of @4 source @l corresponds to $r ^2 $4 will beselected automatically by @4 $j script.This depends on @4 rand @8, so make sure to include @l @5 configure theno_std feature on it.","0.3.20170409"],"proc-macro2-diagnostics":["Diagnostics @0 ^B-macro2.","0.9.1"],"libadwaita-sys":["$L @6 @0 libadwaita",C[837]],"x509-parser":["&B @0 @4 X.509 v3 @G (RFC 5280 certificates)",C[28]],"psa-crypto":[C[718],"0.9.0"],"panic-control":["^e to ^7 @V @7 intentional panics","0.1.4"],"imgui-glium-renderer":["Glium renderer @0 @4 imgui @8",C[7]],"pmutil":["Utils @0 ^B-@e","0.5.3"],"cargo-bloat":["Find out what takes most of @4 space in $r executable.",C[12]],"audiotags-dev-macro":["@a $2 during @4 &D of audiotags","0.1.4"],"htmlq":["Like jq, but @0 HTML.",C[1]],"butlerd":["A @8 @0 @u @4 butlerd @x",C[4]],"@t_map":["A @8 @l exposes @4 `FromMap` $y",C[0]],"&k_table_@b":[C[558],"0.1.34"],"crc":["@3 @2 of CRC(16, 32, 64) @7 @j of various standards","2.0.0"],"sampi":["Sampi is a @M @G, @0 0 - 900 bytes of @w, @7 a digital signature, timestamp @5 optional Proof of Work",C[2]],"left-pad":["@W left-padding @0 $p.","1.0.1"],"google-appsactivity1":[C[559],"2.0.8+20200628"],"btc_spv_bin":[C[560],"1.2.32"],"chariot_slp":["A @1 @0 &3/$O Age of Empires (1997) SLP @z",C[4]],"grep-searcher":[C[561],"0.1.8"],"shoggoth_@a":[C[1063],"0.0.19"],"link-ippvm":["link ippvm @1 (part of ipp-@r Intel IPP @6)",C[0]],"parse-hosts":["&B @0 an /etc/hosts $0.","0.5.0"],"prexcl":["Prexcl is an esoteric proof-of-concept $m @L.","0.0.10"],"fastobo":["Faultless AST @0 Open Biomedical Ontologies.","0.13.1"],"smbus-pec":["Minimal portable @2 of SMBus Packet Error Code calculation $1.","1.0.1"],"glyph_brush_draw_cache":["Texture draw cache @0 ab_glyph","0.1.4"],"http-service-mock":["Creates a HttpService @U mock to ^7 requests/responses against $r app","0.5.0"],"imag-ref":["Part of @4 imag @F ^m: imag-ref @D",C[12]],"balloon":["Balloon Hash","0.0.14"],"interoptopus_^B":["^o to produce Interoptopus item info.","0.13.6"],"clicolors-control":["A $u $w @1 to control CLI colorization","1.0.1"],"wikidot-normalize":["@K @1 to provide Wikidot-^i $c normalization","0.9.2"],"rain":["Visualize vertical @w inside $r $o.","1.0.1"],"mockstream":["Stream (Read+Write $3) @T to be $2 to mock real streams in tests.","0.0.3"],"gleam":["Generated OpenGL @6 @5 @h @0 Servo.","0.13.2"],"rmesg":["@Q is a fully @3-@n @2 of @4 popular dmesg &j $w, giving programmatic $X to @4 kernel log buffer.","1.0.16"],"pitch-detection":["A $b of ^3 to determine @4 pitch of a sound sample.",C[3]],"&q":["A ^O &q facade.",C[26]],"linregress":["ordinary least squared linear regression @7 some basic statistics","0.4.4"],"gh-emoji":["Convert `:emoji:` to &h @u GitHub's emoji names","1.0.6"],"Memoirs":["Memoization @y @0 @3",C[4]],"buffoon":["@K ^c Buffers @2","0.5.0"],"systemd-crontab-generator":["Systemd @B @0 crontab @z @j","1.0.2"],"configure_me":["A @1 @0 &u $U $H easily.",C[2]],"sc-consensus-pow":["PoW &A $1 @0 substrate","0.9.0"],"climer":["CLI timer app","0.6.0"],"poldercast":["Peer to Peer topology ^A","1.2.0"],"papergrid":["Papergrid is a @1 $i provide an paper $C table printing","0.1.23"],"wasmer-engine-jit":["Wasmer JIT Engine","1.0.2"],"simple-html-template":["Html Template","0.2.4"],"merlin":["Composable proof transcripts @0 public-coin arguments of knowledge","3.0.0"],"bit_field":["@K bit field $y ^R get_bit, get_bits, set_bit, @5 set_bits &P @0 Rust's integral @g.",C[12]],"noble-bounties":["FABRIC noble to manage bounties","2.0.0"],"http-bytes":["Byte buffer to/@t &z::{Request,Response}",C[0]],"feedly_^S":["@f @2 of @4 feedly REST @x","0.4.7"],"drone-stm32-map-periph-exti":[C[46],C[24]],"prometheus_reporter":["Prometheus @j @0 @f","0.0.2"],"atelier_&V":["@3 &8 ^k @G @0 @4 ^r Smithy IDL.","0.2.7"],"supercow":["A ^G way to accept general reference-$C ^V ^Y proliferatinggenerics.",C[0]],"curve25519-dalek-ng":[C[562],"4.1.1"],"error-iter":["Error::chain on stable @3",C[3]],"tptp":["Parse @4 TPTP @G",C[53]],"td_clua":["@H @0 Lua 5.3",C[4]],"state":["A @1 @0 $M @5 effortless global @5 &d-local state ^A.","0.5.2"],"yocto":["A minimal, $g-only @w store",C[1]],"solsa":["Static analysis ^4 aggregator @5 reporter @0 Ethereum smart contracts","0.1.7"],"cache_$D_size":["A @8 @l exposes @4 size of a cache $D on @4 current architecture.","1.0.0"],"letter-avatar":["Generates user avatars @u username initials","1.3.0"],"ethabi-next":[C[563],"13.3.0"],"wires":["Proxy @0 @u WebDriver clients to @o @7 Gecko-@n browsers.","0.7.1"],"symphonia-bundle-flac":["Pure @3 FLAC demuxer @5 decoder (a part of ^g Symphonia).",C[2]],"svgmacro":["Write any SVG easily @t @3!",C[8]],"mop-structs":["Low-@C $k @0 MOP","0.0.10"],"bigbro":["@p @0 tracking $0 accesses of processes","0.5.2"],"vk-sys":["@H @0 @4 Vulkan ^T @x","0.7.0"],"wasm-bindgen-futures":["Bridging @4 gap $t @3 Futures @5 JavaScript Promises","0.4.28"],"githelper":["Wrapper $G git @7 @y @0 $u tasks related to git repositories.",C[1]],"tari_&Q":["Tari Cryptography @1","0.11.2"],"hassle-rs":["HLSL ^2 @1, this @8 @s an $L layer @5 idiomatic @f &r @0 @4 new DXC hlsl ^2 @5 validator.","0.5.4"],"google-oauth2_v2":["A @q @1 to @o @7 oauth2 (@9 v2)","0.1.14+20160330"],"bufrng":["An RNG @l generates '&L' ^M copied @t a given buffer. INTENDED FOR TESTING AND FUZZING ONLY!!","1.0.2"],"tmkms":["Tendermint Key Management System: @s isolated, optionally HSM-backedsigning key ^A @0 Tendermint @P including validators,oracles, IBC relayers, @5 other transaction signing @P","0.11.0-pre"],"syslog-ng-build":["Build script &w",C[3]],"$6_state":["Stateful @M/&9 @0 $6","0.4.8"],"sdl2_gfx":["SDL2_gfx @6 @0 @3","0.24.0"],"wrapped-vec":["Macro @0 $E wrapped Vec @g @5 associated boilerplate",C[1]],"mysql":["Mysql @c @1 implemented in @f","21.0.2"],"libthemis-sys":["$L $W to libthemis",C[15]],"silicon":["Create beautiful image of $r @V","0.4.3"],"coarsetime":["Time @5 duration @8 optimized @0 speed","0.1.19"],"staccato":["Statistics @t @4 @D $D","0.1.9"],"petgraph-graphml":["GraphML &Z @j @0 petgraph","3.0.0"],"unjson":["Tools @0 destructuring ^k @w.","0.0.5"],"google-consumersurveys2":["A @q @1 to @o @7 Consumer Surveys (@9 v2)","2.0.8+20170407"],"bbs":["$8 BBS+ signature scheme","0.4.1"],"lsp-text":["&O $7 @0 ^D ^a @0 LSP servers.",C[0]],"spirv_headers":[C[967],"1.5.1"],"prolog_@i":["An operator precedence @i @0 rusty-wam, an up @5 coming ISO Prolog @2.","0.8.68"],"libyubihsm":["$L @6 to libyubihsm.so",C[5]],"^I":["Process.",C[1]],"rust-gpu-tools":["@3 OpenCL &1","0.5.0"],"tantivy":[C[285],"0.16.1"],"async-process":["Async @m @0 ^p @7 processes","1.2.0"],"float_eq":["Compare IEEE floating point $9, &o @5 &C @0 equality.","0.7.0"],"htmlize":["Encode @5 decode HTML entities in UTF-8","0.5.0"],"if_chain":["Macro @0 $O nested `if let` expressions.","1.0.2"],"tls":["@H @0 libressl's libtls","0.0.3"],"cblas_ffi":["CBLAS $L @6.",C[0]],"oboe-sys":["Unsafe @6 @0 oboe an android @1 @0 low latency audio IO","0.4.4"],"takuzu":["Takuzu (a.k.a. Binairo) &a puzzle solver","1.1.1"],"framing":["Fast frames @0 video @5 images.","0.6.0"],"netcdf-src":["Build scripts @0 $K `netCDF` @t source","0.1.3"],"spirit-hyper":["Hyper &w @0 Spirit","0.9.0"],"xcolor":["Lightweight color picker @0 X11","0.5.1"],"geojson_d3":["Process GeoJSON (Multi)Polygons @0 $d @7 D3","0.2.3"],"pipe-trait":["Make it possible to chain regular @y",C[9]],"sp-application-crypto":[C[564],"3.0.0"],"investments":["Helps you @7 managing $r investments","3.8.0"],"tinystr-macros":["Proc @a @0 TinyStr.",C[3]],"home":["Shared $h of home directories","0.5.3"],"num-bigint-dig":[C[864],"0.7.0"],"pyo3-file":["A &7 ^t @1 @0 ^p @7 python $0-$C objects @7 @f",C[2]],"endianrw":["Reading @5 $O ^M @7 specific endianness",C[8]],"@b_is_enum_variant":["^W derives `is_dog` @5 `is_cat` &P @0 `enum Pet { Dog, Cat }`.","0.1.1"],"protocoll":["clojure &X protocols @0 @f &C.","0.3.1"],"yew_form":["Bringing MVC to Yew! A set mildly opinionated Yew component to map @5 validate a model to a HTML form","0.1.7"],"stakker":["A ^O low-@C single-threaded actor @I","0.2.4"],"syncbox":["Concurrency @E @0 @3","0.2.4"],"cargo-sync-readme":["Generate a Markdown section in $r README @n on $r @3 documentation","1.1.0"],"libvips":["Safe @6 @0 libvips","8.3.0"],"actix-framed":["Actix framed app @U","0.3.1"],"nu-pretty-hex":[C[565],"0.39.0"],"water":["@W &d-$M distributed message sending facility supporting synchronous @5 $n I/O across ^I @5 machine boundaries. It also uses nets $i allow message broadcasts to all, groups, or specific endpoints $i eliminates @4 need @0 tons of individual channels to interconnect threads. It also @s inter-^I communication @u a more restricted raw message $l. It is hoped @l this @1 can replace @4 current channel $7. Also supports waiting on &l endpoints (receivers) $i makes segmentation @5 bridging easier to implement if needed.","0.16.45-alpha"],"memsocket":["An $n in-$g socket-$C @m.","0.1.3"],"conduit-git-http-backend":["Conduit handler @0 running `git &z-$N` @5 serving up a git repository.",C[78]],"cryptoxide":["^X @2 of various $u modern ^w ^3, WASM ^i","0.3.3"],"gluon_completion":["Auto-completion @0 @4 gluon $m @L",C[43]],"videocore":["@3 @6 @0 Broadcom's VideoCore @x","0.1.3"],"salvo_@F":[C[83],C[84]],"path-absolutize":["A @1 @0 extending `Path` @5 `PathBuf` in order to get an absolute path @5 remove @4 containing dots.","3.0.11"],"scanlex":["a @d lexical scanner @0 @R ^D ^d tokens","0.1.4"],"nvml-wrapper-sys":["Generated @6 to @4 NVIDIA Management @p.","0.5.0"],"serde-rename-rule":["Serde RenameRule","0.1.1"],"xfailure":["Additional ^t @a @0 failure",C[0]],"aabb2":["aabb2",C[5]],"sysly":["A modern multi-transport syslog appender.","0.2.4"],"registry":["A $M @h @0 @4 ^6 Registry @x","1.2.1"],"string-wrapper":["A possibly-stack-allocated $c @7 ^G bytes ^x",C[1]],"sentry-actix":["Sentry @c ^h @0 actix-&e 3.",C[88]],"plaster-forms":["A form handler @0 front-end &e @P.",C[60]],"wagyu-model":["A ^G model @0 cryptocurrency wallets","0.6.3"],"svc-rumq-client":[C[566],"0.1.0-alpha.11"],"wasmer-vm":[C[567],"2.0.0"],"tetsy-wasm":[C[568],"0.42.1"],"oracle":["Oracle $W","0.5.3"],"nd_iter":["A way to create 2 @5 3 dimensional iterators.","0.0.4"],"mini-fs":["Application filesystem to simplify &3 @z @t both @4 &8 filesystem @5 $0 archives (tar, tar.gz & zip).",C[8]],"gift":["A @1 @0 &3 @5 $O GIF images",C[13]],"stm32f042":[C[569],"0.6.3"],"pepper":["A @d @5 opinionated modal @V editor @0 $r $o",C[43]],"doubter-impl":["Internal @2 of doubter",C[0]],"nrf51":["@Q @8 has been renamed to `nrf51-pac`",C[13]],"usbd-serial":["USB CDC-ACM serial port class @0 $d @7 usb-device.","0.1.1"],"peg-macros":["$q @a @0 @f-peg. To $d @f-peg, see @4 `peg` @8.","0.7.0"],"ark-std":["A @1 @0 no_std compatibility",C[1]],"integer-sqrt":["An @2 of integer square root $1 @0 primitive @f @g","0.1.5"],"hexplay":["Format u8 slices $C an hex editor",C[5]],"google-iam1":[C[570],C[85]],"tp-consensus-slots":[C[571],"2.1.2"],"kernel32-sys":["Contains @Y $h @0 @4 ^6 @x @1 kernel32. See winapi @0 @g @5 constants.",C[8]],"knx_examples_rs":["Examples @0 KNX @p","0.0.6"],"two-rusty-forks-macro":["Proc-@e @1 @0 rusty-fork.",C[2]],"b64-ct":["Fast @5 secure Base64 $5/decoding.This @8 @s an @2 of Base64 $5/^P @l isdesigned to be resistant against software side-channel attacks (such as timing& cache attacks), see @4 documentation @0 details. On certain platforms italso uses SIMD making it very $I. @Q makes it suitable @0 e.g. decodingcryptographic private keys in PEM format.The @x is very similar to @4 base64 @2 in @4 old &K-serializecrate, making it &x to $d in existing projects.","0.1.1"],"hllvm":["Idiomatic @6 to @4 LLVM ^2 suite","0.1.3"],"tempfile-fast":["Support @0 &j-specific tempfile &p","0.3.4"],"zipwhip-rs":["A $I, $n, @5 $M @h $G @4 Zipwhip @x","0.6.0"],"argon2rs":["$8 ^X @3 password hashing @1 @l runs on Argon2.","0.2.5"],"alloc-stdlib":["A dynamic ^l example @l may be $2 @7 @4 stdlib",C[5]],"typed-html":["Type checked JSX @0 @3",C[8]],"pest_@B":[C[793],"2.1.3"],"unicode-general-category":["Fast lookup of @4 &h General Category property @0 char",C[2]],"calcit_runner":["Interpreter @5 js ^H @0 Calcit","0.5.0-a9"],"tc_elasticmq":["Testcontainers image @0 ElasticMQ",C[5]],"const-oid":["Const-&E @2 of @4 ISO/IEC Object Identifier (OID) standardas defined in ITU X.660, @7 @j @0 BER/DER $5/^P as well asheapless no_std (i.e. ^b) @j","0.6.2"],"scoped_spawn":["Full structured concurrency @0 $n $m.",C[5]],"read_input":["Ask @0 user input until @4 @w inputted is valid","0.8.6"],"prototty_&s_^x":["@v of prototty_storage::Storage specifically @0 $d @7 &s.","0.27.0"],"ssmarshal":["Stupid @d &5-only marshaling @u $6","1.0.0"],"kern":["General @1 @0 @3","1.3.4"],"multi-map":["Like a std::$b::HashMap, but allows you to $d either of two different keys to retrieve items.","1.3.0"],"elastic_reqwest":["A ^O @2 of @4 Elasticsearch @x @n on reqwest.","0.20.10"],"log-ndc-env-logger":["Very @d log-ndc + env_logger @h",C[1]],"hdf5file":["A @3 @2 of HDF5 $0 @G","0.1.1"],"structdoc-derive":["Extract $V @5 documentation @t &o (@b @j)","0.1.4"],"symbolic-sourcemap":["A @1 to ^I JavaScript sourcemaps @5 resolve symbols in minifiedsource @V or stack traces.","8.3.2"],"librsync":[C[572],C[5]],"keyboard-types":["Contains @g to define keyboard related events.","0.6.1"],"hyper-openssl":["Hyper TLS @j via OpenSSL","0.9.1"],"time-test":["Measure how long $r ^7 cases take @7 one @d @e.",C[8]],"const_@G":["Compile-$z $c formatting","0.2.22"],"libimagentryview":[C[39],C[12]],"prototty_grid":["@v of prototty_render::ViewGrid @0 $d in renderers.","0.27.0"],"eax":["Pure @3 @2 of @4 EAXAuthenticated Encryption @7 Associated Data (AEAD) Cipherwith optional architecture-specific hardware accelerationThis scheme is only @n on a block cipher. It uses counter mode (CTR) forencryption @5 CBC mode @0 $E a OMAC/CMAC/CBCMAC (all names @0 @4 same thing).","0.4.1"],"mm_image":["Raster image @1.","0.1.5"],"ressa":["An ECMAscript @i","0.7.4"],"ethereum-block-core":[C[103],C[3]],"wasm-bindgen-anyref-xform":["Internal anyref transformations @0 &s-bindgen","0.2.62"],"comment-strip":["Remove comments out of ^D @z","0.1.3"],"natsclient":["NATS @c designed @0 both an ergonomic @x @5 $J","0.0.7"],"shrev":["Event channel, meant to be $2 @7 `specs`.","1.1.1"],"r2d2_cypher":["Cypher @j @0 @4 r2d2 connection pool",C[2]],"opus_headers":["Parsing @4 headers of opus @z.",C[4]],"media-type-impl-utils":["^u @0 $O media-$l parsers (char lookup table, Quted String Spec, ...)","0.3.1-unstable"],"concrete":[C[573],C[32]],"chrono-tz-build":["^J $j script @0 chrono-tz","0.0.2"],"nfd2":[C[940],C[1]],"duktape_ffi":[C[574],"0.0.1"],"arrow-format":["Unofficial flatbuffers @5 tonic @V of Apache Arrow spec",C[5]],"getch":["A portable @2 of getch, @u _getch on ^6, @5 termios on Unix.",C[5]],"liquid-compiler":[C[87],C[335]],"shell32-sys":["Contains @Y $h @0 @4 ^6 @x @1 shell32. See winapi @0 @g @5 constants.",C[4]],"activitystreams-traits":["Traits @0 ActivityStreams 2.0 objects",C[448]],"tdo-core":["$8 @F of every @3-@n tdo $U",C[5]],"wasmcloud-actor-core":["wasmCloud Core Actor Interface","0.2.3"],"iou":["io_uring @6","0.3.3"],"noble-staking-reward-curve":["Reward Curve @0 FABRIC staking noble","2.0.0"],"rusqlite_migration":["@K schema migration @1 @0 rusqlite @u user_version instead of an SQL table to maintain @4 current schema $4.","0.5.0"],"tinyrick":["a freeform @3 $j @O","0.0.9"],"cargo-hack":["Cargo &i to provide various options useful @0 $S @5 continuous $T.","0.5.8"],"cranelift-entity":[C[575],"0.77.0"],"endian-type":["Type $M &r @0 @g @7 a defined byte order",C[4]],"pinky-swear":["Futures @5 @J/await-ready Promises","5.1.0"],"clipboard_macos":["A @1 to obtain $X to @4 macOS clipboard",C[0]],"ytesrev":["A presentation ^4 $A in @f, @n on sdl2","0.2.7"],"include-merkle":["Functionality @0 $E a Merkle-^0 of a given ^D $0 @7 include references, replacing includes paths @7 a deterministic versioned identity, @5 also $7 @0 flattening include directives ^d a single $0. $8 primary motivation is compiling shaders @0 various ^T APIs, but @4 @4 $7 can apply to a variety of source @V @R $d cases.","0.1.4"],"hyper-zipkin":["Hyper header $h @0 ^E Zipkin headers",C[2]],"fe":["Fe is a sophisticated, yet @d to $d $0 listing $w. Use Fe to list @z in a directory or to recursively find @z by their names @u a fuzzy pattern. Fe's speeds are comparable to find, @5 often times faster.","1.0.3"],"varuint":["Variable length signed @5 unsigned integer @g","0.6.0"],"tdjson-sys":["TDLIB Json Client @3 $L @H","0.1.5"],"modcholesky":["Modified Cholesky decompositions","0.1.4"],"google-identitytoolkit3-cli":[C[576],"2.0.4+20180723"],"nphysics":["3-dimensional physics $a in @3. &T USE nphysics2d OR nphysics3d INSEAD.","0.1.4"],"mailbox":["MBOX reader.",C[3]],"fftw3":["@H to FFTW3: @4 Fastest Fourier Transform in @4 West. Thislibrary aims to expose @4 full power of FFTW3 in high-$J,$M @5 idiomatic manner. NB. FFTW3 is licensed GPLv2 (or later) bydefault, @5 so @P @u it must be distributed under thoseterms (@4 license of these @6 is independent).","0.0.2"],"rust-releases":["Find, index @5 obtain all officially available @3 releases","0.16.1"],"jsonrpsee-types":["Shared @g @0 jsonrpsee","0.4.1"],"energy-monitor":["EnergyMonitor $y",C[5]],"librespot-connect":["$8 discovery @5 Spotify Connect logic @0 librespot","0.3.1"],"wiktionary-part-of-speech-extract":["English Wiktionary parsed @0 part-of-speech info @5 placed ^d a precompiled FST",C[4]],"index-fixed":["convert slices ^d arrays @u indexes ([T] -> [T;N])","0.3.1"],"human-panic":["Panic &y @0 humans","1.0.3"],"detsurtnu":["Automated mirror of untrusted - Safe, $I, zero-panic, zero-crashing, zero-allocation @R of untrusted inputs in @3.","0.7.0"],"rpf":["A @k @0 $Z @3 programs","0.1.6"],"reexport-proc-macro":["Re-export a $e @e","1.0.6"],"datetime_@a":["Statically-compiled dates @5 formatting $p.",C[4]],"zmq-sys":[C[577],C[16]],"jsonrpc-pubsub":[C[578],"18.0.0"],"duplicate":["$8 &U @e `duplicate` can duplicate an item @7 variable substitution.",C[1]],"slog-perf":["Performance @5 $z reporting @0 slog-rs",C[3]],"astar":["A ^G @2 of @4 A* pathfinding $1.","4.0.0"],"kissunits":["Different units ($C distances or coordinates), keeping it &7 @5 @d","2.0.0"],"very_@d_2d":[C[949],"1.0.0"],"egui_winit_@N":["Platform @V to $d egui @7 winit.",C[13]],"bytecheck_@b":[C[919],"0.6.5"],"cashaccount-sys":["@p @0 ^p @7 Cash Accounts. Cash Accounts is a a naming @O @0 sharing bitcoin payment $f.","0.1.1"],"binaryen":[C[582],C[28]],"zinoma":["Žinoma - Make $r $j flow incremental","0.19.4"],"octavo":["Highly modular &Q & ^z @1 $A in ^X @3. WARNING!!! Not suitable @0 production.","0.1.1"],"mozjs":["@3 @6 to @4 Mozilla SpiderMonkey JavaScript $a.",C[12]],"yarte_@i":["Ast, lexer @5 @i @0 yarte",C[23]],"nock":["A stateless virtual machine",C[2]],"napi-derive":["N-@x $e @a",C[1012]],"unwind":["An @m to libunwind",C[2]],"libp2p-swarm-derive":[C[579],"0.25.0-rc.1"],"cachedir":["A @1 to help &2 @7 cache directories @5 CACHEDIR.TAG @z.",C[1]],"pgs-files":["@3 @p @0 ^a /etc/{passwd,group,shadow} @z","0.0.7"],"actix-lua":["A $M scripting ^K @0 actix @7 @4 Lua Programming &R","0.7.0"],"batch_resolve_^y":["Fast $n batch DNS resolver built on top of Tokio @5 TRust-DNS","0.3.7"],"@f_icu_udat":["&M @6 to @4 ICU4C @1 @t Unicode.udat.h","1.0.3"],"drone-stm32-map-periph-gpio":[C[46],C[24]],"indent_&0":["@K Write adapters to add $D indentation","2.2.0"],"mecab":["Safe @3 @h @0 mecab a japanese @L part-of-speech @5 morphological analyzer @1","0.1.4"],"rustils":["^e @0 @f","0.1.23"],"fast-async-mutex":["It is a lib $i provide $n locking mechanisms (Mutex, RwLock, OrderedMutex @5 OrderedRwLock)","0.6.7"],"dirs-next":["A tiny low-@C @1 @l @s @N-specific ^E locationsof directories @0 config, cache @5 other @w on &j, ^6, macOSand Redox by leveraging @4 mechanisms defined by @4 XDG base/userdirectory specifications on &j, @4 Known Folder @x on ^6,@5 @4 Standard Directory guidelines on macOS.","2.0.0"],"emerald-core":["Ethereum Classic secure account ^A @F libary",C[12]],"choose":["A human-&E @5 $I alternative to cut @5 (sometimes) awk","1.3.3"],"async-imap":["Async IMAP @c @0 @3","0.5.0"],"fluvio-stream-dispatcher":["Fluvio Event Stream $X","0.6.5"],"diffs":["A &a of diff ^3, also called longest $u subsequence.","0.4.1"],"hull_white":["Pricing @y assuming a Hull White short rate","0.5.0"],"libimagentryutil":[C[39],C[12]],"crossbeam-queue":["Concurrent queues",C[9]],"websocket":[C[580],"0.26.2"],"cloudflare-zlib-sys":["Cloudflare fork of zlib @7 massive $J improvements",C[1]],"revai":["A fully ^8 & opinionated @x @c @0 @4 Rev.ai @x.",C[8]],"cdrs-tokio-helpers-derive":[C[830],"3.1.0"],"mp4":["MP4 reader @5 writer @1 in @3.","0.9.0"],"rain_@U":["Distributed computational @k @0 large-scale task-@n pipelines. Server @5 governor binaries.",C[2]],"walker":["Recursive directory walk","1.0.1"],"formdata":["Parsing of multipart/form-@w",C[15]],"xactor":["Xactor is a @f actors @k @n on @J-std","0.7.11"],"magma":["Magma (GOST 28147-89 @5 GOST R 34.12-2015) block cipher","0.7.0"],"autowired-derive":["Autowired ^g @b @e @j","0.1.8"],"challonge":["Client @1 @0 @4 Challonge REST @x","0.5.4"],"daachorse":["Daac Horse: Double-Array Aho-Corasick",C[3]],"httpbis":["@3 @2 of ^s/2 @9","0.9.1"],"tokio-i3ipc":["@H @0 i3 @5 $v allowing @J @P to communicate @7 i3 overit's IPC @m. Contains @Z @T @5 convenience functionsfor ^p @7 i3.","0.12.1"],"option-inspect":["Adds @4 missing Option::inspect() @Y",C[3]],"netrc":["Parses @5 encapsulates @4 `netrc` $0 @G","0.4.1"],"libtls":["@3 @6 @0 LibreSSL's libtls.","1.2.0"],"zero-copy-pads":["Padding/aligning ^V ^Y heap allocation",C[3]],"duplicate-kriller":[C[581],"1.4.1"],"shaders_graphics2d_gles":[C[904],C[3]],"notes":["A @d ^4 @0 taking notes. Work in progress. See: &Y://gitlab.com/remipassmoilesel/notes","0.2.108"],"capgun":["fire when ready $0 watcher","0.1.1"],"autotools":["A $j &m to $j &8 &4 @l $d configure&make-style $j systems","0.2.3"],"rsudo_@j":["rsudo-rs @j stuff. not really usable anywhere else.","0.1.5"],"rendy-chain":["Rendy's node synchronization ^4","0.5.1"],"blake2b-rs":["@3 @6 @0 @4 official Blake2b C @2",C[3]],"nice":["@H @0 libnice >= v0.1.4","0.1.9"],"binaryen-sys":[C[582],C[28]],"bitcoincore-rpc-json":[C[583],C[24]],"crc-catalog":["Catalog of CRC ^3 (^8 @t &z://reveng.sourceforge.net/crc-catalogue) expressed as @d @3 &o.","2.0.0"],"rustyknife":["Fast, robust @5 $M email @R @1","0.2.11"],"chinese-variant":["An enum to represent @4 variants of @4 Chinese &R.","1.0.8"],"ispc_rt":["A @I &m @0 linking @3 @V @7 pre-built ISPC binariesand @3 @6. These modules @5 @6 should be built withispc_compile.","1.0.4"],"amadeus":["Harmonious distributed @w &u & analysis in Rust.parquet postgres aws s3 cloudfront elb &V csv logs hadoop hdfs arrow $u crawl","0.4.3"],"neovim-lib":["msgpack-rpc neovim @c","0.6.1"],"google-abusiveexperiencereport1-cli":[C[584],C[130]],"xenevtchn":[C[585],"0.1.6"],"conrod_@F":[C[214],"0.75.0"],"nj-sys":["low @C $W to Node N-@x","3.0.0"],"google-adsense1d4":[C[1077],"2.0.8+20201002"],"cretonne":["Umbrella @0 commonly-$2 cretonne $R","0.13.2"],"zeromq-src":["Source @V @5 logic to $j ZeroMQ @t source","0.1.10+4.3.2"],"&k_init":["Safe mutable &k @5 non const &k initialization, @5 @V execution at ^U startup/exit.","1.0.1"],"sha1collisiondetection":["SHA-1 ^z @Y @7 collision detection @5 mitigation","0.2.3"],"libimagstorestdhook":[C[39],C[3]],"drawille":["Draw to @4 $o @u braille characters",C[1]],"lxd":["A @3 @1 @0 controlling LXD","0.1.8"],"iron-login":["Basic session ^A in Iron.","0.5.1"],"frunk_@F":["Frunk @F @s developers @7 HList, Coproduct, LabelledGeneric @5 &W",C[2]],"sp-api":["Substrate @I ^S $9","3.0.0"],"binfield_matrix":["Vector-matrix multiplication @0 GF(2) codes",C[3]],"tokio-socks5":["@J socks5 @9","0.1.4"],"trapframe":["Handle Trap Frame across kernel @5 user space on &l ISAs.",C[7]],"bee-ledger":["All @g @5 features required to compute @5 maintain @4 ledger state","0.5.0"],"awi":["Create a window @5 handle it's input.",C[7]],"orbtk-render":["2D Render @1 $d by OrbTk.",C[204]],"cargo-snippet":["A snippet extractor @0 competitive programmers","0.6.5"],"jh-x86_64":["Portable JH @7 optimizations @0 x86-64 cpus",C[8]],"call-trace":["@W a way to annotate a @Y to inject &g @V before @5 after its body.",C[2]],"sudograph-generate":["$q @e @0 Sudograph","0.4.3"],"august":["A @8 & ^U @0 converting HTML to plain ^D.","2.4.0"],"shell-escape":["Escape characters @l may have a special meaning in a shell","0.1.5"],"datafrog":["Lightweight Datalog $a intended to be ^b in other @3 programs","2.0.1"],"apns":["@p @0 Apple Push Notification Service.","0.1.1"],"yara-sys":["&M @6 to @4 libyara @1",C[13]],"ndarray-tensorflow":["Adapter @0 Tensorflow tensors to expose @4 ndarray @x",C[1]],"nvml-sys":["A low-@C $L @h $G @4 Persistent Memory Development Kit, PMDK (formerly NVML) @5 its &4, including libpmem, libpmemobj @5 others. Currently tracks master after $4 1.3.1.","0.0.6"],"ml":["A @X @0 M @5 L.","0.0.2"],"rbx_dom_weak":["Weakly-typed Roblox DOM @2 @0 @3","2.3.0"],"rei":[C[61],C[62]],"nodespeak":["A JIT-ish ^2 @0 &a-crunching @P.",C[5]],"cap-fs-ext":["Extension $3 @0 `Dir`, `File`, etc.",C[42]],"consist":["Dead-@d consistent hashing @1",C[9]],"google-firebaseremoteconfig1":[C[688],"2.0.8+20171129"],"metatype":["Helper &P to determine whether a $l is `TraitObject`, `Slice` or `Concrete`, @5 work @7 them respectively.",C[5]],"guppy":["Track @5 query Cargo &m graphs.","0.11.2"],"oxygengine-composite-renderer-backend-web":["Composite renderer Web $N ^F @0 Oxygen Engine",C[42]],"bork":["Pretty print syntax errors @0 $r @i or interpreter.",C[5]],"cargo-tomlfmt":["Formatting Cargo.toml","0.1.3"],"lipsum":["Lipsum is a lorem ipsum ^D ^1 @1. Use this if you needsome filler ^D @0 $r application.The ^D is ^8 @u a @d Markov chain, $i you can alsoinstantiate to ^n $r own pieces of pseudo-&L ^D.",C[7]],"crc24":["CRC-24 @2 (IETF RFC2440-^i)","0.1.6"],"simd-json-derive":["derives @0 simd-&V",C[8]],"passwd":["@H @0 libc /etc/passwd password @y","0.0.1"],"numext-fixed-hash-hack":[C[589],"0.1.6"],"c_vec":["Structures to wrap C arrays","2.0.0"],"cortex-m-rtic-macros":["$q @a of @4 cortex-m-rtic @8",C[956]],"notify-rust":["Show desktop notifications (linux, bsd, mac). Pure @3 dbus @c @5 @U.","4.5.4"],"kf-protocol-core":["encoder @5 decoder @0 Kafka @9",C[4]],"libstrophe-sys-bindgen":["@3 @6 @0 libstrophe, ^8 @u bindgen","4.4.0"],"ssdp":["An $n $F @0 discovering &N @5 services on a ^9.","0.7.0"],"rocket_failure_errors":["Error &o @0 rocket_failure",C[3]],"json-job-dispatch":["Dispatch jobs described by ^k @z @5 sort them according to their status.","2.0.1"],"octocrab":["A modern, extensible GitHub @x @c.",C[15]],"rand_pcg":["Selected PCG &L &a generators","0.3.1"],"content":["Trait @0 content-adressable @g","0.6.0"],"ethabi-derive":[C[563],"14.1.0"],"slice":["slices @0 streams ^5 `std::io::read` @5 `std::io::&0`.","0.0.4"],"bindgen_$Y":["A $W @B @0 @3 - ^2 $Y",C[72]],"titlecase":["A ^4 @5 @1 @l capitalizes ^D according to a style defined by John Gruber @0 post titles on his website Daring Fireball.","1.1.0"],"speck":["@v of @4 SPECK block cipher.","1.1.0"],"find-files":["Find Files (ff) $w recursively searches @4 @z whose names match @4 specified RegExp pattern in @4 provided directory (defaults to @4 current directory if not provided).","0.1.8"],"tokio-tungstenite":["Tokio $W @0 Tungstenite, @4 Lightweight ^L-@n WebSocket @2",C[23]],"nested_containment_list":["A @w $V @0 efficiently storing @5 querying nested intervals.",C[1]],"imag-timetrack":["Part of @4 imag @F ^m: imag-timetrack @D",C[12]],"const-random-macro":["@W @4 $e @e $2 by const-&L",C[49]],"resvg-qt":["[&T] $d @4 resvg @8 instead.",C[12]],"namedarg_&K_@e":[C[586],C[587]],"cronjob":["cronjob @1 @0 scheduling $r &P","0.3.17"],"google-clouduseraccountsvm_beta":[C[588],"2.0.8+20160316"],"arrayref":["^o to take array references of slices","0.3.6"],"balena-temen":["Templating $a @0 (not just) ^k","0.5.7"],"quicksilver":["A @d game @k @0 2D games in ^X @3",C[2]],"dbus-tokio":["Makes it possible to $d Tokio @7 D-Bus, $i is a bus commonly $2 on &j @0 inter-^I communication.","0.7.5"],"fluence-fork-libp2p-mplex":[C[914],"0.27.2"],"crc8":["A CRC8 @2","0.1.1"],"airspy":["@3 @6 @0 libairspy",C[2]],"enum-methods":["Generates &P @0 each enum variant.","0.0.8"],"cogent":["Basic neural ^9 @1 @0 classification.","0.6.3"],"tetsy-libp2p-identify":["Nodes identifcation @9 @0 tetsy-^v","0.28.0"],"shadowsocks-service":[C[592],"1.11.2"],"predicates":["An @2 of boolean-valued predicate @y.","2.0.3"],"accelerometer":["&W, ^b-&E accelerometer @j, includingtraits @5 @g @0 taking readings @t 2 or 3-axisaccelerometers @5 tracking device orientations.",C[28]],"fax_@b":["Bitstream matcher @0 @4 fax @8",C[0]],"orasis-plugin":["Base @8 @0 Orasis plugins.",C[15]],"cargo-compete":["A Cargo &i @0 competitive $m.","0.9.1"],"symbolic-testutils":["Helper @8 @0 $S symbolic.","5.7.8"],"dynasmrt":["A @d @I @0 assembling @V at @I. Combined @7 @4 $Y @8 dynasm it can be $2 to &0 JIT compilers easily.","1.1.0"],"pixels":["A tiny @1 ^R a GPU-powered pixel frame buffer.","0.7.0"],"wither":[C[821],"0.9.0"],"light_phylogeny":["Methods @5 @y @0 phylogeny.","0.33.0"],"space":["A @1 ^R abstractions @0 spatial datastructures @5 search",C[43]],"copypasteck":["A $Y lint @0 detecting `if` @5 `match` branches @7 duplicatedconditions or contents.","0.1.4"],"byte_^L_splitter":["Splitting a ^L of bytes by separator sequence","0.1.4"],"derive-ocaml":["Custom @b @5 $e @a @0 &x $L @7 ocaml on top of @4 ocaml @8","0.1.3"],"oasis-client":["Oasis gateway @c","0.1.1"],"osauth":["&b OpenStack session @5 authentication","0.3.4"],"same-file":["A @d @8 @0 determining whether two $0 paths point to @4 same $0.","1.0.6"],"timebomb":["A timeout mechnisem @0 unit tests",C[4]],"libipld-cbor-derive":[C[805],C[28]],"bake":["@Q @X is no longer $2.",C[72]],"tk-cantal":["A @c @0 cantal monitoring &t. @Q is not @0 submitting &q to @4 cantal. @Q @1 is @0 accessing &q @l cantal tracks.",C[9]],"frugalos_segment":["A segment in a bucket in a Frugalos cluster","1.2.0"],"pure-rust-locales":["Pure @3 locales imported directly @t @4 GNU C @p. `LC_COLLATE` @5 `LC_CTYPE` are not yet supported.","0.5.6"],"gbump":["Git tag semantic $4 bumper","1.0.5"],"sungod":["0-Dependency &L ^M to brighten $r day","0.3.1"],"eaglesong":["A @3 @p of Eaglesong Hash Function",C[0]],"smol":["A &7 @5 $I @J @I","1.2.5"],"readkey":["A very &7 @1 @0 finding out if a key is currently pressed on macOS.",C[5]],"bus_queue":["Lock-free Bounded non-Blocking Pub-Sub Queue","0.5.3"],"cargo-atcoder":["Cargo &i @0 AtCoder",C[2]],"gc-arena":["$M garbage collected arenas",C[8]],"rb":["A &d-$M ring buffer @7 blocking IO",C[9]],"urltemplate":["Lightweight URL templates. Master URLs @7 placeholders!","0.1.5"],"shapir":["Unofficial ShareFile REST @x ^N","0.5.0"],"yaar-lock":["Fast, no_std synchronization $9.",C[5]],"katatsuki":["TagLib-@n Music Tag @p","1.0.11"],"crossterm":["A crossplatform $o @1 @0 manipulating terminals.","0.22.1"],"mpmc-map":["Mpmc @J map @2 @0 highly concurrent low-&0 $X",C[3]],"strict_$5":["Strict $5: deterministic $Q @M @0 networking & @c-side validation","1.7.4"],"lvm":["LVM $M @6","0.3.1"],"fluvio-types":["Fluvio $u @g @5 objects","0.2.5"],"noob":["A WIP @Z-@n Discord bot @1","2.0.0-alpha.2"],"cemu-smm":["renamed to smmdb","5.0.1"],"ami":["Useful @w $k @l are not in @4 ^E @1.",C[15]],"enimda":["Entropy-@n image border detection","0.4.1"],"reqwest_mock":["@W a mockable reqwest-$C ^s @c.","0.7.0"],"svg_fmt":["Very @d debugging @E to dump shapes in SVG @G.","0.4.1"],"glutin_glx_@r":["$8 glx @6 @0 glutin","0.1.7"],"intel-mkl-src":["Redistribution of Intel(R) MKL as a @8","0.6.0+mkl2020.1"],"atelier_smithy":["@3 &8 Smithy @L @G @0 @4 ^r Smithy IDL.","0.2.13"],"lino":["A @D $D ^D editor @7 notepad $C key @6.",C[13]],"crc64":["CRC64 checksum @2","1.0.0"],"gifsicle":["@H @0 gifsicle @1. Supports lossy ^C. GPL.","1.92.5"],"meap":["Minimal Extensible Argument &B","0.5.1"],"emplace":["Command-$D ^4 to mirror installed software on &l machines.","1.4.1"],"ryu":["Fast floating point to $c conversion","1.0.5"],"srcinfo":["A libary @0 @R .SRCINFO @z","1.0.0"],"pcap-parser":["&B @0 @4 PCAP/PCAPNG @G",C[15]],"ofb":["&W Output Feedback (OFB) mode @2.","0.5.1"],"dogged":["Persistent vector, similar to Clojure",C[3]],"session":["iron session @2 @n on redis","0.1.8"],"chomp":["A $I monadic-style @i combinator designed to work on stable @3.","0.3.1"],"swc_ecma_transforms_@a":["^o @0 swc_ecma_transforms.","0.2.3"],"medal":["A @d online contest @N","1.10.0"],"panoradix":["A ^G map @5 a set, both backed by a Radix ^0.","0.6.8"],"numext-fixed-hash-core":[C[589],"0.1.6"],"tokio-seqpacket":["unix seqpacket sockets @0 $v","0.5.4"],"spine-data":["Loads Spine exported ^k @5 texture atlas @z",C[8]],"puffin_egui":["Show puffin profiler flamegraph in-game @u egui","0.9.1"],"solana-sys-tuner":["$8 ^f cluster @O tuner daemon","1.8.1"],"clickhouse-driver-lz4":["LZ4 @0 ClickHouse &b Driver.",C[0]],"hwndloop":["An @2 of an event loop backed by a Win32 window.","0.1.5"],"$P_iot_@w":["^r ^N @0 @3 - ^r IoT Data Plane @ 2015-05-28",C[27]],"polylabel":["A @3 @2 of @4 Polylabel $1 @0 finding optimum polygon label positions.","2.4.0"],"tink-daead":["Deterministic AEAD $7 @0 @3 port of Google's Tink cryptography @1",C[5]],"wasi-types":["Rusty @6 @0 WASI libc @g.","0.1.6"],"google-sourcerepo1":["A @q @1 to @o @7 Cloud Source Repositories (@9 v1)","2.0.8+20210125"],"rcmut":["An unchecked &J mutability primitive.","0.0.2"],"mlua_@b":["$q @a @0 @4 mlua @8.","0.6.0"],"libarchive":["A $M @3 @x @0 authoring @5 extracting archives @7 libarchive","0.1.1"],"bio":["A bioinformatics @1 @0 @3. @Q @1 @s @T of many ^3 @5 @w $k @l are useful @0 bioinformatics, but also in other fields.","0.39.0"],"gc-arena-derive":["^B-@e @j @0 gc-arena",C[8]],"swc_ecma_minifier":["EcmaScript @V minifier.","0.46.3"],"smithay-clipboard":["@W $X to @4 wayland clipboard @0 @c @P.","0.6.4"],"xassembler":["Compiler &1 @0 @4 xasm $m @L","0.5.1"],"gui":["A ^G UI @1/@k.","0.6.0"],"stm32f7":["Device @j $R @0 STM32F7 &N",C[24]],"google-cloudkms1":[C[776],C[590]],"slauth":["oath HOTP @5 TOTP complient @2","0.5.0"],"@F_arch":["`@F::arch` - Rust's @F @1 architecture-specific intrinsics.","0.1.5"],"trello":["A Trello @c @0 @3. @Q is a work in progress!","0.1.7"],"futures-macro":["$8 @Z-rs $e @e @T.","0.3.17"],"numberer":["Turn things ^d ^M @5 ^M ^d things",C[3]],"wagyu-zcash-parameters-4":[C[323],C[3]],"ff-cl-gen":["OpenCL @V @B @0 prime-fields",C[1]],"piet":["An $F @0 2D ^T.",C[346]],"base-62":["encode to/@t bytes to base62 $c","0.1.1"],"maturin":["Build @5 publish $R @7 pyo3, @f-cpython @5 cffi @6 as well as @f binaries as python packages","0.12.0-beta.1"],"postgres-binary-copy":["Support @0 $Q-@G COPY query execution @7 postgres","0.5.0"],"pokerlookup":["Contains @4 means to ^n a large lookup table, $i can be subsequently $2 to evaluate large amounts of 5, 6 @5 7 card poker hands really $I.",C[4]],"keygen":["Binary to create a verifiable serial key @t a seed.","2.1.0"],"ryu-ecmascript":["Fast floating point to $c conversion, suitable @0 ECMAScript NumberToString","0.1.1"],"rure":["A C @x @0 Rust's regular expression @1.",C[5]],"lightning_$5":["Network $5 @0 lightning ^9 peer @9 @w @g",C[591]],"pyembed":["Embed a Python interpreter",C[43]],"vk-bot":["Build chat bots @0 VK (VKontakte) communities easily.","3.0.0"],"contrie":["Concurrent map @5 set","0.1.4"],"tarpc-trace":["foundations @0 &g in tarpc",C[1]],"ra_ap_ide_diagnostics":["TBD","0.0.79"],"ratelimit":["a token bucket ratelimiter","0.4.4"],"bit_range":["A &7 @1 @0 getting bits @5 ranges of bits @t byte &C",C[0]],"fake-simd":["Crate @0 mimicking simd @8 on stable @3",C[4]],"newtype_@b":["@Q @8 @s @a @0 deriving $u $3 @0 newtype $k.","0.1.6"],"aoc-runner-internal":["Internal machinery @0 aoc-runner & others",C[0]],"shadowsocks":[C[592],"1.11.2"],"densevec":["Map $C $b @7 usize indices @l stores ^V contiguosly","0.3.5"],"ios7crypt":["legacy IOS7Crypt encryptor/decryptor","0.0.5"],"wita":["A window @1 in @3 @0 ^6","0.10.5"],"assimp-sys":["@3 $L @6 @0 @4 Assimp @1","0.3.1"],"llvmenv":["Manage LLVM/Clang builds",C[9]],"google-playmoviespartner1-cli":[C[593],"2.0.4+20170919"],"mpvipc":["A &7 @1 $i @s @6 to control existing mpv instances through sockets.","1.1.9"],"$j_id":["Obtain a UUID uniquely representing @4 $j of @4 current $Q.",C[5]],"chip":["RLUtilities @6 @0 @3","0.0.6"],"single":["@W @4 Single $y @0 extracting @4 element @t a single-element iterator.","1.0.0"],"physx":["High-@C @3 @m @0 Nvidia PhysX","0.12.1"],"dbus-codegen":["Binary @8 to ^n @3 @V @t XML introspection @w",C[13]],"persistent_hashmap":["Persistent hashmap is a @1 @0 ^p @7 $g mapped hashmaps",C[2]],"lyon_svg":["SVG &w @0 @4 lyon $R.","0.17.2"],"grammarly":["@Q @8 allows you to check $r texts @0 grammar @u @4 grammarly &t.","0.3.1"],"tui-logger":["Logger @7 smart widget @0 @4 `tui` @8","0.6.4"],"pomelo-impl":["@v details @0 pomelo, not to be $2 directly","0.1.5"],"mini-internal":["&n @a @0 miniserde. Use @4 re-exports @t @4 miniserde @8 instead.","0.1.15"],"doc-comment":["Macro to ^n doc comments","0.4.1"],"MacTypes-sys":["@H @0 MacTypes.h","2.1.0"],"alpm-sys":[C[1055],"2.1.2"],"ckb-reward-calculator":[C[205],C[302]],"sequence_trie":["Trie-$C @w-$V @0 storing sequences of ^V.","0.3.6"],"crowbook-text-processing":["@W some @E @y @0 escaping ^D (HTML/LaTeX) @5 formatting it according to typographic rules (smart quotes, ellipsis, french typograhic rules)","1.0.0"],"sc-rpc-api":["Substrate RPC interfaces.","0.9.0"],"linux-embedded-hal":["@v of @4 `^b-hal` $3 @0 &j &N",C[594]],"google-androidpublisher2":[C[600],"2.0.8+20200331"],"serde-hjson":[C[595],"0.9.1"],"@f_mixin":["Yo dawg, $d @3 to ^n @3, right in $r @3. (See`external_mixin` to $d scripting languages.)","0.0.1"],"virtdisk-rs":["@3 abstractions @0 VirtDisk APIs.","2.0.0"],"dns-parser":["Pure-@f DNS @9 @i @1. @Q does not @j ^9, only raw @9 @i.",C[7]],"strava":["Strava @x v3 Client",C[3]],"capsicum":["@K intuitive @3 @6 @0 @4 FreeBSD capsicum @k",C[4]],"osmgraphing":["Playing $G @7 graphs created via @R OpenStreetMap @w","1.1.1"],"html-index":["Generate an HTML index.","0.3.4"],"illicit":["An implicit &d-local ^K $i is indexed by $l.","1.1.2"],"rsvg-sys":["@3 @6 @0 @4 Rsvg @1 (ffi)","0.6.0"],"takes":["Variant of Read::take() @l supports Seek",C[0]],"solana-metrics":["Solana Metrics","1.8.1"],"actix-tls":["TLS acceptor @5 connector services @0 Actix ecosystem","3.0.0-beta.7"],"dangerous_option":["@Q @8 @s DangerousOption - a $l similar to ! in Swift @L. It's basically an Option $i panics if dereferenced while containing None. no_std ^i.",C[3]],"sdfu":["Signed Distance Field (Function) ^e. Contains @y @0 $Z, combining, modifying, @5 @u analytic SDFs @0 computer ^T.",C[1]],"tiny-hderive":["Tiny BIP44/BIP32 derivation @0 BIP39 seeds",C[1]],"path":["IP @n connection identification @5 &g","0.8.2"],"snes-apu":["A Super Nintendo audio unit emulator.","0.1.12"],"stm32f3xx-hal":["Peripheral $X @x @0 STM32F3 series $s",C[7]],"sequoia-openpgp":["OpenPGP @w @g @5 associated machinery","1.5.0"],"cursive-multiplex":["A tmux $C multiplexer @0 gyscos/cursive views","0.5.1"],"$6_ignored":["Find out about keys @l are ignored when deserializing @w",C[4]],"term_grid":["@p @0 formatting $p ^d a grid layout",C[3]],"libflate_lz77":["LZ77 encoder @0 libflate @8","1.1.0"],"tarrasque":[C[814],C[13]],"solana-frozen-abi":["Solana Frozen ABI","1.8.1"],"croaring":[C[596],"0.5.1"],"snappy":["@3 @6 to @4 Google ^C @1 'snappy'",C[2]],"buddy_@O_^l":["A bare metal ^l @l uses buddy @O.",C[7]],"rsdocs2docset":["@Q is a &7 ^4 to ^n a docsets @0 Dash / Velocity / Zeal / LovelyDocs out of @3 docs.","0.4.1"],"panic-halt":["Set panicking behavior to halt",C[3]],"dummyhttp":["Super @d ^s @U @l replies @7 a fixed body @5 a fixed response @V","0.4.3"],"numext-fixed-hash":["Fixed-size ^z @g.","0.1.6"],"rust-pigpio":["@3 @h @0 PiGPIO C @1.",C[3]],"treeify":["treeify converts @4 &Z of a @D @l lists @z ^d a ^0 representation similar to @4 &Z of @4 @D ^0.","0.1.4"],"rcublas-sys":[C[597],C[2]],"fxhash":["A $I, non-secure, hashing $1 derived @t an ^J hasher $2 in FireFox @5 Rustc.",C[5]],"ffi-convert-derive":["^o @T of CReprOf, AsRust, CDrop $3 @t ffi-convert","0.5.0"],"intoif":["A &7 @1 @0 construction of an Option @5 Result @t any $l @n on some user-specified condition.","1.0.0"],"recipe-reader":["A reader @0 recipe @z of @4 C2 @L. See c2lang.org @0 $f about C2 lang @5 specification of @4 @G.","0.9.11"],"&d_local":["Per-object &d-local ^x","1.1.3"],"@f_icu_udata":["&M @6 to @4 ICU4C @1 @t Unicode.udata.h","1.0.3"],"pallet-staking-reward-curve":["Reward Curve @0 FRAME staking &v","3.0.0"],"k8s-cri":["@H Kubernetes CRI",C[2]],"tetsy-hash-db":["tetsy $y @0 ^z-keyed databases.",C[99]],"bluetooth-serial-port":[C[598],"0.6.0"],"strength_reduce":["Faster integer division @5 modulus $B","0.2.3"],"$P_codepipeline":["^r ^N @0 @3 - ^r CodePipeline @ 2015-07-09",C[27]],"@f_swig":[C[599],"0.5.1"],"chiter":["Memory editing @1 aimed at game hacking.","0.4.3"],"bevy_ui":["A custom ECS-driven UI @k built specifically @0 Bevy Engine","0.5.0"],"sema":["@3 semaphore @1","0.1.4"],"arg_@i":["RedoxOS @D $D argument @i",C[0]],"pyo3-chrono":["Adds PyO3 @j to Chrono &o via newtypes",C[8]],"dprint-development":["Helper @y @0 $S dprint plugins.","0.4.1"],"futures-retry":["Retry $r Futures @5 Streams!","0.6.0"],"nickel-jwt-session":["A nickel &G @0 jwt-@n user sessions.",C[13]],"market":["Infrastructure @0 producers @5 consumers","0.30.1"],"riker-log":["A Log ^F @0 Riker.","0.2.4"],"globals":["Painless global variables in @3","1.0.2"],"kronos":["A ^4 to calculate complex $z expressions","0.1.4"],"grin_secp256k1zkp":["Grin's fork @7 Zero-Knowledge &p of @3 @6 @0 Pieter Wuille's `libsecp256k1` @1. Implements ECDSA @0 @4 SECG elliptic curve group secp256k1 @5 related @E.","0.7.11"],"google-androidpublisher2-cli":[C[600],"2.0.4+20200331"],"mmap-alloc":["A @d ^l backed by $g mappings.",C[3]],"kaze":["An HDL ^b in @3","0.1.19"],"yubico_&F":["Yubikey Challenge-Response & Configuration","0.9.0"],"slog-bunyan":["Bunyan formatter @0 slog-rs","2.3.0"],"rbtree":["@4 rbtree @0 @3","0.1.5"],"actix-cors":["Cross-Origin Resource Sharing (CORS) controls @0 Actix Web",C[827]],"commoncrypto-sys":["$L @6 to Mac OS X's CommonCrypto @1",C[3]],"partial_$U":["partial @Y $U via @4 partial! @e",C[5]],"nbez":["An n-dimensional/n-order Bézier curve @1",C[0]],"sheesy-cli":["$8 'share-secrets-safely' CLI to @o @7 GPG/pass-$C vaults.","4.0.11"],"faunadb":["A Client @0 Fauna Database",C[882]],"aes-siv":["Pure @3 @2 of @4 AES-SIV Misuse-Resistant AuthenticatedEncryption Cipher (RFC 5297) @7 optional architecture-specifichardware acceleration","0.6.2"],"nakadi-types":["A connector @0 @4 Nakadi Event Broker","0.29.2"],"ids_&t":["@p @l allows to ^n unique Ids.","1.3.2"],"message_verifier":["@3 Message Verifier @1 ^i @7 Rails' MessageVerifier @5 MessageEncryptor","1.1.0"],"timmy":["A $z tracker mainly @0 $m tasks",C[1]],"rls-data":["Data $k $2 by @4 RLS @5 @3 ^2","0.19.1"],"carnix":[C[606],"0.10.4"],"wkhtmltox-sys":["$L @6 to wkhtmltox",C[4]],"nfc-sys":["$L @6 @0 @4 libnfc @1","0.1.5"],"$6_gelf":["Gelf @M @u $6.","0.1.6"],"psm":["Portable Stack Manipulation: stack manipulation @5 introspection routines",C[60]],"linkme-impl":["@v detail of @4 linkme @8","0.2.7"],"yewtil":["Utility @8 @0 Yew",C[2]],"conduit-utils":["Various @E @0 conduit-@n $R",C[7]],"$P_codebuild":["^r ^N @0 @3 - ^r CodeBuild @ 2016-10-06",C[27]],"rend":["Endian-aware $9 @0 @3",C[9]],"heed-traits":["$8 $3 $2 inside of @4 fully typed LMDB @h, heed",C[7]],"bmi160":["Platform-&f @3 ^j @0 @4 BMI160 inertial measurement unit (IMU).",C[0]],"mail-core":["[mail/@F] @s @4 Mail $l @0 @4 mail @8 (inkl. multipart mime bodies, &I @5 resource $l)","0.6.2"],"iced_&e":["A &e $N @0 Iced",C[2]],"holdem":["Texas Hold'em specific @g @5 logic.",C[4]],"pallet-collective":[C[601],"3.0.0"],"free_@a":[C[602],"0.0.1"],"lolog":["Logging @1",C[4]],"ffi-support":["A @8 to help expose @3 @y &6 @4 $L.","0.4.4"],"fints-institute-db":["A @1 @5 CLI ^4 to $X FinTS $X $f @0 many German banks","1.2.1"],"buffered-reader":["A super-powered Reader","1.1.0"],"cargo-member":["Cargo &i @0 managing workspace members.",C[5]],"cargo-test":["@S $4 ^7","0.3.1"],"cached":[C[666],"0.26.2"],"fibers":["A @3 @1 to execute a &a of ^O $n tasks (a.k.a, fibers) @n on @Z @5 mio",C[49]],"mft":["A Fast (@5 $M) @i @0 @4 ^6 Master File Table (MFT) @G","0.5.3"],"rcstring":["Dependency-free CString-$C @2 @0 projectswith #[no_std]'s",C[5]],"enso-shapely-macros":[C[603],C[5]],"ostree-ext":["Extension APIs @0 OSTree",C[1]],"uname":["Name @5 $f about current kernel","0.1.1"],"statsd-parser":["@p to parse (Dog)StatsD $p",C[1]],"actix-ip-filter":["IP filter of ^s requests @0 Actix Framework",C[3]],"schemamama_postgres":["PostgreSQL adapter @0 @4 Schemamama migration @O",C[1]],"enso-macro-utils":["^e @0 $O @a.",C[3]],"enum-error-derive":["&n Error $3","0.1.1"],"named_pipe":["Wrapper @0 overlapped (asyncronous) IO of Windows's named pipes","0.4.1"],"drone-stm32-map-pieces-9":[C[46],C[24]],"read_token":["A @d @1 to read tokens @u look ahead","1.0.0"],"jsonrpc-v2":["JSONRPC 2.0 @U",C[12]],"routinator":["An RPKI relying party software.",C[12]],"piston2d-gfx_^T":["A Gfx 2D back-end @0 @4 Piston game $a","0.73.0"],"escaper":[C[604],"0.1.1"],"pidgin":["@d non-recursive grammars","0.4.3"],"Lotus":["Currency @5 Number formatting @1",C[5]],"want":["Detect when another Future wants a result.",C[1]],"pango":["@3 @6 @0 @4 Pango @1","0.14.8"],"neon-build":["Build logic required @0 Neon projects.","0.9.1"],"algebra":[C[774],C[3]],"uniffi":["a multi-@L @6 @B @0 @f (@I @j @V)",C[24]],"rocket_&z":["Types, $3, @5 parsers @0 ^s requests, responses, @5 headers.",C[113]],"freetype-rs":["@H @0 FreeType font @1","0.28.0"],"finchers-juniper":["A set of &p @0 supporting Juniper $T.",C[5]],"stree_cmd":["Command $D ^4 @0 $Z @5 visualizing suffix trees.",C[5]],"rs_algo":["&O sorting ^3 @5 other $u computer science ^3.",C[5]],"tt-call":["Token ^0 calling convention","1.0.8"],"amethyst_^9":["Amethyst networking @8",C[99]],"ewasm_^S":[C[605],C[16]],"generate-nix-pkg":[C[606],C[1]],"packet":["Network packet ^a.","0.1.4"],"netlify_lambda":[C[156],C[3]],"int_$3":["@W a $y @0 extended @y on integers","0.1.1"],"tmp_mio":["Temporary fork of @4 mio @8 @7 windows bug fix","0.5.2"],"rosy":["Ruby @6 @0 @3.","0.0.9"],"tv-renamer":["TV renaming $U @7 TVDB titles @5 templating @j","0.3.3"],"red_asn1_@b":["@a @0 red_asn1",C[5]],"emit_seq":["A Seq collector @0 @4 emit structured logger.",C[1]],"bifrost":["Real-$z media @5 @w communication @0 @3.",C[362]],"x25519-dalek":[C[607],C[909]],"xor_name":["Xor Type","3.1.0"],"pdf":["PDF reader","0.7.2"],"malloc_size_of_@b":["Crate @0 Firefox $g reporting, not intended @0 external $d",C[4]],"bit_^u":["Bit @E (@5 eventually Nibble @j) @0 @3","0.1.1"],"monster":["Collection of &L @E","0.1.28"],"grin_wallet_libwallet":[C[715],"5.0.1"],"validator_@b":["^o 1.1 @2 of #[@b(Validate)]",C[24]],"mozversion":["Utility @0 accessing Firefox $4 metadata","0.4.2"],"janus-plugin":["@p @0 $Z plugins @0 Janus, @4 WebRTC gateway.",C[15]],"html2pango":["@p to convert html to pango.","0.4.1"],"qt_widgets":["@H @0 QtWidgets C++ @1","0.5.0"],"vecrem":["Cursor-$C $V @0 $I iterative removing of elements @t a vec",C[0]],"rustyline-with-hint-fix":[C[655],"9.0.1"],"pipeline":["A @e $b to pipe |> $r @y calls, $C in F# or Elixir.","0.5.0"],"olm-sys":["Low @C $W @0 libolm","1.2.0"],"scale_impl_@B":["a ^B @e to ^n a large percentage of all impls on SCALE &Q $9",C[4]],"rust-extra":["@f-extra","0.0.17"],"arctk":["Physics simulation @1 @5 binaries","1.1.4"],"riscv-rt":["Minimal @I / startup @0 RISC-V CPU's",C[7]],"tc-chain-spec-derive":[C[608],"2.0.0"],"actix-protobuf":["Protobuf @j @0 Actix &e","0.7.0-beta.2"],"solana-stake-o-matic":["I will find you @5 I will stake you","1.6.28"],"djangohashers":["A @3 port of @4 password $9 $2 in Django ^g.","1.4.3"],"libsecp256k1-gen-genmult":["Generator @Y of const @0 libsecp256k1.",C[1]],"google-civicinfo2":["A @q @1 to @o @7 Civic Info (@9 v2)","1.0.0+20160823"],"clock_ticks":["Contains precise_time_s() @5 precise_time_ns() ^Y any C @V","0.1.1"],"blkid-sys":["libblkid raw @r @6","0.1.5"],"melody":["Crossplatform Terminal Music Player",C[1]],"repay":["CLI @0 calculating repayments",C[5]],"sum_$l":["A convenience @e @0 $Z a @h enum $i may be one of several distinct @g.",C[3]],"adi_gpu":["GPU @m - render ^T @5 do $I calculations",C[16]],"ra_ap_paths":["TBD","0.0.79"],"microbmp":["Tiny @5 probably imperfect self-contained bitmap image &3 @1.",C[5]],"twilight-command-parser":["Message @D @i @0 @4 Twilight ecosystem.","0.7.0"],"wrc":["A &d-$M weighted reference counting smart-pointer @0 @3.","2.0.0"],"cargo-junit":["Converts @S ^7 &Z ^d a junit report. Hard forked @t @S-^7-junit, after it went unmaintained @7 critical bugs.",C[7]],"javascriptcore-sys":["Raw @6 to @4 JavaScriptCore @k.","0.0.4"],"actix-router":["Resource path matching @5 router",C[1001]],"mrusty":["mruby $M @6 @0 @3. Define @5 run Ruby ^Y &c.","1.0.0"],"shabal":["Shabal ^z @y",C[1]],"libresolv-sys":["&M @6 to @4 libresolv @1",C[3]],"spreadsheet":["Agnostic spreadsheet reader @5 writer (reserved namespace).","0.0.2"],"tokio-tcp":["TCP @6 @0 $v.",C[138]],"palaver":["Cross-@N polyfills.This @1 attempts to provide reliable polyfills @0 $7 @l isn't implemented on all platforms.","0.3.0-alpha.3"],"rustty":["A $o UI @1","0.1.12"],"sokoban-rs":["An @2 of Sokoban in @3","1.2.2"],"byond":["A @8 @0 interfacing @7 @4 BYOND game $a.",C[2]],"alga_@b":["&n &U @0 ^5 algebraic $3 @t @4 alga @8.","0.9.2"],"actix-web-static-files":["actix-&e &k @z as resources @j.","3.0.5"],"ifstructs":["A @3 @1 @7 &8 @6 to unix if* $k","0.1.1"],"&z_stub":["Actual &e servers, $S @4 full stack. Assert on @4 request, @5 send a response back.","0.1.3"],"bijection":["A @1 @0 producing bijective @y in @3.",C[4]],"envfile":["Buffer an ^K $0 ^d an in-$g map, update @4 map, @5 &0 back to @4 $0",C[5]],"pathfinder_resources":["Shaders, textures, etc. @0 @4 Pathfinder vector ^T @1","0.5.0"],"tablefy_@b":["A $e @e to help Tablefy any struct!",C[5]],"genco":[C[609],"0.15.1"],"event_dispatcher":["A @d @1 to register listeners (@7 priority) @0 specific events &X by @f-emitter","0.0.2"],"shout-sys":["Low @C $L @6 to libshout","0.1.1"],"yazi":["DEFLATE/zlib ^C @5 decompression.","0.1.4"],"$P_macie":["^r ^N @0 @3 - Amazon Macie @ 2017-12-19",C[27]],"luminance-webgl":["WebGL $N @0 luminance",C[2]],"k8-obj-metadata":[C[658],"2.0.2"],"opc":["A @f @2 of @4 open pixel control @9",C[1]],"rendy-init":["Rendy's &x initialization ^4","0.5.1"],"cretonne-wasm":["Translator @t $x to Cretonne IR","0.13.2"],"parsimonious":["Parsimonious @i combinators","0.0.8"],"sendfd":[C[610],C[2]],"sentinel":["Peer-to-peer ^9 group &A @5 PKI-$C ID confirmation",C[4]],"isbnid":["@3 ISBN identifier @1","0.1.3"],"atsamd21-hal":["HAL @5 Peripheral $X @x @0 ATSAMD21 $s","0.3.1"],"expect-test":["Minimalistic snapshot $S @1","1.2.0-pre.1"],"build-env":["Extract $f about @4 $j ^I @t @4 ^K","0.3.1"],"hexasphere":["A @1 to evenly tile hexagons on a sphere.","5.0.0"],"dyn-clonable":[C[611],"0.9.0"],"ref_&d_local":["A @e @0 declaring &d-local `&k`s $C @u both of `lazy_static!` @5 `RefCell`",C[0]],"google-pubsub1_beta2":[C[928],C[210]],"krankerl":["A CLI ^t to manage Nextcloud apps","0.13.2"],"redis-client":["Redis @c in @3","0.5.0"],"trawler":["A workload @B @l emulates @4 traffic to lobste.rs","0.11.0-alpha.7"],"simple-jsonrpc-client":["A @d jsonrpc @c @h",C[0]],"build-time":["@K ^B-@a to ^n $j timestamp $c literals.","0.1.1"],"latest":["A channel-esque $l @l only stores @4 last &5 @l was sent.","0.1.1"],"copy_arena":["Arena ^l @0 @g ^5 Copy","0.1.1"],"gitlab-api":["Wrapper @0 GitLab @x v3","0.6.0"],"zellij-server":["$8 @U-side @1 @0 Zellij",C[95]],"grid_search_cardinal_distance_map":["Grid where each cell stores @4 distance @t a set of interesting points to each cell in a uniform-cost cardinal grid","0.3.1"],"libproc":["A @1 to get $f about running processes - @0 Mac OS X @5 &j",C[13]],"bitflags_$6_shim":[C[612],C[8]],"libimaginteraction":[C[39],C[12]],"tab-daemon":["@4 daemon ^F @0 @4 tab $o multiplexer","0.5.4"],"docsrs-test":["A dummy @X to ^7 [package.metadata.docs.rs]","0.0.5"],"canonical_host":["$8 plumbing @0 @4 host responsible @0 @4 &s host calls.","0.5.0"],"tuple_^u":["A set of @E to enable higher @C $B &6 tuples.",C[2]],"oxygengine-navigation":["Navigation ^F @0 Oxygen Engine",C[42]],"rosrust_msg":["Generates @3 @T @0 all &y available on @4 @O","0.1.4"],"google-monitoring3-cli":[C[613],C[200]],"$6_fmt":["Write any $6::Serialize @u @4 ^E formatting APIs","1.0.1"],"cargo-profiler":["Cargo &i to profile $r @P.","0.1.6"],"co2mon":["Driver @0 @4 Holtek ZyTemp CO₂ USB HID sensors","2.1.1"],"parse_qapi":["A @1 to @i qemu's &V $C QAPI. @Q uses a nom @i to parse @4 &V @5 @4 descriptions. @Q @1 is $2 by @4 qemu-@f-@B ^g to $j @4 @1",C[4]],"candy":["Syntaxic sugar @0 @3: @a @0 lighter ^q ^a @V, @5 more.","0.1.5"],"gstreamer-video":["@3 @6 @0 GStreamer Video @1","0.17.2"],"cassandra-sys":["A bindgen-genderated @f @h $G @4 Cassandra c++ ^j plus ^p examples @7 no additional dependencies.You probably want to $d @4 \"cassandra\" @8 @l @s a $M @h","0.9.0"],"rcalc_lib":["Mathematical expression calculation @1","1.0.0"],"psl-types":["&O @g @0 @4 public suffix @2 $R","2.0.7"],"gphoto2-sys":["$L @6 to libgphoto2",C[4]],"etherdream":["An EtherDream (laser projector DAC) @1.","0.1.1"],"memoffset":["offset_of $7 @0 @3 &o.","0.6.4"],"execute-command-tokens":["Parse @D $p.","0.1.4"],"nine":["$8 9p @9 as a $6 @G @5 message @g.","0.5.0"],"crc64fast":["SIMD accelerated CRC64 calculation","1.0.0"],"gotham_@b":["^o 1.1 @T @0 Gotham $3","0.6.0"],"probe-run":["Runs ^b programs just $C &8 ones","0.2.6"],"petal-neighbors":["Nearest neighbor search ^3 including a ball ^0 @5 a vantage point ^0.","0.7.1"],"tectonic_bridge_freetype2":["Expose @4 FreeType2 @1 C APIs to @3/Cargo.",C[3]],"vkrs":["Vkontakte @x @3 @c @1","0.7.0"],"espim":["$8 Endless Sky Plug-In Manager",C[3]],"esl":["A @1 @0 &3, $O @5 &u ESM/ESP/ESS @z.",C[7]],"fscommon":["Filesystem $u @E.","0.1.1"],"scientific":["Arbitrary precision scientific &a (no_std capable, in ^X @3)",C[4]],"r_i18n":["An i18n @2 in @3.","1.0.1"],"rlog":["Minimal $0-@n &H @1.","1.0.0"],"typed-index-collections":["Typed index $4 of @3 slice @5 Vec containers","3.0.3"],"cargo-tally":["Cargo &i @0 drawing graphs of @4 &a of &c on a @8 &6 $z","1.0.0"],"wgpu-hal":["WebGPU hardware $F layer","0.11.4"],"tcod_window":["A TCOD back-end @0 @4 Piston game $a",C[3]],"css-rs-macro":["A @e @0 $O $r CSS next to $r views",C[0]],"libnfd":["High-@C @3 @6 to nativefiledialog","0.2.3"],"cidr-utils":["@Q @8 @s @w $k @5 @y to deal @7 IPv4 CIDRs @5 IPv6 CIDRs.","0.5.5"],"sgx_unwind":[C[21],"0.1.1"],"rust-github":["@3 @n @1 @0 &2 @7 @4 Github v3 @x.","0.1.1"],"azure_sdk_^x_account":["@3 &r $G Microsoft Azure REST APIs - Blob ^x account @8","0.41.3"],"blkar":["Multithreaded archiver offering bit rot protection @5 sector @C recoverability","7.2.7"],"atomic-counter":["Atomic (&d-$M) counters @0 @3","1.0.1"],"$p":["String @E, including an unbalanced Rope","0.1.1"],"eventsourcing-derive":["Custom @b @a @0 Eventsourcing components","0.1.3"],"vobject":["@K VObject @R @1.","0.7.0"],"wepoll-sys-stjepang":["A fork of wepoll-@r @7 stjepang's patches","1.0.8"],"logq":["A &e-@U log $0 @D $D toolkit @7 SQL @m","0.1.19"],"async-channel":["Async multi-producer multi-consumer channel","1.6.1"],"pc-keyboard":["PS/2 keyboard @m @1.","0.5.1"],"deadpool-redis":["Dead @d @J pool @0 redis",C[13]],"core-foundation":[C[614],"0.9.2"],"col_@a":["A $b of general purporse @a @0 construct distinct @g of &C.",C[8]],"wagyu-zcash-parameters-2":[C[323],C[3]],"dejavu":["@W @4 DejaVu font family @0 embedding","2.37.0"],"^f_libra_ir_to_bytecode":["Libra ir to bytecode",C[10]],"criterion-cycles-per-byte":["measure $z @7 CPU cycles @0 criterion",C[4]],"shortcut":["an indexed, queryable column-@n ^x @O","4.1.4"],"up-rs":["up-rs is a ^4 to help you keep $r machine up to date.",C[16]],"lettre_email":["Email &I","0.9.4"],"unic-segment":["UNIC — &h Text Segmentation Algorithms","0.9.0"],"olm-rs":["A @3 @h @0 libolm.","2.0.1"],"assets":["$n asset ^A",C[1]],"checkpwn":["Check Have I Been Pwned @5 see if it's $z @0 you to change passwords.","0.5.3"],"ksni":["A @3 @2 of @4 KDE/freedesktop StatusNotifierItem specification",C[3]],"pdqselect":["Selects @4 kth smallest element of a slice, @n on Orson Peters's pdqsort",C[0]],"article_scraper":["Scrap article contents @t @4 &e. Powered by fivefilters full ^D feed configurations.","1.1.7"],"csv-guillotine":["CSV's often have metadata at top before @w headers. @Q removes it.","0.3.5"],"easytime":["Providing @h @g @0 safely performing panic-free checked arithmetic on instants @5 durations.",C[8]],"criterion_bencher_compat":["Drop-in replacement @0 commonly-$2 parts of Bencher","0.3.4"],"tide-compress":["Outgoing ^C &G @0 @4 Tide @U @k.","0.9.0"],"google-cloudkms1_beta1":[C[615],"2.0.8+20170515"],"fixed_width_@b":["&n $y @0 $d @7 @4 fixed_width @8.",C[2]],"rio":["GPL-3.0 nice @6 @0 io_uring. MIT/Apache-2.0 license is available @0 spacejam's github sponsors.","0.9.4"],"vmw_backdoor":["A ^X-@3 @1 @0 VMware host-guest @9 (\"VMXh backdoor\")",C[5]],"git-mit-install":["Install git-mit ^d a repository","5.11.6"],"compile-time-lua-bind-hash":["A @8 @0 doing compile-$z hashing of lua constants","1.1.1"],"futures-async-stream-macro":["@v detail of @4 `@Z-@J-^L` @8.","0.2.5"],"wasmer-engine-universal":[C[616],"2.0.0"],"mpid_messaging":["Types $2 by SAFE Vaults @5 SAFE Clients to send @5 receive &y.",C[3]],"rsnowflake":["Distributed id @B @n on Twitter Snofwlake","0.1.1"],"rc-writer":["A tiny implement @0 $O @w to a reference counted instance.","1.1.9"],"engine-io":["An engine.io @1 @0 Iron.","0.1.4"],"lss_^j":["Driver @0 Lynxmotion LSS servos","0.7.0"],"xgboost":["Machine learning @u XGBoost","0.1.4"],"rustmann":["@3/Tokio @c @0 Riemann","0.7.3"],"char-iter":["A performant iterator &6 a linear range of characters (`char`s),correctly ^a @4 surrogate range.",C[0]],"merge_@b":["&n @e @0 @4 merge::Merge $y",C[0]],"fp_@f":["Implement fp features @0 @3","0.3.5"],"e310x":["With svd2rust ^8 peripherals @0 Freedom E310 MCU's.","0.9.0"],"cryptovec":["A vector $i zeroes its $g on clears @5 reallocations.","0.6.1"],"csfml-window-sys":["@H to csfml-window","0.6.0"],"ink_prelude":["[ink!] &O @x @0 no_std @5 std to $X alloc @8 @g.",C[107]],"tokio-pg-mapper":[C[635],C[3]],"bio-types":["A $b of $u biomedical @g @0 $d in @f-bio @5 @f-htslib.",C[28]],"type-operators":["A @e @O @0 $Z $l operators in @3 @5 $O $l-@C logic.","0.3.5"],"blosc":["@3 @6 to @4 C-BLOSC ^C @1","0.1.3"],"versions":["A @1 @0 @R @5 comparing software $4 ^M.","3.0.3"],"srt-protocol":[C[747],C[3]],"cppn":["Compositional Pattern Producing Networks",C[1]],"npy":["NumPy $0 @G (de-)@M",C[2]],"parity-codec":[C[617],"4.1.4"],"obkv":["Optimized-bytes key @5 a &5 store",C[3]],"mailin":["A @1 @0 $O SMTP servers","0.5.0"],"graph_map":["Memory mapped directed graph representation",C[0]],"gumdrop_@b":["custom @b @j @0 gumdrop",C[7]],"memcache-async":["A no-frills @J memcached @c @0 @3.","0.6.1"],"webkit2gtk":["@3 @6 @0 webkit-gtk @1","0.15.2"],"$z_calc":["A @1 @0 music/DSP $z conversions! @W @y @5 &P @0 converting $t ticks, ms, samples, bars, beats @5 measures.",C[15]],"suffix":["Suffix arrays.","1.2.0"],"melon":["A @1 @0 $Z retro computing platforms","0.15.2"],"esaxx-rs":["Wrapping $G sentencepiece's esaxxx @1.","0.1.7"],"nphysics2d":["2-dimensional physics $a in @3. @Q @8 is being superseded by @4 rapier3d @8.","0.24.0"],"commodore":["Slack Command @x handler @1",C[1]],"meson":["A $j &m @0 meson","1.0.0"],"ostn02_phf":["A PHF map of @4 OSTN02 grid shifts @0 $d in transforming ETRS89 grid coordinates to OSGB36",C[49]],"femtovg":["Antialiased 2D vector drawing @1","0.2.8"],"cargo-edit-locally":["A Cargo &i to edit &c locally via `[replace]`","0.1.3"],"revord":["Reversed ordering @8 @0 @f","0.0.2"],"nrfxlib-sys":["@3 @6 to @4 Nordic nRF9160 Socket @p.","1.5.1"],"thousands":["Adds digit separators to ^M, configurably.",C[3]],"ggez":["A ^O game @k @0 making 2D games @7 minimum friction, &X by Love2D.","0.6.1"],"predicates-tree":["Render boolean-valued predicate @y results as a ^0.","1.0.4"],"nntp":["NNTP @c @0 @3","0.0.5"],"vecarray":["&W array backed by a vector.","0.1.3"],"node-rpc":["Tetcore $b of node-specific RPC &P.","2.0.0"],"currency":["A @1 @0 representing international currencies.",C[2]],"redox_termios":["A @3 @1 to $X Redox termios @y",C[4]],"linenoise-rust":["@K $W to lib linenoise (readline-$C) in @f. linenoise is included.",C[5]],"indented":["Format @w @7 indentation",C[0]],"surfman-chains-api":[C[618],C[3]],"glsl-to-spirv-macros":["^o @0 $E SPIR-V shader binaries @t GLSL at compile $z @0 $d @7 Vulkan.To $d this @8, you must also $d @4 glsl-to-spirv-@a-impl @8.","0.1.1"],"chakracore-sys":["Low-@C @6 to JSRT, @4 ChakraCore @x","0.2.3"],"construct":["A @e @0 $K container literals.","0.0.3"],"google-groups-settings":["A fully ^8 & opinionated @x @c @0 @4 Google Groups Settings @x.",C[4]],"smlang-macros":["Procedual @a @0 @4 smlang @8",C[5]],"zmq-rs":["A ZeroMQ @1 $W (^6 ^i) @0 ZMQ-4.1.4","0.1.8"],"scirust":["A scientific computing @1","0.0.5"],"cql_bindgen":["A @f-bindgen ffi @h $G @4 Cassandra c++ ^j plus ^p examples @7 no additional dependencies.You probably want to $d @4 \"cassandra\" @8 @l @s a $M @h",C[3]],"rustc-ap-rustc_graphviz":["^W published $4 of @4 @X `rustc_graphviz` in @4 @f-lang/@f repository @t commit 9a27044f42ace9eb652781b53f598e25d4e7e918 $8 publishing script @0 this @8 lives at: &Y://github.com/alexcrichton/&K-auto-publish",C[215]],"socks":["SOCKS proxy clients","0.3.3"],"hedwig":["A @d message bus @0 @3","4.1.1"],"grabbag":["A &L grab-bag of $7.",C[4]],"itconfig":[C[619],"1.1.1"],"get_errno":["Extracting errno @t std::io::Error","0.0.3"],"snekdown":["A @i @0 @4 custom snekdown markdown syntax","0.33.4"],"crypto-markets":["Get all trading pairs of a cryptocurrency exchange","0.7.7"],"mach_object":["Mach-O File Format &B @0 @3","0.1.15"],"contrafact":["A $y @0 highly composable constraints (\"facts\") $i can be $2 both to verify @w @5 to ^n arbitrary @w within those constraints","0.1.0-dev.1"],"ckb-sentry-core":[C[883],"0.21.0"],"nobs-vk":["A very basic, non rich @h @0 $W vulkan commands @5 ^h loading",C[3]],"keynesis":["General purpose key ^A @5 associated ^w protocols","1.4.0"],"rustc-ap-rustc_ast_pretty":["^W published $4 of @4 @X `rustc_ast_pretty` in @4 @f-lang/@f repository @t commit 9a27044f42ace9eb652781b53f598e25d4e7e918 $8 publishing script @0 this @8 lives at: &Y://github.com/alexcrichton/&K-auto-publish",C[215]],"rgb2yuv420":["@K RGB to YUV420 converter","0.2.3"],"spline":["Splines.",C[3]],"distro-info":["@p @0 @R Debian/Ubuntu distro-info-@w",C[1]],"cretonne-module":["Support @0 linking @y @5 @w @7 Cretonne","0.13.2"],"bdk":["A modern, ^O, descriptor-@n wallet @1",C[28]],"impl-enum":["Macro @0 $E &P on an enum @l match on @4 enum @5 call @4 same method on each variant.",C[3]],"stfu8":["Sorta Text Format in UTF-8","0.2.4"],"reproto-backend":[C[89],"0.3.36"],"rblas":["BLAS @6 @5 &r","0.0.13"],"c3p0_migrate":[C[620],C[16]],"marine-runtime":["Marine is @4 Fluence Compute Runtime","0.7.2"],"tracing-tree":["A Tracing Layer $i prints a ^0 of spans @5 events.",C[32]],"rust-life":["An @2 of Conway's Game of Life.","0.2.12"],"chatbot":["An extensible chatbot","0.2.3"],"sg":["@p @0 Linux's SCSI &W (SG) @m",C[1]],"hashtag":["A hashtag @i","1.0.1"],"tracing-log":["@W compatibility $t `&g` @5 @4 `log` @8.",C[4]],"pom":["PEG @i combinators @u operator overloading ^Y @a.","3.2.0"],"env-libvpx-sys":[C[110],"5.1.0"],"b0x":["A @d CLI ^4 to display $f about @4 provided input (integers, IP addresses, $p).","1.0.0"],"geo":["Geospatial $9 @5 ^3",C[43]],"veml6040":["Platform-&f @3 ^j @0 @4 VEML6040 RGBW color light sensor.","0.1.1"],"rustsec-example-crate":["VULNERABLE example @8 @0 @4 RUSTSEC-2019-0024 ^7 advisory.Version 0.0.1 of this @8 is vulnerable, @5 1.0.0 is considered patched.Useful @0 $S ^a of vulnerable vs patched &c. Bothreleases are empty @5 contain no $7.","1.0.0"],"actix-server-config":["Actix @U config ^u",C[55]],"utf16_lit":["macro_rules to make utf-16 literals.","2.0.2"],"pem-iterator":["Iterate &6 PEM-encoded @w",C[3]],"parallel-stream":["Data parallelism @1 @0 @J-std","2.1.3"],"unic-idna-mapping":["UNIC — IDNA — IDNA Mapping Table","0.9.0"],"crc32fast":["Fast, SIMD-accelerated CRC32 (IEEE) checksum computation","1.2.1"],"clog":[C[621],"0.9.1"],"swf-fixed":["SWF fixed-point ^M @0 @3","0.1.5"],"cluatoi":["Parsing @4 byte sequence of @4 ascii characters @5 safely converting them to integers.",C[5]],"opml":["An OPML @i @0 @3.","1.1.3"],"$P_opsworks":["^r ^N @0 @3 - ^r OpsWorks @ 2013-02-18",C[27]],"sentry-slog":["Sentry $T @0 @4 slog @8.",C[88]],"rustc-ap-rustc_errors":["^W published $4 of @4 @X `rustc_errors` in @4 @f-lang/@f repository @t commit 9a27044f42ace9eb652781b53f598e25d4e7e918 $8 publishing script @0 this @8 lives at: &Y://github.com/alexcrichton/&K-auto-publish",C[215]],"cargo-asm":["A @S &i @l displays @4 ^8 assembly of @3 source @V.",C[60]],"fabric-support-procedural":[C[951],"2.0.1"],"rumblebars":["a handlerbars template expansion @1",C[1]],"pylon-cxx":["@3 @h of @4 Pylon &4 @0 Basler cameras",C[3]],"cargo-ebuild":["Generates an ebuild @0 a @X @u @4 in-^0 eclasses.","0.3.1"],"bulk-gcd":["Fast parallel bulk GCD computation @0 finding weak RSA keys in a set","2.2.0"],"ispc_compile":["A $j-$z &m @0 Cargo $j scripts to help @7 compilingand linking to ISPC @V, @5 $E @3 @6 to @4 resulting library.The ^8 @6 can be imported by @u ispc_rt, $i will alsosupport linking to pre-built ISPC @V. Using pre-built binaries is usefulfor distributing a @1 or ^4 @u ISPC, while not requiring end usersto have @4 ISPC ^2.","1.0.9"],"qt_@F":["@H @0 QtCore C++ @1","0.5.0"],"libcratesio":["@p @0 accessing crates.io @x","0.0.8"],"qutex":[C[622],"0.2.3"],"sourcemap":["Basic sourcemap ^a @0 @3","6.0.1"],"biscuit":["A @1 to work @7 Javascript Object Signing @5 Encryption(JOSE),including ^k Web Tokens (JWT), ^k Web Signature (JWS) @5 ^k Web Encryption (JWE).","0.6.0-beta1"],"matter":["Universal frontmatter @i.","0.1.0-alpha4"],"futures-v01x":["A mirror of @Z v0.1.x to play nicely @7 @Z-compat @5 @Z v0.2.x",C[0]],"list":["A singly-linked stack $C list @j peek.","0.1.3"],"&L_$X_$0":["A @h $G @4 Read @5 Write $3 @l allow @0 @d or raw @M",C[2]],"nom_pem":["PEM @i (rfc1421) @n of nom","4.0.0"],"mown":["Maybe owned ^V. Wrappers @0 ^V @l can be either owned or borrowed.",C[5]],"lindera-cli":["A @D-$D @m @0 Lindera.",C[7]],"libsensors-sys":["@3 @6 to libsensors",C[3]],"aws-auth-payload":["@Q @1 @s &P @0 you to $d $r ^r credentials to ^n a pre-signed request to ^r @x.",C[1]],"reproto-compile":["Rethinking ^c GeneratorsProgrammatic compilation.","0.3.36"],"stat":["GSL Statistics $A in @3",C[3]],"hmac-sha256":["A &7, self-contained SHA256 @5 HMAC-SHA256 @2","0.1.7"],"embedded-hal-can":["An experimental home @0 &Y://github.com/@f-^b/^b-hal/pull/77",C[0]],"slip-codec":["Serial Line Internet ^c (SLIP) encoder/decoder","0.3.1"],"bitpacking":["Fast integer ^C/decompression via SIMD bit-packing. Port of simdcomp to @f.","0.8.4"],"arrutil":["Functions @0 manipulating arrays @t slices","1.0.0"],"gpio":["Fast GPIO interfaces @0 &j","0.4.1"],"integer-encoding":["varint+zigzag @5 fixedint integer $5/^P (&Y://developers.google.com/@9-buffers/docs/$5)","3.0.2"],"strtod":["A high precision floating point @i @2 @0 @3","0.0.1"],"gpgrv":["Pure-@3 @2 of gpgv, to verify gpg signatures",C[1]],"webrtc-audio-processing-sys":[C[623],C[9]],"actix-web-validator":["Validation mechanism @0 actix-&e","2.2.0"],"easyjack":["Easy, rusty, @6 @0 @4 jack ^S",C[4]],"python-packaging":["Python packaging $9 implemented in @3",C[16]],"local-ip-address":["Retrieve system's local IP address @5 Network Interfaces/Adapters on &j, macOS @5 ^6.","0.4.4"],"spork":["A Rusty key-object store @0 ^b @P","0.0.5"],"lando":["@3 &z @m @0 ^r lambda @x gateway events",C[5]],"ff_ce":[C[624],"0.13.1"],"binomial_^0":["A ^G binomial pricing ^0 @0 options",C[2]],"tiny_ecs":["A tiny ECS @l tries to avoid unnecessary copy/clones","0.19.6"],"dusk-pki":["A @1 @l holds @4 @g @5 @y required to perform keys $B in Dusk",C[7]],"simple-ssl-acme-cloudflare":["@K SSL @7 ACME @5 CloudFlare is a ^4 to simply apply SSL certificates by @u OpenSSL @5 ACME via CloudFlare DNS.","1.0.12"],"rocks-sys":["Raw RocksDB @6 @0 @3, $2 internally in @f-rocks",C[32]],"netlink-proto":["@J netlink @9","0.7.0"],"tame-gcs":["A &7 @1 @7 a limited set of Google Cloud Storage $B",C[13]],"bevy_hecs":["Bevy fork of hecs: a $I, minimal, @5 ergonomic entity-component-@O",C[1]],"gtk-sys":[C[1060],C[24]],"git-workspace":["Manage @5 update personal @5 work git repos @t &l providers",C[7]],"youtube-subscriptions":["$o UI @0 viewing youtube subscriptions","0.2.74"],"elastic_query":["convert bool expression to elasticsearch DSL","0.4.4"],"druid":["Data-oriented @3 UI design toolkit.","0.7.0"],"bevy_wgpu":["A wgpu render $N @0 Bevy Engine","0.5.0"],"const_fn_assert":["Assertions @0 const @y.",C[4]],"aws_lambda_events":["^r Lambda event $h","0.5.0"],"spng":["@3 @6 to libspng",C[320]],"efibootnext":["A @1 @0 manipulating @4 BootNext UEFI variable @5 listing possible boot options",C[5]],"$P_resource_groups":["^r ^N @0 @3 - ^r Resource Groups @ 2017-11-27",C[27]],"clippy_lints":["A bunch of helpful lints to avoid $u pitfalls in @3","0.0.212"],"botan":["@3 @h @0 Botan cryptography @1","0.8.1"],"ckb-constant":["Ckb constant container",C[302]],"structural_@b":["@v detail of @4 structural @8.","0.4.3"],"hpke":["An @2 of @4 HPKE hybrid encryption ^E in ^X @3","0.7.1"],"expression-num":["Numerical expression @2 @n on expression-rs","0.2.3"],"metrics-macros":["^o @0 @4 &q @8.",C[2]],"rstring-builder":["String &I $l","0.1.4"],"location_history":["Parse Google LocationHistory.json",C[8]],"wasm-bindgen-wasm-conventions":["^e @0 ^p @7 Wasm ^H conventions (usually established by LLVM/lld)","0.2.78"],"posish":["posish has been renamed to rsix",C[43]],"toml_document":["Document-style TOML @i. Allows editing TOML document in a way $i preserves whitespace @5 comments.","0.1.3"],"near-rpc-error-macro":[C[856],C[0]],"iso_country":["ISO3166-1 countries","0.1.4"],"thrussh-keys":["Deal @7 SSH keys: load them, decrypt them, call an SSH agent.","0.21.0"],"alloc_hoard":["$d Hoard as rust's ^l",C[1]],"xio_hwdb":["XIO hardware-^Q @w $k","0.7.0"],"nvptx":["@3 to PTX ^2 @u LLVM/NVPTX target","0.2.3"],"easy-jsonrpc-proc-macro-mw":[C[988],"0.5.1"],"poule":[C[625],C[9]],"asio-sys":["Low-@C @m @5 $W ^1 @0 @4 steinberg ASIO ^N.",C[3]],"ad983x":["Platform-&f @3 ^j @0 @4 AD9833, AD9834, AD9837 @5 AD9838 low-power programmable waveform generators / direct digital synthesizers.",C[1]],"kahan":["@W @g to perform Kahan summation","0.1.4"],"qip":["A @1 @0 ^Z quantum computing simulations.",C[99]],"pallet-elections-phragmen":["FRAME &v @n on seq-Phragmén election method.","3.0.0"],"$Q_@a":["^o @0 ^P base64-$C encodings in $c literals to [u8] literals.","1.0.0"],"atom_syndication":["@p @0 serializing @4 Atom &e content syndication @G",C[16]],"ostree":["@3 @6 @0 libostree",C[84]],"cfb-mode":["&W Cipher Feedback (CFB) mode @2.","0.7.1"],"solana-core":[C[58],"1.8.1"],"bert":["BERT (Binary ERlang Term) serializer",C[0]],"xiod":["XIO &z daemon","0.14.1"],"oauth-client":["OAuth @c @0 @3","0.6.1"],"tetsy-finality-grandpa":["Tetsy PBFT-@n finality gadget @0 blockchains",C[15]],"hexe_@F":["$8 @F components of @4 hexe chess $a @8.","0.0.5"],"accountable-refcell":["A RefCell @h @l @s actionable $f @0 dynamic borrow failures.",C[5]],"sec":["Prevent secrets @t leaking via `Debug` or `Display` $3","1.0.0"],"futures-await":["Async/await syntax @0 @3 through a $e @e. @Q @8 defines @4`#[@J]` @e @0 @y, @4 `await!` @e @0 @Y bodies, andintends to be $2 @7 @4 `@Z` @8 on crates.io as well.",C[626]],"glean-ffi":["$L layer @0 Glean, a modern Telemetry @1","42.1.0"],"mpu9250":["no_std ^j @0 @4 MPU9250 & onboard AK8963 (accelerometer + gyroscope + magnetometer IMU)","0.24.0"],"encoding8":["various 8-bit encodings",C[9]],"unic-char-property":["UNIC — &h Character Tools — Character Property taxonomy, contracts @5 $j @a","0.9.0"],"libzfs-sys":["@3 @6 to libzfs","0.5.11"],"xor-utils":["Utility @y related to xor encryption / decryption","0.6.0"],"box_^L":["@v of @4 box-^L encryption @9.","0.5.0"],"zenith":["A Medical, @5 Theoretical Science &D ^4.","0.0.2"],"filetime_win":["^6 FILETIME @5 SYSTEMTIME $c @5 $Q @M",C[3]],"svd-parser":["A CMSIS-SVD $0 @i",C[16]],"scte35-reader":["Reader @0 @w formatted according to SCTE-35",C[24]],"@t_variant":["^W @b From impls @0 enums","0.1.3"],"blockchain":["Unopinioned blockchain @k","0.9.2"],"libimagnotes":[C[39],C[12]],"option_set":["Bitflags on steroids","0.1.4"],"detach":["^t $l @0 being able to detach/reatach a member item","0.0.42"],"flow":["A realtime log analyzer","0.3.5"],"to_vec":["convenient to_vec, to_set @5 to_map &P on iterators",C[0]],"conrod_gfx":[C[214],"0.75.0"],"grep-pcre2":["Use PCRE2 @7 @4 'grep' @8.","0.1.5"],"rfc822_sanitizer":["rfc822/2822 sanitizer/normalizer.","0.3.4"],"rbtag_@b":["A $e @e impl to add git @5 $j datetime info",C[1]],"digest-writer":["Adds an `io::Write` @m on top of `digest::Digest`","0.3.1"],"enum_index_@b":["^o @0 extracting Enum variant index",C[3]],"jokeyrhyme-dotfiles":["read my dotfiles repository @5 do stuff","0.46.0"],"pnacl-build-helper":["Build script ^t @0 $K PNaCl/NaCl C/CXX &4 @t source","1.4.11"],"oso-derive":["@a @0 oso, an open source policy $a @0 authorization that’s ^b in $r $U",C[74]],"sea-schema":["🌿 SQL schema definition @5 discovery","0.2.9"],"frame-metadata":["Metadata @g @0 Substrate runtimes","14.0.0"],"stronghold-derive":["Proc @a @5 derives @0 Stronghold",C[3]],"sv-parser-error":[C[327],C[17]],"treeid":["An @2 of rational buckets @0 lexically ordered &C.","0.3.11"],"pixel":["Prototype! Pixel manipulation @1 (blend @5 convert colors)","0.1.3"],"reed-solomon-novelpoly":["An @2 of a reed solomon @V / encoder / decoder @7 complexity `O(n lg(n))`","1.0.0"],"pumpkin":["A cryptographically secure prime &a @B","2.0.1"],"waitfor":["Retry a @Y until it succeeds, errors out, or a timeout/deadline is reached.",C[0]],"solana-sdk-macro":["Solana ^N Macro","1.8.1"],"oxygengine":["Oxygen Engine",C[42]],"chromiumoxide_pdl":["Contains a PDL @i @5 @f @B","0.3.1"],"dusk-varint":["varint+zigzag integer $5/^P (no_std)",C[0]],"tree-sitter-embedded-template":["ERB grammar @0 @4 ^0-sitter @R @1",C[95]],"ctl10n":["Compile-$z localization @1",C[3]],"^I_control":["Methods @0 ergonomically running processes @7 timeouts","3.1.0"],"openvpn-plugin":["A @8 allowing &x creation of OpenVPN plugins in @3","0.4.1"],"ethers-core":["Core $k @0 @4 ethers-rs @8","0.5.5"],"needle":["Fast search @y @0 finding things in Strings, Arrays @5 iterators.","0.1.1"],"cargo-contract":["Setup @5 deployment ^4 @0 developing Wasm @n smart contracts via ink!",C[23]],"frame-support-procedural-tools-derive":[C[627],"3.0.0"],"xmlwriter":["A @d, streaming XML writer.",C[0]],"drone-macros-core":["$q @a base @0 Drone, an Embedded Operating System.","0.14.3"],"rustorm":["An orm @0 @f",C[42]],"rustbus":["An @2 of @4 dbus @9",C[26]],"ignore":["A $I @1 @0 efficiently matching ignore @z such as `.gitignore`against $0 paths.","0.4.18"],"sc-executor-common":[C[628],"0.9.0"],"serial-core":["@3 abstractions @0 serial ports.",C[2]],"adaptive_backoff":["@1 @0 intelligently backing off rate limited or fallible resources",C[5]],"netrc-rs":["&B @0 .netrc $0",C[4]],"phf":["Runtime @j @0 perfect ^z @Y @w $k",C[13]],"trek":["Database migration ^A @0 @3 programs","0.3.1"],"opencorpora":["Reading @5 @R opencorpora.org XML-dictionary.",C[3]],"cloudflare":["@3 @1 @0 @4 Cloudflare v4 @x","0.8.7"],"rect-iter":["Iterator @0 2D rectangle areas",C[1]],"dvk":["Dynamically loaded Vulkan","0.1.6"],"gloo-events":["Convenience @8 @0 ^p @7 DOM event listeners","0.1.1"],"@e_rules_&U":[C[997],"0.0.2"],"mrtd":["&B @0 machine-readable travel documents (MRTD)",C[2]],"joy":["Joystick input @1","0.1.3"],"goblin":["An impish, cross-@N, ELF, Mach-o, @5 PE $Q @R @5 loading @8","0.4.3"],"misc_^u":["A &7 $b of convenient @5 $w @y developed @0 personal $d.","4.0.1"],"mayda_@a":["^o to ^n basic $5 @5 ^P @y $2 by mayda","0.1.4"],"unic-ucd-segment":["UNIC — &h Character Database — Segmentation Properties","0.9.0"],"rspotify":["Spotify @x @h","0.11.2"],"sun":["calculate @4 position of @4 sun",C[3]],"intrusive":["Proof-of-concept $y @0 intrusive iterators.","0.0.4"],"cargo-wasi-exe-x86_64-unknown-linux-musl":["Precompiled $Q of `@S-wasi` @0 x86_64-unknown-linux-musl","0.1.23"],"prometheus_exporter_base":["Prometheus @3 exporters base @8 @7 optional boilerplate","1.3.0"],"structconf_@b":["&n @e @0 structconf",C[2]],"waltz":[C[629],"0.4.1"],"wasmer-clif-fork-wasm":[C[630],"0.59.0"],"ladspa":["An @m @0 $O LADSPA plugins safely in @3.","0.3.4"],"blender-armature":[C[631],"0.9.2"],"teensy3":["@3 @m layer @0 @4 Teensy 3.1/3.2 microcontroller",C[3]],"webview-sys":[C[632],"0.6.2"],"app_units":["Servo app units $l (Au)","0.7.1"],"usi-run":["A @D $D $w @0 running games $t USI compliant Shogi engines.","0.9.0"],"cretonne-simplejit":["A @d JIT @1 backed by Cretonne","0.13.2"],"ruplicity-console":["Command $D @m to browse duplicity backups",C[4]],"xswag-syntax-java":["Java &B @0 @4 xswag @O",C[1]],"lightspeed_auth":[C[209],"0.40.1"],"tiberius":["A TDS (MSSQL) ^j","0.6.4"],"moore-vhdl":["$8 VHDL @2 of @4 moore ^2 @k.","0.12.1"],"gitlab":["Gitlab @x @c.","0.1403.0"],"aecs":["Another ECS","1.2.3"],"effect-monad":["A &8-@f @2 of an Effect monad, &X by PureScript's EFFMonad.","0.3.1"],"nom-midi":["Parse a @d midi $0 ^d @w $k @u nom","0.5.1"],"embedded-dma":["Traits to aid in @4 creation of sound DMA abstractions",C[4]],"always-assert":["Recoverable assertions @0 long-running robust @P",C[4]],"webhook-listen":["A webhook listener $i drops @4 responses @7 ^d specified directories.","1.1.0"],"nash-native-client":["&8 @f @c @0 &2 @7 nash exchange via websockets","0.1.34"],"flip-link":["Flips @4 $g layout of ^b programs to protect against stack overflows","0.1.5"],"google-cloudiot1":[C[633],C[112]],"hyper":["A $I @5 correct ^s @1.","0.14.14"],"rust-gmp":[C[634],"0.5.0"],"configure_me_^H":["A @1 @0 &x &u of $U $H @t @z, ^K variables @5 @D $D arguments.","0.4.1"],"&V_&5_merge":["Interface to merge serde_json::Value objects.","1.1.0"],"tokio-trace":["A scoped, structured &H @5 diagnostics @O.",C[0]],"defmt-macros":["defmt @a","0.2.3"],"time-sys":["@H to Linux's time.h @5 time64.h. Some @y have been replicated, but more are still to come.","0.0.2"],"clear_on_drop":["Helpers @0 clearing sensitive @w on @4 stack @5 heap","0.2.4"],"gstreamer-player":["@3 @6 @0 GStreamer Player @1",C[26]],"pid_control":["A PID controller @1","0.7.2"],"ciruela":["A peer-to-peer synchronization software @0 servers in datacenters.","0.6.12"],"ethers-contract-derive":["Proc @e @0 $l-$M @6 ^1 to Ethereum @5 Celo smart contracts","0.5.4"],"scribe":["Text editor toolkit.","0.7.2"],"dsfmt-rs":["@3 port of @4 dSFMT &L &a @B.","0.1.1"],"define_^q":["A @1 @0 easily defining an ^q $l.","4.0.1"],"rustc-std-workspace-alloc":["workspace hack","1.0.0"],"os_str_bytes":["^e @0 converting $t byte sequences @5 @N-&8 $p","5.0.0"],"coil":["An @J @5 sync background job queue @0 Postgres",C[2]],"$D_2d":["Bresenham's $D $1 as a @f iterator","0.5.1"],"dutree":["Command $D ^4 to analyze disk usage","0.2.18"],"artifact-app":["Artifact is a design doc ^4 made @0 developers. It allows anyone toeasily &0 @5 link their design docs both to each other @5 to source @V,making it &x to track how @q their ^g is.Documents are revision controllable, can be rendered as a staticweb page @5 have a full suite of @D $D &1 @0 searching,formatting @5 displaying them.","1.1.0-beta001"],"ptags":["A parallel universal-ctags @h @0 git repository","0.3.3"],"velcro_@F":["Core &c $2 by @4 `velcro` @8. See `velcro` @0 documentation.It is not advised to depend on this @8 directly; it is an ^J &m of `velcro` @5 may be subject to breaking changes.","0.5.2"],"serial-win":["Serial communications in ^6",C[3]],"digest_auth":["@v of @4 Digest Auth $1 as defined in IETF RFC 2069, 2617, @5 7616, intended @0 ^s clients",C[1]],"gdnative-sys":["Generated @6 to @4 Godot game engine's gdnative @F @g (See @4 gdnative @8).","0.9.3"],"traverse":["Proof-of-concept $y @0 ^J iterators called traversals.","0.0.12"],"rocket_i18n":["Rocket fairing @0 &x internationalization @7 gettext (also supports Actix &e)","0.4.1"],"leetcode_@0_@f":["leetcode @0 @f","0.1.37"],"kinetic":[C[1007],"0.1.1"],"headers-core":["typed ^s headers @F $y",C[3]],"toa-ping":["Utility to perform pings.","0.1.1"],"crypto-contract-value":["Get contract &5.","1.1.0"],"lightspeed_logger":[C[209],"0.40.1"],"ymlctx":["YAML $H overlaying @O @l natively integrates ^d operationalized tasks","0.1.8"],"rlp":[C[128],"0.5.1"],"tokio-pg-mapper-derive":[C[635],C[3]],"bgptools":["BGP rib @w analysing","0.0.3"],"array-init":["Safe @h @0 initializing fixed-size arrays","2.0.0"],"gensym":["Creates unique identifiers @0 @a @u $e @a",C[0]],"background-jobs-core":["Core @g @0 ^5 an $n jobs processor",C[13]],"unqlite":["@3 `unqlite` @1 @h.","1.5.0"],"android_log":["Logger $i writes to Android &H subsystem","0.1.3"],"color_quant":["Color quantization @1 to reduce n colors to 256 colors.","1.1.0"],"metaflac":["A @1 @0 &3 @5 $O FLAC metadata.","0.2.5"],"oven":["@K cookie ^A @0 Iron",C[2]],"ioctl-gen":["@K @a @0 $E ioctl ^M.","0.1.1"],"fluence-faas":["Fluence FaaS","0.9.2"],"dmoj":["A @3 @8 @0 ^R helpful &P in online judging","0.1.5"],"lignin-schema":["An HTML schema @m through $i lignin Node trees can be created @7 ^Z compile-$z checking.","0.0.4"],"vox_box":["A ^4 to ^I speech audio in @3",C[1]],"tide-websockets":["tide websockets",C[2]],"ion-rs":["@v of Amazon Ion","0.6.0"],"memstream":["Memstream @i","0.0.1"],"rm":["randomness",C[9]],"dupchecker":["@p, $i helps to check @z @0 duplicates","0.4.1"],"lnpbp_services":[C[636],C[55]],"wgpu-subscriber":["WebGPU &g subscribers",C[0]],"minreq":[C[778],"2.4.2"],"mles":["Mles - a distributed publish/subscribe @w @U","1.1.6"],"darwin-rs":["Evolutionary ^3 @1 $A in @3.",C[2]],"hegemon":["A modular @O monitor",C[0]],"time-tweet":["正確な時間にツイート","0.1.9"],"ward":["@W a ward! @e $i returns @4 contents of an Option @5 otherwise returns early, @5 a guard! @e, $i does @4 same, but @7 a syntax more similar to Swift's guard syntax","2.1.0"],"swc_ecma_transforms_compat":[C[151],"0.47.2"],"timed_^B_@a":["^o to $z @Y execution (^o)",C[3]],"actix-net":["Actix net - @k @0 @4 compisible ^9 services @0 @3 (experimental)",C[1]],"codegenrs":["Moving @V-gen our of build.rs","1.0.0"],"allegro_util":["@3 Allegro 5 @h @E","0.0.41"],"etcommon-bigint":[C[637],"0.2.10"],"gperftools":["@H to google's gperftools",C[3]],"match_cfg":["A convenience @e to ergonomically define an item depending on a large numberof `#[cfg]` parameters. Structured $C match statement, @4 first matchingbranch is @4 item @l gets emitted.",C[0]],"portus":["A Congestion Control Plane","0.6.1"],"alloc-wg":["Attempt of $b several proposals of @4 allocators-wg","0.9.0"],"transit_model_$b":[C[966],C[3]],"tetsy-jsonrpc-core-client":[C[957],"15.1.0"],"ensicoin_serializer_@b":["&n @a @0 ensicoin_serializer","0.2.7"],"eth2_$6_^u":["Serialization @5 &9 @E useful @0 ^k representations of Ethereum 2.0 @g.",C[0]],"udp-socket":["Advanced udp socket.","0.1.5"],"proc-reader":["A std::io::Read @2 @0 stdout/stderr of other proccess","0.5.0"],"cranelift":["Umbrella @0 commonly-$2 cranelift $R","0.77.0"],"signin":["@3 @1 to validate @A-sign-in tokens","0.1.6"],"pq":["jq @0 protobuf","1.4.2"],"tp-timestamp":["Tetcore @F @g @5 inherents @0 timestamps.","2.1.2"],"yara":["@3 @6 @0 VirusTotal/yara",C[13]],"unicode_skeleton":["@Q @8 detects unicode $p @l look nearlyidentical once rendered, but do not compare as equal.It defines \"confusable\" @5 \"skeleton\" @n onUnicode Standard Annex #39.","0.1.1"],"reqwest-retry":["Retry &G @0 reqwest.","0.1.3"],"blake":["@v of @4 BLAKE ^z @Y @0 @3 via $L","2.0.1"],"google-webmasters3-cli":[C[703],"2.0.4+20190428"],"trace-context":["Extract @5 inject W3C TraceContext headers",C[0]],"hn":["@3 @h @0 @4 Hacker News (YCombinator) @x",C[2]],"liblapack-sys":["$8 @X @s @6 to @4 Linear Algebra PACKage.",C[3]],"noble-assets":["FABRIC asset ^A noble","2.0.1"],"juniper-from-schema-code-gen":["Internal @V ^1 @8 @0 juniper-@t-schema","0.5.2"],"strip-ansi-escapes":["Strip ANSI escape sequences @t byte streams.","0.1.1"],"tugger-common":["&O $7 $2 by various tugger $R","0.5.0"],"tokio-inotify":["Stream-@n $X to filesystem events.","0.4.1"],"$M_bindgen":["A @1 to automatically ^n C, Java, @5 C# @z @t @3 source @z.",C[84]],"google-replicapool1_beta2":[C[644],C[727]],"thorium":["Lokathor does stuff, ium",C[2]],"async-reactor-trait":["reactor-$y @2 @0 @J-io","1.0.0"],"dredd-hooks":["Dredd ^s @x $S $T @0 @3",C[1]],"mimalloc-rust-sys":["mimalloc_rust hand writted @r $W","1.7.2"],"shticker_book_unwritten":["Minimal CLI launcher @0 @4 Toontown Rewritten MMORPG","1.0.3"],"debug-ignore":["A newtype @h @l causes a field to be skipped while printing out Debug &Z.","1.0.1"],"couchbase":["$8 official Couchbase @3 ^N.",C[759]],"&a_$3":["&a $3","0.2.4"],"eytzinger":["@Q @8 implements @4 \"eytzinger\" (aka BFS) array layout.","1.1.1"],"tm4c123x-hal":["HAL @0 @4 TM4C123x family of $s","0.10.2"],"lib-cargo-apk":["Cargo &i @l allows you to $j Android packages","0.5.1"],"symphonia-core":["Project Symphonia &J &o, $3, @5 features.",C[2]],"pkcs5":["Pure @3 @2 of Public-Key Cryptography Standards (PKCS) #5:Password-Based Cryptography Specification Version 2.1 (RFC 8018)",C[9]],"jpegxl-sys":["@3 @h @0 JPEG XL reference @2","0.6.0"],"counter":["@K @X to count ^G iterables","0.5.2"],"fermium":["An opinionated @8 of SDL2 @6.","20014.4.2"],"rasen":["Build a SPIR-V ^F @t a @w flow graph",C[28]],"querystring":["@K querystring @1 @0 @f","1.1.0"],"ecc":["An elliptic curve arithmetic @5 cryptography @1.","0.0.5"],"min_max_@a":["^o @0 nicer min()/max()","0.1.1"],"ess":["An s-expression @i targeted at @L @2.","0.4.2"],"lalrpop-util":["Runtime @1 @0 parsers ^8 by LALRPOP","0.19.6"],"rpi_^b":["Interface @0 @4 Raspberry Pi's GPIO, I2C, PWM, SPI @5 UART peripherals. Forked @t RPPAL",C[0]],"query_&I":["Easy to $d @1 @0 $Z SQL-Statements","0.3.1"],"solana-archiver-lib":["Solana Archiver @p","1.1.13"],"tokio-openssl":["An @2 of SSL streams @0 Tokio backed by OpenSSL","0.6.3"],"cranelift-jit":["A JIT @1 backed by Cranelift","0.77.0"],"tetsy-util-mem":["Collection of tetsy $g related @E","0.9.1"],"piston-split_controller":["A Piston @1 @0 ^a split layout state @5 events",C[15]],"introsort":["Fast sorting ^i @7 #[no_std].Also has (optional) @j @0 ^Z @5 robust sorting of floating point numbers.Currently, introsort only builds on nightly","0.6.0"],"rtable":["&W Routing Table @p @7 Radix Tree",C[5]],"bv":["Bit-vectors @5 bit-slices",C[17]],"brotli-sys":["Raw @6 to libbrotli",C[9]],"rose_^0":["An indexable ^0 @w $V @7 a variable @5 unbounded &a of branches per node. It is Implemented on top of petgraph's Graph @w $V @5 attempts to follow similar conventions where suitable.",C[1]],"mach_o":["A nicer @x @0 ^p @7 OSX's mach-o @O @1 (built on top of mach_o_sys)",C[4]],"coinaddress":["@p @0 validating @4 base58 ^z checksums, including specificallythe bitcoin @5 litecoin addresses.","1.1.3"],"codicon":["Traits @0 $5 @5 ^P","3.0.0"],"google-genomics1_beta2":["A @q @1 to @o @7 genomics (@9 v1beta2)","0.1.8+20150326"],"urlqstring":["A URL query $c @0 @f","0.3.5"],"objecthash":["A content hashing $1 $i works across &l encodings (^k, Protobufs, etc)","0.4.1"],"rsign2":["A @D-$D ^4 to sign @z @5 verify signatures.","0.6.1"],"simple-server":["a @d webserver.",C[2]],"stability":["@3 @x stability attributes @0 @4 rest of us.",C[0]],"floating-duration":["Converts durations to fractional ^M andallows automatic formatting of durations.",C[4]],"elastic_date_@a":[C[1026],"0.7.2"],"rocket-simpleauth":["@K username/password authentication @O @0 Rocket",C[2]],"rustlex_^H":["Syntax ^h @0 RustLex",C[2]],"markup-proc-macro":[C[638],"0.12.5"],"rustc-ap-rustc_ast_passes":["^W published $4 of @4 @X `rustc_ast_passes` in @4 @f-lang/@f repository @t commit 9a27044f42ace9eb652781b53f598e25d4e7e918 $8 publishing script @0 this @8 lives at: &Y://github.com/alexcrichton/&K-auto-publish",C[215]],"tp-keystore":["Tetcore Keystore Primitives.","2.1.2"],"simi-cli":["A @D $D ^4 to help $j, ^7, serve a Simi app","0.1.8"],"heartbeats-simple-sys":["$L @6 to heartbeats-@d","0.4.3"],"retrosheet":["A @3 @m @0 &3 Retrosheet @w.","0.2.4"],"casper-execution-engine":["CasperLabs execution $a $R.","1.4.1"],"generic-channel":["&W `Sender` @5 `Receiver` abstract $t several channel @T: std, crossbeam-channel, @Z",C[3]],"rocksdb":[C[155],C[26]],"cluFlock":["Installation @5 subsequent $M removal of `flock` locks @0 @w streams.","1.2.5"],"tempus":["$z","0.2.4"],"kafka":["@3 @c @0 Apache Kafka",C[7]],"thingvellir":["a concurrent, &J-nothing $F @l manages an assembly of things","0.0.4-alpha0"],"meio-connect":["Set of connectors @0 MEIO @k","0.96.0"],"committed":["Nitpicking commit history since beabf39","0.2.5"],"synth":["A polyphonic Synth $l whose &l oscillators ^n sound via amplitude @5 frequency envelopes.",C[16]],"node_rub":[C[639],"0.0.3"],"scinotation":["A @1 @0 representing ^M in scientific notation","0.0.2"],"hex":["Encoding @5 ^P @w ^d/@t hexadecimal representation.","0.4.3"],"scroll":["A suite of powerful, extensible, ^G, endian-aware Read/Write $3 @0 byte buffers","0.10.2"],"reproto-path-parser":["reproto path @i","0.3.36"],"backtrace":["A @1 to acquire a stack trace (backtrace) at @I in a @3 ^U.","0.3.62"],"cddl":["&B @0 @4 Concise @w definition @L (CDDL)",C[640]],"include-repo":["@Q @8 implements @4 'include_repo!' @e @0 &x AGPL compliance! Include a tarball as a const in $r @V!","1.0.0"],"metrics-exporter-log":["A &q-@F ^i exporter @0 forwarding &q to logs.",C[2]],"prongs":["Input ^a schema $A in @f. Backend &f, @s serializability, assignment @5 unified @m @0 ^p @7 inputs. Keyboard, mouse @5 controllers supported.","1.0.2"],"dynparser":["Dynamic @i. You can define rules at run $z. It's possible to $d peg @G","0.4.2"],"easing":["Leveraging Rust's powerful iterators @0 easing.","0.0.5"],"workspace":["a @D-$D ^g &F","0.4.2"],"solana-storage-bigtable":["Solana Storage BigTable","1.8.1"],"unstructured":["&W @g @0 unstructured @w","0.5.1"],"$P_iot_jobs_@w":["^r ^N @0 @3 - ^r IoT Jobs Data Plane @ 2017-09-29",C[27]],"ripfind":["A $I @5 lean replacement @0 @4 find @D.",C[9]],"nsh":["A @D-$D shell $A in @3 @l focuses on productivity @5 swiftness.","0.4.2"],"amethyst_animation":["Animation @j @0 Amethyst",C[99]],"url_path":["canonicalize, normalize urls","0.1.3"],"os_units":["A @1 $i @s unit @g @0 $O OS.","0.4.2"],"egui_demo_lib":["Example @1 @0 egui",C[23]],"pairing":[C[641],"0.21.0"],"imagefmt":["Image decoders: PNG, TGA, BMP, JPEG. Encoders: PNG, TGA, BMP.","4.0.0"],"wasmer-near":["High-$J $x @I","2.0.1"],"draw_queue":["Basic draw queue @7 sorting by minimal updates","0.1.1"],"feroxbuster":["A $I, @d, recursive content discovery ^4.","2.4.0"],"metal-sys":["Low-@C @6 @0 Apple's Metal Graphics @x","0.0.0"],"lipsi":["Pitch Class Sets @0 @3","2.0.1"],"nom-unicode":["&h &p @0 Nom.",C[1]],"multiversion-macros":["@v @8 @0 multiversion","0.6.1"],"asciimath-rs":["AsciiMath @i","0.6.1"],"devise_@F":[C[404],"0.3.1"],"sc-state-db":["State ^Q maintenance. Handles canonicalization @5 pruning in @4 ^Q.","0.9.0"],"stacktrace":["@Q ^g is deprecated. Consider looking at [^q-chain](&Y://crates.io/$R/^q-chain).",C[5]],"erupt":["Vulkan @x @6","0.20.0+190"],"pinecone":[C[642],"0.2.3"],"scrutch":["Tiny $w to search @f $R directly @t @4 @D $D","0.0.6"],"svgbob":[C[643],"0.6.2"],"twitter-stream":["A @1 @0 listening on Twitter Streaming @x.",C[15]],"modesetting":["High-@C $X to modesetting $7.",C[8]],"wincolor":["&T. Use winapi-util instead.","1.0.3"],"google-replicapool1_beta2-cli":[C[644],C[948]],"cdchunking":["Content-defined chunking","1.0.1"],"netmap_@r":[C[757],"0.1.4"],"bare-metal":["Abstractions $u to bare metal systems","1.0.0"],"mustache":["@3 @2 of Mustache","0.9.0"],"pallet-treasury":["FRAME &v to manage treasury","3.0.0"],"cargo-flash":["A $w to flash ARM cores @7 ELFs directly @t within @S.",C[16]],"quad-snd":["High @C @5 cross @N audio @1","0.2.3"],"rate-limit-queue":["A rate limited queue","0.1.1"],"rs-graph-derive":["Automatic @2 of graph @g","0.20.1"],"hyperdex":["@3 $W @0 HyperDex, @4 next-^1 distributed key-&5 store","1.1.0"],"imperative":["Check @0 imperative mood in ^D","1.0.2"],"dssim":["Tool @l measures structural similarity $t images @u a multi-scale variant of @4 SSIM $1.","3.1.0"],"pest_consume":["A @k @0 &u @4 &Z of a pest-^8 @i","1.1.1"],"twre_ecs":["Soon to be highly flexible Entity-Component-System @k.","0.0.2"],"treediff":["Find @4 difference $t arbitrary @w $k","4.0.2"],"cf_dist_^u":["A @1 $i has risk @5 ^m @E.",C[13]],"email":["@v of RFC 5322 email &y","0.0.21"],"rpgffi":["Toolkit @0 FDW, Logical Decoders @5 &p @0 postgresql","0.3.3"],"nuid":["A highly performant unique identifier @B.",C[1]],"iter-progress":["Calculate progress of $r iterators","0.8.1-rc1"],"secret_handshake":["@v of @4 secret-handshake @9.","5.0.0"],"token_store":["A token-@n store @0 arbitrary ^V",C[4]],"textwrap-macros":[C[881],"0.2.5"],"property":["Generate several $u &P @0 &o automatically.",C[448]],"argo":["MatchDB is a high-$J datastore built $G pattern-matching.","0.0.1"],"trybuild":["Test harness @0 ui tests of ^2 diagnostics","1.0.52"],"amethyst_controls":["Amethyst controls",C[99]],"codeviz_@f":[C[75],C[8]],"itsybitsy_m0":["Board Support @8 @0 @4 Adafruit ItsyBitsy M0",C[16]],"wapc-guest":["Guest ^N @0 $K waPC-compliant $x Modules",C[2]],"shannon-entropy":["A @d @1 to calculate @4 Shannon entropy of a $c","1.0.0"],"dpdk-virtual-devices":["A @h $G DPDK's virtual &N @k","0.1.5"],"syn_str":["@Q @1 is what syn is to proc_macro::TokenStream @0 proc_macro::TokenStream::to_string,quote! being @G! @7 String::parse::.","0.1.58"],"actix-test":["Integration $S &1 @0 Actix Web @P","0.1.0-beta.5"],"mpq":["A @1 @0 &3 MPQ archives","0.7.0"],"wrapped_enum":["Useful @e to wrap existing @g in an enum ($u $d @0 quick ^q ^a)","0.1.3"],"fakedata_@B":["Generate fake @w @7 various generators.","0.2.4"],"sexp":["A &7, @d, self-contained, s-expression @i @5 pretty-printer.","1.1.4"],"reqwest_resume":["Wrapper @l uses @4 `Range` ^s header to resume get requests.It's a thin @h $G `reqwest`. It's a work in progress – wrapping $7 is copied across on an as-needed basis. Feel free to open a PR/issue if you need something.",C[9]],"casbin":["An authorization @1 @l supports $X control models $C ACL, RBAC, ABAC.","2.0.9"],"edcert-restrevoke":["A @8 @0 a REST-@n revoke infrastructure @0 Edcert Certificates.","1.0.6"],"lucet-runtime":["Pure @3 @I @0 Lucet $x toolchain","0.6.1"],"hexpm":["A @3 @c @0 @4 Hex @X &F","1.3.0"],"mvnc":["Wrapper $G @4 Movidius Neural Computing stick C @x",C[1]],"mundane":["Cryptography $i is &x to $d @5 hard to misuse","0.4.4"],"$R_io_^S":["@x @c @0 crates.io","0.7.3"],"tetsy-fixed-hash":["^o to define custom tetsy-fixed-size ^z @g","0.7.1"],"tui-tree-widget":["Tree Widget @0 tui-rs","0.7.0"],"ripb":["A @f @8 ^R an @2 of a lock-free $l-$M in-^I bus.","0.3.1"],"mprober":["@Q ^U aims to collect &j @O $f including hostname, kernel $4, uptime, RTC $z, load average, CPU, $g, ^9 interfaces, block &N @5 processes. It can be $2 not only as a normal CLI ^4, but also a &e $U @7 a front-end webpage @5 useful ^s APIs.","0.11.0-beta.9"],"actix-raft":["An @2 of @4 Raft distributed &A @9 @u @4 Actix actor @k.","0.4.4"],"fend":[C[645],"0.1.26"],"sqlformat":["Formats whitespace in a SQL $c to make it easier to read","0.1.8"],"gfx":["A high-$J, bindless ^T @x","0.18.2"],"rust-htslib":["@Q @1 @s HTSlib @6 @5 a high @C @3 @x @0 &3 @5 $O BAM @z.","0.38.2"],"fluidlite-sys":["Unsafe @6 to fluidlite @1",C[5]],"machine-uid":["Get os &8 machine id ^Y root permission.",C[3]],"protoc-rust":["protoc --rust_out=... available as @x. protoc needs to be in $PATH, protoc-gen-run does not.",C[348]],"ratsio":["Ratsio is a @3 @c @1 @0 NATS messaging @O @5 NATS Event Streaming.",C[2]],"dgraph-rs":["@W a @c @0 @4 DGraph graph ^Q","0.2.8"],"orbtk-shell":["Window shell @8 $2 by OrbTk.",C[204]],"gstreamer-editing-services-sys":["$L @6 to libges-1.0",C[26]],"assert_approx_eq":["assert approximately equal","1.1.0"],"schemafy":[C[690],"0.6.0"],"gaol":["OS-@C $U sandboxing @1",C[5]],"rand_derive2":["Generate customizable &L @g @7 @4 rand @8",C[60]],"xshell":["^e @0 quick shell scripting in @3","0.1.17"],"sc-consensus-babe":["BABE &A $1 @0 substrate","0.9.0"],"tempdb_cockroach":["Temporary databases @0 unit $S","1.0.9"],"tendermint":["Tendermint is a high-$J blockchain &A $a @l powers Byzantine fault tolerant @P $A in any $m @L. @Q @8 @s @F @g @0 representing $f about Tendermint blockchain networks, including chain $f @g, secret connections, @5 remote procedure calls (^k-RPC).",C[354]],"fend-core":[C[645],"0.1.26"],"ncursesw":["A fat @h $G @4 NCurses TUI @1","0.5.1"],"cubeb-core":["&O @g @5 $h @0 cubeb @f @5 C @6. Not intended @0 direct $d.","0.9.0"],"lz4-compression":["Pure @3 @2 of LZ4 ^C @5 decompression as a @1","0.7.0"],"librocksdbsys":["Fork of librocksdb_sys @h @0 Facebook's RocksDB embeddable ^Q.",C[4]],"google-dfareporting2d7-cli":[C[671],C[672]],"cursive_table_view":["A basic table view @2 @0 cursive.",C[84]],"pocket_prover":["A $I, brute force, automatic theorem prover @0 first order logic",C[28]],"secc":["Implements a Skip-Enabled Concurrent Channel (SECC) @0 @3","0.0.10"],"percent-encoding":["Percent $5 @5 ^P","2.1.0"],"gio":["@3 @6 @0 @4 Gio @1","0.14.8"],"glibc_$4":["Discover GNU libc $4 at $j $z",C[4]],"flif":["FLIF decoder $A in ^X @3","0.4.1"],"tempus_fugit":["A tiny @1 to measure @4 execution $z of @3 expressions, @7 nanosecond precision.",C[16]],"error-rules":["Archived! Error ^a ^Y pain","1.0.1"],"libflac-sys":["Raw $L @6 to @4 libFLAC @1",C[8]],"sp-rpc":["Substrate RPC $9 @5 @E.","3.0.0"],"derive-error-chain":["A ^o 1.1 @2 of ^q-chain","0.11.2"],"id3":["A @1 @0 &3 @5 $O ID3 metadata","0.6.5"],"thiserror-impl":["@v detail of @4 `thiserror` @8","1.0.30"],"holochain_&H":["A logger @0 Holochain","0.0.7"],"robots_txt":["A ^O @i @5 @B @0 robots.txt.","0.7.0"],"paho-mqtt":["$8 Official Eclipse Paho MQTT @3 Client Library.This is a @h $G @4 Paho C @1.","0.9.1"],"yolk":["Numerical computing @0 YOLOL","0.6.0"],"rbx_xml":["@v of Roblox's XML $0 formats, rbxlx @5 rbxmx","0.12.3"],"solana-fixed-buf":["A fixed-size byte array @l supports bincode $6","0.22.9"],"borsh":[C[226],"0.9.1"],"spl-token":["Solana Program @p Token","3.2.0"],"google-proximitybeacon1_beta1-cli":[C[646],"2.0.4+20200127"],"&V_schema_^7_suite":[C[552],C[1]],"splinter":["Splinter is a privacy-focused @N @0 distributed @P @l @s a blockchain-&X networking ^K @0 communication @5 transactions $t organizations.","0.5.22"],"unison-fsmonitor":["unison-fsmonitor @2","0.2.7"],"multipart-nickel":["&T: Nickel @j is returning to `multipart` itself in 0.14.Support @0 `multipart/form-@w` bodies in Nickel via @4 `multipart` @8.","0.3.1"],"miniflux_^S":["@f @2 of @4 Miniflux REST @x",C[9]],"cargo-play":["Run $r @3 @V ^Y setting up Cargo","0.5.0"],"vape":["full width aesthetics",C[2]],"yapb":["Lightweight, ^X, @5 unopinionated &h progress visualization",C[9]],"wild":["Glob (wildcard) expanded @D-$D arguments on ^6","2.0.4"],"google-dataproc1":[C[647],C[210]],"blkid":["Safe blkid-@r @h",C[5]],"tac":["Print lines @t $0 in reverse order","0.2.3"],"gloo-file":[C[648],C[3]],"fixed_len_str":["A $e @e @0 create a smart pointer to str backed by a fixed size array,@7 @4 size given by @4 tokens.","0.3.3"],"webrender_^S":["Public @x @0 WebRender","0.61.0"],"panic-message":["Get a panic message @t a panic payload",C[1]],"crossbeam":["Tools @0 concurrent $m","0.8.1"],"paperclip":["OpenAPI tooling @1 @0 $l-$M compile-$z checked ^s APIs","0.6.1"],"libnice":["Safe, high-@C @3 @6 to libnice.",C[1]],"judy":["@3 @6 @0 Judy &z://judy.sourceforge.net","0.0.3"],"tide-tracing":["A @d &G @0 [`tide`](&Y://github.com/&z-rs/tide) @u @4 [`&g`](&Y://github.com/$v-rs/&g) @8 @0 &H.","0.0.11"],"^f_libra_logger":["Libra logger",C[10]],"substrate-bip39":["Converting BIP39 entropy to valid Substrate (sr25519) SecretKeys","0.4.4"],"dropshot":["expose REST APIs @t a @3 ^U","0.5.1"],"minify-html":["Extremely $I @5 smart HTML + JS + CSS minifier","0.6.10"],"elastic-array":[C[649],C[16]],"ipld_amt":["Sharded IPLD Array @2.","1.0.0"],"en":["$8 easiest numeric $3!","0.1.5"],"osm_boundaries_^u":["@E to help &3 OpenStreetMap boundaries in @f.","0.9.0"],"type-equals":["Type equality $y @0 @f-lang/@f#20041",C[0]],"os_info":["Detect @4 operating @O $l @5 $4.","3.0.7"],"fail":["Fail points @0 @f.",C[2]],"sublime_fuzzy":["Fuzzy matching $1 @n on Sublime Text's $c search.","0.7.0"],"nu_$Y_textview":["Text viewer $Y @0 Nushell","0.39.0"],"hidapi":["@3-y @h $G hidapi","1.2.6"],"$P_mediastore":["^r ^N @0 @3 - ^r Elemental MediaStore @ 2017-09-01",C[27]],"screeps-api":["Fully typed @5 tested @h &6 @4 Screeps Game's ^s @x","0.6.0"],"unic-ucd-name":["UNIC — &h Character Database — Name","0.9.0"],"mongors":[C[1047],C[55]],"range-encoding":["An @2 of range $5 (entropy coding), extracted @t Opus.",C[5]],"hangeul":["Korean alphabet manipulation @1",C[3]],"rxrs":["Reactive Extensions @0 @3","0.2.0-beta3"],"$c_cache_^H":["A ^H @1 @0 $c-cache, developed as part of @4 Servo ^g.","0.5.1"],"lightbeam":["An optimising one-pass streaming ^2 @0 $x",C[53]],"systemd-rs":["A high @C systemd @h","0.1.6"],"repackage":["An infernal ^4 to repackage a .@8 $0 under another name","0.1.1"],"wee_alloc":["wee_alloc: $8 Wasm-Enabled, Elfin Allocator","0.4.5"],"endian_$y_@b":["A custom @b @0 @4 Endian $y","0.6.0"],"ropey":["A $I @5 robust ^D rope @0 @3","1.3.1"],"ethsign-crypto":["Pure @3 drop-in replacement @0 @4 `parity-&Q` @8",C[5]],"reproto-semck":["Rethinking ^c GeneratorsChecks @l changes to a manifest does not violate semantic versioning.","0.3.36"],"mini-rxtx":["@M @5 communications @0 ^b",C[3]],"link-ippi":["link ippi @1 (part of ipp-@r Intel IPP @6)",C[4]],"google-tasks1-cli":[C[650],C[130]],"cl-sys":["OpenCL $L @6.","0.4.2"],"os_pipe":["a cross-@N @1 @0 opening OS pipes","0.9.2"],"life":["Conway's Game of Life on 2-D toroidal grid in @f.","0.1.5"],"ahash":["A non-^w ^z @Y @u AES-NI @0 high $J","0.7.6"],"simd-json":["High $J ^k @i @n on a port of simdjson","0.4.8"],"gherkin_@f":["A ^X @3 @2 of @4 Gherkin (`.feature` $0) @L @0 @4 Cucumber $S @k",C[12]],"coinnect":["A @3 @1 to connect to various &Q-currencies exchanges.","0.5.12"],"cargo-pants":["@S-pants is a @S &i $U @l @s a bill of materials @5 a list of $i &c have a vulnerability, powered by Sonatype OSSIndex","0.4.2"],"pallet-vesting":["FRAME &v @0 manage vesting","3.0.0"],"cqc":["An @2 of @4 CQC @m.","0.6.1"],"esp8266":["A minimal peripheral $X @8 @4 ESP8266",C[2]],"constant_$z_eq":["Compares two equal-sized byte $p in constant $z.","0.1.5"],"solana-sdk-macro-frozen-abi":["Solana ^N Macro frozen abi","1.4.1"],"stderr":["A @1 @l @u @e to &0 to io::stderr() $C print!()/println!().",C[7]],"datatest":["Data-driven tests in @3","0.6.3"],"bsdiff":["@3 port of @4 bsdiff $Q diffing $1.","0.1.6"],"sqs-service-helper":["A @1 to facilitate SQS @n consumer services","0.1.5"],"interledger":["Interledger @c @1","0.6.0"],"az":["Casts @5 checked casts","1.1.2"],"cbitset":["A bit set, being able to hold a fixed amount of booleans in an array of integers",C[3]],"slip10":["SLIP-0010 : Universal private key derivation @t master private key","0.4.3"],"err-derive":[C[651],C[1]],"pager":["Helps pipe $r &Z through an external pager",C[72]],"ipfs-api":["@v of an IPFS ^s @x @c",C[15]],"podcast":["A @D $D podcast &F","0.17.6"],"fce-utils":["Fluence FCE ^u @8",C[3]],"rls":["@3 &R Server - @s $f about @3 programs to IDEs @5 other &1","0.122.2"],"rust-kpdb":["@p @0 &3/$O KeePass 2 @5 KeePassX databases.","0.4.2"],"human-size":["Sizes @0 humans.","0.4.1"],"micro-timer-macros":["^o @0 @4 micro-timer @8",C[2]],"cargo-bump":["Increments @4 $4 &a of @4 current ^g.","1.1.0"],"rust-3d":["2D/3D @1 $A in @f","0.34.0"],"polars-arrow":["Arrow interfaces @0 Polars DataFrame @1",C[72]],"lua-rs":["Lua port $A in @3.","0.0.11"],"brotli-no-stdlib":["A brotli decompressor @l does not $d @4 @f stdlib. @Q makes it suitable @0 ^b &N @5 kernels. It is designed @7 a pluggable ^l so @l @4 ^E lib's ^l may be employed. For users wishing to $d @4 stdlib, @4 brotli @X, $i calls ^d @5 abstracts this @X, is recommended.","1.0.4"],"dijo":["Scriptable, curses-@n, digital habit tracker","0.2.7"],"$o_size":["Gets @4 size of $r &j or ^6 $o","0.1.17"],"&V_str":["Write &V literals ^Y ugly $p.","0.5.2"],"conduit-mime-types":["MIME $l $h @0 conduit",C[7]],"raylib":["Safe @3 @6 @0 Raylib.","3.5.0"],"nearly_eq":["Nearly(Approximately) equal $3 @5 assertion","0.2.4"],"winx":["^6 @x ^t @1","0.29.2"],"signatory":["Multi-provider elliptic curve digital signature @1 @7 ECDSA @5 Ed25519 @j","0.23.2"],"an":["A @1 @l determines $i of ‘a’ or ‘an’ to precede a given word @7.","0.0.2"],"rustc-workspace-hack":["Hack @0 @4 compiler's own $j @O","1.0.0"],"core-graphics":["@H to Core Graphics @0 macOS","0.22.2"],"postgres-protocol":["Low @C Postgres @9 APIs","0.6.2"],"errln":["Utility @a to &0 to stderr",C[0]],"exitcode":["Preferred @O exit codes as defined by sysexits.h","1.1.2"],"sqlib":["A &7 TS3 Server Query @1 @5 channellist @U","0.2.6"],"tetsy-hash256-std-hasher":["tetsy ^E @1 hasher @0 256-bit prehashed keys.",C[99]],"algebloat":["@3 linear algebra @1","0.0.13"],"tree-sitter-javascript":["JavaScript grammar @0 @4 ^0-sitter @R @1",C[42]],"html2text":["Render HTML as plain ^D.",C[5]],"youtube_dl":["Runs youtube-dl @5 parses its ^k &Z.","0.6.3"],"out123-sys":["$8 @X @s @6 to out123.","0.5.0"],"yaksay":["Cowsay enhanced","1.5.8"],"ids_container":["Container $i automatically assigns keys when you insert in it","0.1.1"],"cargo-test-junit":["Converts @S ^7 &Z ^d a junit report","0.6.7"],"async-test-derive":[C[652],"1.0.0"],"firestore-db-and-auth":["@Q @8 allows &x $X to $r Google Firestore DB via &t account or OAuth impersonated Google Firebase Auth credentials.","0.6.1"],"$5_index_tests":["Helper @a $2 to ^7 index tables @0 character encodings","0.1.4"],"gear":["Collision avoidance path planning @0 robotics","0.7.0"],"hodl-ticker":["@3 cryptocurrency prices on CLI","2.0.0"],"pns":["A @d, $M @5 ^Z @1 @h @0 simulating a minimal form of petri nets",C[7]],"redlock":["@v of @4 distributed locking mechanism built on top of Redis","1.2.0"],"nodrop":["A @h $l to inhibit drop (destructor).***Deprecated: Use ManuallyDrop or MaybeUninit instead!***","0.1.14"],"$6_cbor":[C[653],"0.11.2"],"google-runtimeconfig1":["A @q @1 to @o @7 Cloud RuntimeConfig (@9 v1)",C[65]],"ckb-types":["@W @4 essential @g @0 CKB.",C[302]],"topological-sort":["Performs topological sorting.",C[0]],"rpm-rs":["A ^X @f @1 @0 $K @5 @R RPM's","0.8.1"],"openhmd-rs-sys":["Unsafe OpenHMD @6","0.1.6"],"tide-rustls":["tide tls listener @n on @J-rustls @5 rustls",C[1]],"oxygengine-core":["Core ^F @0 Oxygen Engine",C[42]],"cynic-proc-macros":["$q @e @8 @0 cynic - a GraphQL query &I & @w mapper @0 @3","0.15.1"],"async-tftp":["Executor &f @J TFTP @2","0.3.5"],"coord_transforms":["A @3 @8 $d @0 performing coordinate transformations.","1.3.1"],"wbs-backup":[C[664],"0.1.8"],"ring":["Safe, $I, &7 &Q @u @3.","0.17.0-alpha.10"],"elapsed":["Measure execution $z of a block of @V",C[4]],"pwasm-abi":[C[188],C[8]],"self_update":["Self updates @0 standalone executables","0.27.0"],"trees":["General purpose ^0 @w $k","0.4.2"],"polytype":["A Hindley-Milner polymorphic typing @O.","6.2.0"],"soa":["Struct-of-Array vector @g","0.9.2"],"pipewire-sys":["@3 $L @6 @0 PipeWire","0.4.1"],"vulkano-shaders":["Shaders @f @V ^1 @e","0.26.0"],"fluence-fork-libp2p-kad":[C[654],"0.29.2"],"tf_rosrust":["@Q is a @f port of @4 [ROS tf @1](&z://wiki.ros.org/tf). It is intended @0 being $2 in robots to help keep track of &l coordinate frames @5 is part of a larger suite of @f &4 @l provide @j @0 various robotics related $7.","0.0.4"],"ecdsa_fun":["Bitcoin ^i ECDSA signatures @n on secp256kfun","0.6.2"],"twitter-stream-message":["Types @0 Twitter Streaming API's &y.",C[1]],"notmecab":["@p @0 tokenizing ^D @7 mecab dictionaries. Not a mecab @h.","0.5.1"],"plaster":["A &s-bindgen @k @0 making @c-side single-page apps","0.2.5"],"envmnt":["Environment variables $w @y.","0.9.1"],"bat":["A cat(1) clone @7 wings.","0.18.3"],"core-text":["@H to @4 Core Text @k.","19.2.0"],"parquet-format-async-temp":["Temporary @8 containing thrift @1 + parquet $h compiled to @j read+&0 @J.",C[3]],"barrage":["An @J broadcast channel",C[5]],"quad-url":["Plugin @0 @e-, mini-quad (quads) to do anything @7 url.","0.1.1"],"priority-queue":["A Priority Queue implemented as a heap @7 a @Y to efficiently change @4 priority of an item.","1.2.0"],"memalloc":["Memory allocation in stable @f.",C[0]],"i18n-embed-fl":["Macro to perform compile $z checks when @u @4 i18n-embed @8 @5 @4 fluent localization @O","0.6.0"],"owned_chars":["Owned iterators @7 @4 same &Z as Chars @5 CharIndices",C[9]],"dssim-core":["@p @l measures structural similarity $t images @u a multi-scale variant of @4 SSIM $1.","3.1.0"],"^f_libra_crypto-derive":["Libra custom derives @0 `&Q`",C[10]],"expression":["Implements expression terms @5 conditions","0.3.4"],"unix_path":["Unix-^i paths regardless of @N.","1.0.1"],"gstreamer-check-sys":["$L @6 to libgstcheck-1.0",C[26]],"data-encoding-bin":["Swiss Army knife @0 @w-$5","0.3.1"],"susanoo":["A micro Web @k, @n on @Z, $v @5 hyper","0.0.6"],"lrlex":["@K lexer @B","0.10.2"],"rustyline":[C[655],"9.0.0"],"csv-async":["CSV @R @0 @J.","1.2.1"],"algorithmia":["Client @0 calling ^3 @5 managing @w hosted @u Algorithmia",C[656]],"astrology":["Astrology lib connected to @4 C lib Swiss ephemeris","1.0.4"],"opusfile-sys":["@H to libopusfile",C[3]],"mindjuice":["A @d @5 &x-to-$d brainfuck interpreter","0.1.1"],"lenient_$4":["Version struct @0 Lenient @i @0 Semantic Version ^M.","0.4.2"],"aktrs-macros":["^o @0 $d @7 aktrs",C[657]],"trex":["$8 @3 Entity Component System",C[3]],"rsgen-avro":["Command $D @5 @1 @0 $E @3 @g @t Avro schemas","0.9.8"],"cargo-equip":["A Cargo &i to bundle $r @V ^d one `.rs` $0 @0 competitive $m.",C[43]],"noble-timestamp":["FABRIC Timestamp Module","2.0.0"],"k8-client":[C[658],"5.1.5"],"beerxml":["beerxml/&V/yaml/toml @i @B","0.1.8"],"conniecs":["A @d ECS @O @n off of @4 `ecs` @8, but @7 some minor APIadjustments @5 @b @a @0 ^5 most of @4 boilerplate.Make sure to include @4 `conniecs-@b` @8 as well.",C[3]],"tc-client-api":["Tetcore @c interfaces.","2.0.0"],"tectonic_xdv":["A decoder @0 @4 XDV @5 SPX $0 formats $2 by XeTeX @5 Tectonic.","0.1.12"],"openssl-probe":["Tool @0 helping to find SSL certificate locations on @4 @O @0 OpenSSL","0.1.4"],"rdkafka-sys":[C[720],"4.1.0+1.7.0"],"bip":["bip (`Box` in place) @s a fully ^G in-place `map` forthe `Box` $l, taking care to be panic-$M @5 not leak $g.",C[0]],"embed_js":["Minimalist ^O inline JavaScript @0 @3 @P targeting $x via @4 `wasm32-unknown-unknown` target.See also embed_js_build, @4 accompanying @8 @0 $d by $j scripts.","0.1.4"],"rfc1700":["Constants defined in RFC 1700","1.0.0"],"enum-tryfrom-derive":["A @8 to @b TryFrom @0 enums",C[5]],"jsonrpsee-utils":["^e @0 jsonrpsee","0.4.1"],"tokio-sync":["Synchronization @E.",C[30]],"gopher-core":["A @1 ^5 @4 Internet Gopher @9","0.5.0"],"enso-optics":["An @2 of functional optics.",C[3]],"fetch":["Fetch &e pages easily (supports ^C @5 non UTF-8 encodings)","0.7.2"],"owned-singleton-macros":["$q @a re-exported in @4 owned-singleton @8",C[0]],"smol-potat-macro":[C[125],"0.6.0"],"dtrace-parser":["Parse DTrace provider $h ^d @3",C[38]],"ncollide3d":["2 @5 3-dimensional collision detection @1 in @3. Will be superseded by @4 parry3d @8.","0.32.0"],"gluon":["A &k, $l inferred $m @L @0 $U embedding","0.18.1"],"openstack":["OpenStack ^N @0 @3",C[2]],"cbor-codec":["CBOR Codec @2","0.7.1"],"array_^4":["Helper &P @0 &u &C","1.0.3"],"digest":["Traits @0 ^w ^z @y","0.10.0-pre.3"],"ndarray-parallel":["Parallelization @0 ndarray @u rayon.(Deprecated - $d ndarray @7 rayon directly.)","0.9.1"],"centerdevice":["@3 @x Client @0 CenterDevice","0.5.1"],"sleep-parser":["Parse Dat @9 SLEEP @z",C[7]],"devd-rs":["An @m to devd, @4 device hotplug daemon on FreeBSD @5 DragonFlyBSD","0.3.3"],"sc-keystore":[C[659],"3.0.0"],"opus-sys":[C[660],C[5]],"sfv":["Structured Field Values @0 ^s parser.Implementation of RFC 8941.","0.9.1"],"genmesh":["A @X @0 $E 3D meshes","0.6.2"],"sgx_tse":[C[21],"1.1.1"],"geom":["@K 2D geometry @1.","0.2.3"],"matrix-sdk-common":["Collection of $u @g @5 imports $2 in @4 matrix-sdk","0.4.1"],"chariot_palette":["A @1 @0 &3/$O JASC palettes","0.1.5"],"td_rthreadpool":["&d @h @0 @3",C[4]],"modular-bitfield-msb-impl":["Bitfields @0 &o @l allow @0 modular $d of enums. MSB-first $4.","0.11.2"],"white_rabbit":["Task scheduler, allowing timed execution, repeated or not.","0.1.1"],"proxy-enum":["Emulate dynamic dispatch @5 sealed classes @u a proxy enum, $i defers all method calls to its variants.","0.3.1"],"growable-bloom-filter":["Scalable Bloom Filters @7 $6 @j","2.0.1"],"noble-contracts-rpc":[C[661],C[7]],"interledger-packet":["Interledger packet @M/&9",C[2]],"polymap":["A map containing varying @g of &5",C[1]],"barnacl":[C[244],"0.1.1"],"select-rustc":[C[662],C[4]],"hf2":["Microsoft HID Flashing @p @0 UF2 Bootloaders",C[9]],"cgmath":["A linear algebra @5 mathematics @1 @0 computer ^T.",C[43]],"rocket_&k_fs":["A @d &k $0 @U @0 @4 rocket @k.","0.5.1"],"rust-tuyapi":["@Q @X is a @f port of @4 exellent NodeJS @2 by codetheweb @0 @4 Tuya @x",C[7]],"hx":["Futuristic take on hexdump, made in @3.","0.4.2"],"users":["@p @0 accessing Unix users @5 groups",C[16]],"fuzzy-matcher":["Fuzzy Matching @p","0.3.7"],"libmacchina":["A @1 @l can fetch all sorts of @O $f, super duper $I!","3.2.2"],"atomic_swapping":["An arbitrary $l atomic ^x @7 swap $B",C[0]],"shardio":["Out-of-$g sorting @5 streaming of large datasets","0.8.1"],"marpa":["Safe @6 to @4 libmarpa @R $a",C[1]],"rdp":["An $L @h @0 @4 Ramer–Douglas–Peucker @5 Visvalingam-Whyatt ^3","0.8.3"],"osmgpsmap-sys":["ffi @6 @0 osmgpsmap","0.2.16"],"nsi":["Nodal Scene Interface @0 (offline) 3D renderers – ɴsɪ.","0.6.0"],"jellyschema":[C[1014],"0.11.10"],"rubbl_casatables_impl":["A bundle of C++ @V @l can read @4 CASA table @G @0 Rubbl.","0.2.31105"],"ring_buffer":["RingBuffer is a queue @7 added &L $X.","2.0.2"],"js_option":["An Option-$C $l @7 separate null @5 undefined variants",C[0]],"tfdeploy":["Tiny, no-nonsense, self contained, TensorFlow inference","0.0.10"],"roulette-wheel":["A roulette wheel selection $b, $2 in genetic algorithmfor fitness proportionate selection.",C[8]],"lsp-types":[C[663],"0.91.0"],"libatasmart":["A @h $G libatasmart-@r raw @6.",C[1]],"$P_codestar":["^r ^N @0 @3 - ^r CodeStar @ 2017-04-19",C[27]],"$M_app":["SAFE App","0.18.1"],"record-query":["A ^4 @0 doing record analysis @5 transformation","1.0.2"],"wbs-backup-daemon":[C[664],"1.1.15"],"i2csensors":["Traits @0 I2C sensors.","0.1.3"],"testcontainers":["Testcontainers, a @1 @0 $T-$S against docker containers @t within @3.",C[28]],"scylla-macros":["^B @a @0 scylla @J CQL ^j",C[0]],"transit_model_relations":["Modeling @4 relations $t objects",C[4]],"swc_ecma_transforms_^F":[C[151],"0.53.0"],"enumflags":["Bitflags","0.4.2"],"reinfer-client":["@x @c @0 Re:infer","0.9.0"],"aversion-macros":["@a to @j @4 aversion @8",C[5]],"postgres-derive-macros":["Deriving @e @j @0 Postgres enum, domain, @5 composite @g","0.1.4"],"mit-hook-test-helper":["Testing help &1 @0 git-mit","5.11.6"],"asciiutils":[C[848],"0.8.1"],"tokio-current-thread":["Single threaded executor $i manage many tasks concurrently on @4 current &d.",C[138]],"sim1h":[C[700],"0.0.42-alpha5"],"cuckoofilter":[C[665],"0.5.0"],"partial_ref":["Type checked partial references","0.3.3"],"display-as":["Compile-$z templates @0 displaying @w in different markup formats.","0.6.0"],"epoll":["Safe epoll @m.","4.3.1"],"quicklz":["QuickLZ is a $I ^C algorithm.This @1 is an @2 of @4 QuickLZ @G in @f.",C[1]],"gfx_pipeline":["Standard materials @5 &S pipelines @0 gfx_scene",C[1]],"ya-sb-router":["Service Bus Router","0.4.5"],"tld":["Top Level domain &k ^z map, tld list is obtained @t of iana.org","2.26.0"],"multer":["An @J @i @0 `multipart/form-@w` content-$l in @3.","2.0.1"],"rusty_secrets":["@v of threshold Shamir's secret sharing in @4 @3 $m @L.",C[8]],"unic-ucd-core":["UNIC - &h Character Database - Version","0.6.0"],"nu_$Y_average":["An average &5 $Y @0 Nushell",C[24]],"codemap-diagnostic":["@p @0 displaying ^2 ^q &y, extracted @t &K.","0.1.1"],"bitstream-io":["@p @0 &3/$O un-aligned ^V @t/to streams in big-endian @5 little-endian formats.","1.2.0"],"fasta_&1":[C[50],"0.1.5"],"bittrex-api":["A @h @0 @4 bittrex ^S",C[9]],"curse":["TTY UI @1","0.1.3"],"minihttp":["minihttp is a @d @5 ^O &z @c lib @0 @f.","0.1.9"],"cached_^B_@e_@g":[C[666],C[0]],"sp-core":["Shareable Substrate @g.","3.0.0"],"ieee802154":["Partial @2 of @4 IEEE 802.15.4 ^E @0 low-rate wireless personal area networks","0.5.0"],"rust-embed-impl":[C[667],"6.1.0"],"assert_float_eq":["Assertions @0 floating-point equality.","1.1.3"],"kg-diag-derive":["Macro @2 @0 #[@b(Detail)].",C[2]],"rinfluxdb":["A @1 @0 querying @5 posting @w to InfluxDB",C[0]],"frame-system-benchmarking":["FRAME System benchmarking","3.0.0"],"tc-rpc":["Tetcore Client RPC","2.0.0"],"rental-impl":["An @2 detail of rental. Should not be $2 directly.","0.5.5"],"lingua":["An accurate natural @L detection @1, suitable @0 long @5 short ^D alike","1.3.2"],"c_str_@e":["c_str @e to create C-^i $c literals","1.0.3"],"@f_hawktracer_normal_@e":[C[668],"0.4.1"],"geogrid":["Manipulate geographic @w on a grid.","0.3.1"],"wascc-fs":["Blob store capability provider (local $0 @O) @0 @4 waSCC @I",C[4]],"tinysearch":[C[669],"0.6.2"],"batbox":["Batteries useful @0 projects","0.7.0-alpha.7"],"oauth1":["Basic OAuth1 @1 @0 @3.","1.0.0"],"$P_mediatailor":["^r ^N @0 @3 - ^r MediaTailor @ 2018-04-23",C[27]],"boxfnonce":["$M FnOnce boxing @0 @f stable","0.1.1"],"gc_@b":["Garbage collector @b $Y @0 @f-gc","0.4.1"],"libimagentrygps":[C[39],C[12]],"medea-macro":["Internal @a @5 ^H @0 Medea media @U ^g",C[5]],"flatgeobuf":["FlatGeobuf @0 @3.","0.6.1"],"gtk-test":["Crate to ^7 GTK UIs","0.7.0"],"rouille":["High-@C idiomatic &e @k.","3.3.1"],"skeletal_animation":["Skeletal character animation @1, @u gfx-rs","0.40.0"],"serde-enum-str":["Serialize @5 deserialize enum $c","0.2.4"],"google-drive3":[C[964],C[670]],"moleculec":["Schema ^2 @0 molecule.","0.7.2"],"rustracing_jaeger":["Jaeger @c @1 created on top of rustracing","0.6.1"],"mongodb-base-service":["A @d @3 &t @h to simplify finds, updates, deletes","0.5.1"],"tower-hyper":["A hyper @n tower transport layer.","0.1.1"],"vulkano-shader-derive":["Deprecated",C[16]],"slog-retry":["slog Drain @l reconnects on errors @5 tries again","0.1.1"],"tracing-timing":["Inter-event timing &q on top of &g.","0.5.0"],"qt_@a":["^o @0 Qt","0.1.1"],"sfz":["A @d &k $0 serving @D-$D ^4.","0.6.2"],"google-logging2_beta1-cli":[C[833],"2.0.4+20190325"],"input-linux":["evdev @5 uinput","0.5.0"],"tower-buffer":["Buffer requests before dispatching to a `Service`.",C[1]],"muta-apm-derive":["Muta &g $e @a.","0.1.0-alpha.12"],"futures-mutex":["A Mutex @0 @4 Future(s)",C[5]],"google-dfareporting2d7":[C[671],C[672]],"trellis":["@3 @1 to talk @7 @4 Adafruit Trellis",C[5]],"smallstring":["'Small $c' optimization: store &7 $p on @4 stack @u smallvec",C[4]],"yadns":["Yandex DNS APIv2",C[5]],"actix-testing":[C[934],C[508]],"narvie-cli":["A CLI @0 @4 narvie REPL","0.3.4"],"smtpapi":["@Q @8 allows you to quickly @5 more easily ^n SendGrid X-SMTPAPI headers.","0.1.3"],"wasmtime-obj":["&M object $0 &Z @0 WebAsssembly @V in Wasmtime","0.29.0"],"sc-offchain":["Substrate offchain workers","3.0.0"],"crosstermion":["$8 unification of crossterm @5 termion behind a $u facade @0 $d @7 feature flags","0.8.1"],"tss-esapi-sys":["$L @h $G TSS 2.0 Enhanced System @x",C[3]],"nature":["Nature is a &D @j @N, it separates @w definition @t @V, so it decouple @4 @w @t business @O.","1.1.0"],"fibers_tasque":["A `tasque` ^h specialized @0 `fibers`",C[4]],"ntex-mqtt":["Client @5 Server @k @0 MQTT v5 @5 v3.1.1 protocols","0.7.3"],"thread-tree":["A ^0-structured &d pool @0 splitting jobs hierarchically on worker threads.The ^0 $V means @l there is no contention $t workers when delivering jobs.",C[9]],"lis3dh":["An ^b-hal ^j @0 @4 LIS3DH accelerometer @l implements @4 ^G accelerometer $y","0.4.1"],"diffy":["Tools @0 finding @5 manipulating differences $t @z",C[5]],"dxgi-sys":["Contains @Y $h @0 @4 ^6 @x @1 dxgi. See winapi @0 @g @5 constants.",C[3]],"tc_trufflesuite_ganachecli":["Testcontainers image @0 @4 trufflesuite/ganache-^y docker image.","0.4.1"],"pathfinder_color":["A minimal SIMD-accelerated color ^a @1","0.5.0"],"hiredis":["$8 @X @s an @m to Hiredis.","0.3.1"],"soft-ascii-string":["char/str/$c &r $i add a \"is-ascii\" soft constraint","1.1.0"],"qcow2":["Reading qcow2 virtual disk images",C[4]],"iter-trait":["Iter $y @0 collectons.","0.3.1"],"elrond-wasm-derive":["Elrond $x smart contract @x $e @a","0.21.2"],"shmem":["Shared $g across processes.",C[3]],"tetsy-libp2p-mplex":["Mplex multiplexing @9 @0 tetsy-^v","0.27.2"],"backslash":["@1 @0 @R escape characters",C[3]],"rsbot":["Simulate keypresses @7 @3!","0.2.3"],"version-compare":["A @3 @1 to easily compare $4 ^M, @5 ^7 them against various comparison operators.",C[0]],"faerie":["ELF @5 Mach-o &8 $Q object $0 emitter",C[72]],"tst":["Ternary search trie $b in @f @7 similar @x to std::&C as it possible",C[12]],"tzparse":["@Q high-@C @1 reads IANA @O timezone $f @z @5 returns transition times (ie. daylight saving $z) @5 human readable @w about a timezone.","1.1.3"],"fastchemail":[C[673],"0.9.3"],"tract-pulse-opl":[C[94],"0.15.5"],"pallet-grandpa":["FRAME &v @0 GRANDPA finality gadget","3.0.0"],"libdw-sys":[C[141],"0.0.6"],"leftpad":["Pad a $c to @4 left",C[3]],"ogl33":["Deprecated, $d @4 `gl33` @8 instead.",C[1]],"scaleway_^S_rs":["Generated @1 to @o @7 Scaleway @x.",C[4]],"easy-ext":["An &U @e @0 easily $O ^h $y pattern.","1.0.0"],"netlink-packet":[C[325],"0.1.1"],"google-cloudtrace1-cli":[C[674],C[675]],"repotools":["Short names, big $z savings. Repotools is a $b of commands @7 short but meaningful names, @0 @4 git $B you perform most often.",C[7]],"numeric":["N-dimensional matrix class @0 @3","0.1.4"],"libnetfilter_queue":["@Q is a @f $W @0 libnetfilter_queue, a &j @1 @l allows userspace to make decisions on @4 destiny of packets.","0.0.3"],"collect":["An experimental ^h of std::&C","0.0.26"],"psl-lexer":["A lexer @0 Mozilla's Public Suffix List","0.3.1"],"git-ref":["A @8 to handle git references","0.9.0"],"termplay":["Play images/videos in $r $o","2.0.6"],"sql":["$8 @X @s a constructor of SQL statements.","0.4.3"],"runas":["Run a @D as root (sudo)",C[5]],"yew":[C[439],C[43]],"&K_lexer":["@3 lexer $2 by &K. No stability guarantees are provided.",C[0]],"raftlog":["An @2 of distributed replicated log @n on @4 Raft $1","0.6.0"],"cblas":["$8 @X @s &r @0 CBLAS (C).",C[2]],"scaproust":["Nanomsg scalability protocols @2 in @f. Various messaging patterns &6 pluggable transports",C[9]],"edn-derive":["Edn (De)Serialization @b @a","0.5.0"],"terminal-clipboard":["a minimal cross-@N clipboard",C[1]],"poison-pool":["A ^G object pool @l supports poisioning items before they are released back ^d @4 pool.",C[0]],"pallet-membership":["FRAME membership ^A &v","3.0.0"],"specs-derive":["Custom @b @e @0 Specs components","0.4.1"],"slow_primes":["Deprecated in favour of `primal`.A @1 to ^n, identify @5 handle prime ^M @5 relatedproperties. @Q @1 includes slow enumeration of primes up to abound, slow factorisation of arbitrary ^M, $I primality testsand state-of-@4-art estimation of upper @5 lower bounds @0 π(n)(@4 &a of primes below n) @5 p_k (@4 k-th prime).","0.1.14"],"iron-cors":["A CORS &G @2 @0 Iron.",C[7]],"image-base64":[C[676],C[0]],"tables":[C[50],"0.1.4"],"encoding-index-japanese":["Index tables @0 Japanese character encodings",C[461]],"twoway":["(Deprecated - $d @8 memchr instead.) Fast substring search @0 $p @5 byte $p. Optional SSE4.2 acceleration (if detected at @I) @u pcmpestri. Memchr is @4 only mandatory &m. $8 two way $1 is also $2 by rust's libstd itself, but here it is exposed both @0 byte $p, @u memchr, @5 optionally @u a SSE4.2 accelerated $4.",C[8]],"rjson":["A minimal &V @i","0.3.1"],"probability":["$8 @X @s a probability-theory toolbox.",C[26]],"tracing-appender":["@W @E @0 $0 appenders @5 making non-blocking writers.",C[3]],"twiggy-analyze":["Analyses @0 @4 Twiggy @V size profiler.","0.7.0"],"scarlet":["Colors @5 color spaces made @d","1.1.0"],"gitoxide-core":["$8 @1 implementating all capabilities of @4 gitoxide CLI",C[28]],"godwoken-polyjuice":["Polyjuice scripts @0 godwoken","0.6.0"],"rwlock2":["A temporary fork of std::sync::RwLock @7 new APIs.","0.2.5"],"slog-extlog-derive":["Custom @b @V @0 slog-extlog","7.0.0"],"lspower-macros":["Internal $e @a @0 lspower",C[5]],"printtable":["Nicely @G a table",C[0]],"mss_saliency":["Detection of visually salient image regions @u Maximum Symmetric Surround $1","1.0.6"],"libdeflater":[C[677],"0.7.3"],"tectonic_$a_xetex":["$8 [XeTeX](&z://xetex.sourceforge.net/) $a as a reusable @8.","0.1.4"],"javascript_lexer":["Javascript lexer","0.1.8"],"from-ascii":["Traits $i creates instances @t ascii $c.","0.0.1"],"gazetta-core":["A &k site @B @k. Core.","0.3.1"],"scale-info":["Info about SCALE encodable @3 @g","1.0.0"],"askama_warp":["Warp $T @0 Askama templates",C[16]],"lpsolve-sys":["Raw lpsolve @6","5.5.0"],"ssb-keyfile":["Keyfile $B @0 ssb.","0.5.4"],"eliza":["A @f @2 of ELIZA - a natural @L &u ^U developed by Joseph Weizenbaum in 1966.","2.0.0"],"snailquote":["Escape @5 unescape $p @7 shell-&X quoting",C[1]],"mesos":["Mesos @1 @u @4 new ^s @x","0.2.10"],"nstack":["Arity 4 stack @0 @4 kelvin merkle toolkit",C[13]],"libipld-base":[C[866],C[0]],"cmark2jira":["Translate good CommonMark ^d bad JIRA markup.",C[2]],"cudnn":[C[507],"1.3.1"],"discord-cassandra-cpp":[C[678],"0.16.0-rc2"],"rustv":["A minimal, intentionally inaccurate RISC-V ISA simulator","0.5.1"],"stitch":["A @f @m @0 pushing @w to &Y://www.stitchdata.com.",C[3]],"wstr":["^o @0 compile-$z UTF-16 (wide) $c literals.",C[3]],"downcast-rs":["Trait object downcasting @j @u only $M @3. It supports typeparameters, associated @g, @5 $l constraints.","1.2.0"],"cron_clock":["A cron expression @i @5 schedule explorer. Rich documentation @5 case studies @5 related upper-@C &4 are available.",C[7]],"ckb-fixed-hash-macros":["Provide several ^B-@a to construct const fixed-sized hashes.",C[302]],"cargo-llvm-cov":["Cargo &i to easily $d LLVM source-@n @V coverage (-Z instrument-coverage).",C[32]],"boolector":["Safe high-@C @6 @0 @4 Boolector SMT solver","0.4.2"],"mio-child-process":["An ^h to mio to @j child processes",C[5]],"tolk":["@6 to tolk.dll, a @1 to talk to screen readers","0.5.0"],"capnp-rpc":["@2 of @4 Cap'n Proto remote procedure call @9","0.14.1"],"build-parallel":["A ^t @1 to let you parallelize work in build.rsusing @4 jobserver",C[4]],"zipkin-types":["Type $h @0 Zipkin distributed trace $f",C[0]],"maud_@a":[C[679],"0.22.3"],"uchardet":["Detect character encodings @u uchardet @1","2.0.4"],"enet-sys":["Low @C @6 to @4 enet C @1","0.2.3"],"warp-reverse-proxy":["Warp filter @l acts as a reverse proxy, forwarding @4 request to a proxy address @5 extracting a response.",C[2]],"rendy-texture":["Rendy's texture","0.5.1"],"holochain_dpki":["holochain dpki",C[18]],"reduce":["Fold an iterator ^Y an initial &5","0.1.4"],"$P_dax":["^r ^N @0 @3 - Amazon DynamoDB Accelerator (DAX) @ 2017-04-19",C[27]],"ioe":["A @8 @l makes many of @4 I/O errors in stdlib de/serializable.","0.5.1"],"nifty":["A @1 @0 $E Deterministic Finite State Automata (DFA).","0.3.3"],"cipher":["Traits @0 describing block ciphers @5 ^L ciphers",C[1]],"color-spantrace":["A pretty printer @0 tracing_error::SpanTrace @n on color-backtrace","0.1.6"],"raur":["A @d @h to query @4 AUR RPC.","5.0.1"],"asm-delay":["no_std @2 of ^b-hal DelayMs & DelayUs @n on arm::delay","0.9.0"],"dbui-core":["Core classes $2 by dbui in @4 app @5 WASM","0.0.64"],"focaccia":["no_std @2 of &h case folding comparisons","1.0.2"],"bitlab":["Extracting a range of bits @t a $Q @w source","1.1.0"],"packer":["Pack &k @z ^d $r $Q at compile $z","0.5.3"],"nginx-config":["A @i, AST @5 formatter @0 nginx $H @z.","0.13.2"],"stm32h7":["Device @j $R @0 STM32H7 &N",C[24]],"session_@g":["An @2 of session @g in @3","0.3.1"],"system-configuration":["@H to SystemConfiguration @k @0 macOS",C[2]],"rusty_ally":["A set of binaries to help you control ActionAlly",C[8]],"pandora_box":["Pandora's Box: A ^t @0 SydBox, a seccomp-bpf @n $U sandbox, to make sandboxing practical","0.6.2"],"libp2p-wasm-ext":[C[409],C[172]],"stakker_log":["Logging @j @0 Stakker","0.0.3"],"hyper-socks":["SOCKS proxy @j @0 Hyper clients",C[2]],"headers-derive":["@b(Header)","0.1.1"],"emath":["Minimal 2D math @1 @0 GUI work",C[23]],"pixel-canvas":["A @8 to make it &x to $j interactive computer art @7 just a pixel buffer.",C[8]],"rls-vfs":["Virtual File System @0 @4 RLS",C[7]],"parsell":["Parsell LL(1) streaming @i combinators","0.6.5"],"moka-cht":["Lock-free resizeable concurrent ^z table","0.5.0"],"impl-codec":["Parity Codec @M @j @0 uint @5 fixed ^z.","0.5.1"],"minisat":["MiniSat @3 @m. Solves a boolean satisfiability problem given in conjunctive normal form.","0.4.4"],"opentls":["TLS connections @7 OpenSSL.",C[5]],"rustc-semver":["Crate @0 @R versions of @3 releases","1.1.0"],"todo_r":["@K @f @D $D $w @l keeps track of $r todo comments in @V","0.7.2"],"rin":["A cat(1) replacement @0 humans.",C[1]],"yaz0":["A @1 @0 de/compressing Nintendo Yaz0 @z",C[1]],"google-pubsub1":[C[680],C[210]],"ydcv-rs":["A @f $4 of YouDao Console Version","0.4.7"],"clock":["@K clock",C[1]],"cargo-audit":["Audit Cargo.lock @0 $R @7 security vulnerabilities","0.15.2"],"pest_meta":[C[681],"2.1.3"],"lib3h_sodium":["lib3h libsodium @h ^R $g secure ^S $X","0.0.42"],"pathfinder":["Create nodes, clusters of nodes @5 connection in $t.","0.6.5"],"bf-impl":["Bitfield $e @e","1.0.0"],"ec-gpu-gen":["Code @B @0 field @5 eliptic curve $B on @4 GPUs","0.1.1"],"iso8601-duration":["Parse ISO8601 duration @G.",C[0]],"hdc20xx":["Platform-&f @3 ^j @0 @4 HDC2080, HDC2010 @5 HDC2021 low-power humidity @5 temperature digital sensor.",C[0]],"dicom-dictionary-std":["Standard DICOM &U dictionary",C[2]],"crates-io":["Helpers @0 &2 @7 crates.io","0.33.0"],"nicehash":["NiceHash @x in @3.",C[3]],"num-format":["A @3 @8 @0 producing $c-representations of ^M, formatted according to international standards",C[2]],"mammut":[C[682],C[15]],"easy-plugin":["A ^2 $Y @l makes it easier to &0 ^2 plugins.","0.11.8"],"google-blogger3":[C[683],C[143]],"mobilenet_v2":[C[1031],C[0]],"tc-finality-grandpa-rpc":[C[684],C[7]],"readings-probe":["Probe @0 vital &q ^I &H","0.1.3"],"secure_serialisation":["Functions to encode/decode @5 encrypt/decrypt @w @u public-key, authenticated encryption.","0.5.0"],"dissolve":["Melt away HTML tags @5 retrieve @4 ^D contents @l you care about!",C[8]],"isolanguage-1":["ISO 639-1 @1 @7 optional Serde @j",C[8]],"goose":["A load $S @k &X by Locust.","0.14.1"],"iced_audio":["An ^h to @4 Iced GUI @1 @7 useful widgets @0 audio @P","0.7.0"],"zero":["A @3 @1 @0 zero-allocation @R of $Q @w.",C[4]],"rdxl_&k":["Static Site Generation ^e @0 RDXL","0.0.38"],"zbus_@a":["^B-@a @0 zbus",C[136]],"ethabi-contract":[C[563],"11.0.0"],"abi_stable_&J":[C[685],"0.10.2"],"rl-sys":["&M @6 to libreadline.","0.5.2"],"geoip-rs":["geoip-rs @s geographical $f about @4 calling or @4 specified IP address","0.6.1"],"css-colors":["A @3 converter to transform CSS colors.","1.0.1"],"sit-core":["Core @1 @0 SIT (Serverless Information Tracker)","0.4.1"],"bobbin-cli":["A @D $D ^4 @0 automating $r ^b &D workflow.","0.8.8"],"doubter":["A ^t @8 @0 $S @3 @V blocks in Markdown",C[0]],"nnsplit":["A ^4 to split ^D @u a neural ^9. For sentence boundary detection, compound splitting @5 more.","0.5.8"],"uart_16550":["Minimal @j @0 uart_16550 serial &Z.","0.2.15"],"shippai_@b":["@a @0 shippai",C[9]],"netherrack":["A Minecraft @U programmed in @3","0.0.1"],"ckb-spawn":["Trait define spawns a new $n task",C[302]],"bevy_hecs_@a":["Bevy fork of hecs-@a: $e @e $h @0 hecs",C[1]],"emit_ansi_term":["An ANSI (colored) $o collector @0 emit.",C[3]],"advapi32-sys":["Contains @Y $h @0 @4 ^6 @x @1 advapi32. See winapi @0 @g @5 constants.",C[3]],"ast_node":["^o @0 ast nodes.","0.7.4"],"chase":["Async + sync $0-following @0 people who care about $0 rotatons @5 $D ^M.","0.1.8"],"luajit-sys":["LuaJIT @6 @0 @3.","0.0.5"],"indoc-impl":[C[1016],"0.3.6"],"okkhor":["A @3 @1 @0 English to Bangla phonetic conversion following @4 'Avro' rules","0.5.2"],"chargrid":["Wrapper @8 @0 frontend-independent chargrid $R",C[2]],"grin_chain":[C[168],"5.1.0"],"solana-chacha-sys":["Solana chacha-@r","1.1.23"],"typos-dict":[C[686],"0.6.2"],"cloudevents-sdk-rdkafka":["CloudEvents official @3 ^N - Kafka $T","0.3.1"],"hashicorp_vault":["HashiCorp Vault @x @c @0 @3","2.1.0"],"atomicbox":["Safe atomic pointers to boxed @w.",C[1]],"keycode":["A @3 @8 @0 translating keycodes @n on Chrome's mapping of keys.",C[1]],"bsonrs":["bson @w-interchange @G","0.2.4"],"akaze":["AKAZE feature extraction $1 @0 computer vision","0.7.0"],"elrond-wasm":["Elrond $x smart contract @x","0.21.2"],"parser-combinators":["**DEPRECEATED** &B combinators @n on @4 Haskell @1 parsec. @Q @1 has been renamed to combine. See &Y://crates.io/$R/combine @0 more recent versions **DEPRECEATED**","0.7.1"],"try-mutex":["Fast non-blocking mutex",C[2]],"voodoo":["An intuitive, idiomatic, unopinionated, zero-overhead Vulkan @x","0.3.1"],"sentry-contexts":[C[687],C[88]],"file-per-thread-logger":["A &H @2 @l writes logs in one $0 per &d","0.1.4"],"libftdi1-sys":["$L @6 @0 libftdi1","1.1.1"],"prototty_&s":["Wasm frontend @0 prototty.","0.27.0"],"subhasher":["subhasher","0.1.8"],"steamwebapi":["Bad Steam @x @h",C[2]],"actix-web-sql-identity":["A SQL-$N identity provider @0 Actix Web's identity @O","0.4.3"],"solana-config-program":["Solana Config ^U","1.8.1"],"wmfocus":["Visually focus windows by label","1.3.0"],"google-firebaseremoteconfig1-cli":[C[688],"2.0.4+20171129"],"sorted-vec":["Create @5 maintain sorted vectors @5 vector-backed sets","0.5.2"],"fortanix-sgx-abi":["An @m @0 Intel SGX enclaves. @Q is @4 @m @0 @4`x86_64-fortanix-unknown-sgx` target.This is a &7 yet functional @m suitable @0 $O larger enclaves. In contrast to other enclave interfaces, this @m is primarly designed @0 running entire @P in an enclave.This @8 fully describes @4 $l-@C @m @q @7 documentation. For implementors, this @8 contains all @4 $l definitionsand a @e @7 @4 @Y $h.","0.3.3"],"zkutil":["@p @0 ^p @7 circom circuits","0.4.1"],"queen-log":["log",C[2]],"interfacer-http-attribute":["^B @e @0 interfacer-&z",C[5]],"^C":["Compression &4 implemented by ^X @3.","0.1.5"],"mac-process-info":["Returns basic ^I info on OS X",C[3]],"globber":["Extended glob matching @1","0.1.3"],"sp-keyring":[C[689],"3.0.0"],"wrangler":["Command-$D @m @0 all things Cloudflare Workers","1.19.4"],"github_webhook_message_validator":["@W @y @0 validating GitHub webhook payloads.","0.1.5"],"hlvm_@I":["$8 Runtime @0 @4 HLVM @p","0.7.0"],"gapbuffer":["A gap buffer in @3.","0.1.1"],"sort_str_to_sql":["Convert Sort Expression to SQL @l can be $2 in 'ORDER BY' statement, e.g. '-aired,id' -> 'aird DESC NULLS LAST, id ASC NULLS LAST'.","1.0.0"],"nrf52810-hal":["HAL @0 nRF52810 $s",C[24]],"streaming-decompression":["Fallible streaming iterator specialized @0 ^C @5 decompression",C[0]],"rotor-dns":["&b DNS resolver @0 rotor @k",C[2]],"tectonic_bridge_graphite2":["Expose @4 graphite2 @1 to @3/Cargo.",C[5]],"neat-gru":["NEAT $1 @7 GRU gates","1.0.0"],"^f_libra_proto_conv":["Solana Libra proto_conv","0.0.0"],"embedded-display-controller":["Traits @0 display controllers",C[0]],"parking":["Thread parking @5 unparking","2.0.0"],"print-flat-tree":["Convert a flat-^0 to a $c.","1.1.3"],"schemafy_lib":[C[690],"0.6.0"],"convenient-skiplist":["Convenient @5 Performant SkipList @7 $6 @j","1.0.3"],"google-deploymentmanager2-cli":[C[691],"2.0.4+20210320"],"ca-formats":["Parsing pattern @z @0 Conway's Game of Life.","0.3.3"],"icmp":["ICMP socket",C[1]],"tauri":["Make tiny, secure apps @0 all desktop platforms @7 Tauri",C[692]],"time-parse":["Parse iso8601 periods",C[3]],"bdrck_params":["Command-$D argument @R.",C[9]],"$P_rds":["^r ^N @0 @3 - Amazon Relational Database Service @ 2014-10-31",C[27]],"panic-persist":["Persist panic &y in @4 targets' RAM",C[1]],"fluidlite":["Safe @6 to fluidlite @1",C[5]],"quasi_^H":[C[693],"0.32.0"],"tls-api-native-tls":["TLS @x @2 &6 &8-tls @8","0.7.0"],"tensorflow":["@3 @L @6 @0 TensorFlow.",C[26]],"amethyst_locale":["Localisation @6.",C[99]],"bcc-sys":["@3 $W to BPF Compiler Collection (BCC)","0.19.1"],"mazth":["Matrix @E.","0.6.0"],"fce-wit-parser":["Fluence FCE @m $l @i","0.5.0"],"tls-sys":["$L @6 @0 libressl's libtls",C[0]],"spc":["A @1 @0 manipulating SPC (Super Nintendo music) @z.","0.1.1"],"exponential-decay-histogram":["A histogram $i exponentially weights in favor of recent ^V","0.1.9"],"^4":["A grab-bag of &1 @0 functional $m.",C[5]],"verex":["@Q @8 @s a @3 @2 of VerbalExpressions in order to $j regex $p ^Y knowing @4 minutiae of regex syntax.",C[8]],"$0_limit":["$w @y to retrieve @5 set OS $0 limits","0.0.2"],"cargo-5730":["A workaround @0 @S#5730",C[5]],"sel4-sys":["@3 @m to @4 seL4 kernel","0.0.28"],"yoloxide":["A rusty @2 of @4 Yolol @L @t @4 upcoming game Starbase.","0.4.4"],"emoji-commit-type":["$8 different commit @g $2 in @4 emoji committer","0.1.1"],"mime_multipart":["MIME multipart @R, construction, @5 streaming","0.6.0"],"errer":[C[694],C[15]],"gif-dispose":["Implements GIF disposal method @0 @4 gif @8. $8 gif @8 only exposes raw frame @w @l is not sufficient to render GIFs properly. GIF requires special composing of frames $i, as this @8 shows, is non-trivial.","3.1.1"],"paillier":["A ^X-@3 @2 of @4 Paillier encryption scheme",C[3]],"erl_pp":["Erlang source @V preprocessor",C[3]],"lexical-util":["Shared @E @0 lexical creates.","0.8.1"],"pic8259_@d":["Kernel-space @m to @4 8259 @5 8259A interrupt controllers",C[3]],"@d_proxy":["@K proxy @7 middlewares, &x to customize, &x to $d.","1.3.4"],"iolaus":["Generates individualized exams @0 students @t a question ^Q","0.1.7"],"futures-join-macro-preview":["Definition of @4 `join!` @e @5 @4 `try_join!` @e.",C[19]],"wagyu-zcash-parameters-3":[C[323],C[3]],"signatory-ledger-tm":[C[229],"0.99.0"],"audio-mixer":["Mixing audio by @4 input @5 &Z channel layout",C[4]],"skytable":["Official @3 @c ^j @0 Skytable","0.6.1"],"parry3d-f64":["3 dimensional collision detection @1 in @3. 64-bits precision $4.","0.7.1"],"namedarg":[C[586],C[587]],"ttyper":["Terminal-@n typing ^7.",C[1]],"amethyst_ecs":["Entity component @O (ECS) @1","0.1.1"],"packed_struct":["Binary-@C $V packing @5 unpacking @B",C[13]],"tower-web":["Web @k @7 a focus on removing boilerplate","0.3.7"],"seax_scheme":["Scheme ^2 @0 @4 Seax VM.",C[1]],"ssh-jail-dto":["DTO @0 ssh-jail","0.4.1"],"shaku_@b":["Code ^1 @0 @4 shaku &m injection @k","0.6.1"],"vobsub2png":["Tool to convert DVD VobSub-@G subtitles (*.sub/*.idx @z) to PNGs","0.1.4"],"sonicd":["@c @1 @0 Sonicd, a @w streaming gateway","0.6.0"],"cat-reader":["Adapter @0 &3 through &l @z continuously","1.0.0"],"otpcli":["A @d one-$z-password CLI, @7 @j @0 TOTP @5 STOKEN.","1.0.0"],"liquid-core":["Core liquid $7",C[88]],"ndarray-image":["Zero-copy conversion $t ndarray @5 image $R",C[1]],"korean_^M":["@Q parses several @g of ^M @5 expressions to hangeul.","0.6.6"],"tfs":["Fast, content-addressed, snapshottable filesystem.","0.1.3"],"cargo-readme":["A @S &i to ^n README.md content @t doc comments","3.2.0"],"serum_dex":["Serum DEX",C[2]],"diffr":["An LCS @n diff highlighting ^4 to ease @V review @t $r $o.","0.1.4"],"rfc1751":["@v of @4 human-readable $Q-to-^D @O RFC 1751",C[0]],"panic-msp430":["Halting panic @2 @0 MSP430 $s",C[3]],"git-topic-stage":["Logic @0 managing a topic stage on top of a base branch in git.","4.0.0"],"futures-test":[C[695],"0.3.17"],"openidconnect":["OpenID Connect @1","2.1.0"],"si4703":["Platform-&f @3 ^j @0 @4 Si4703 @5 Si4702 FM radio turners (receivers).",C[0]],"proptest-attr-macro":["$q &U @e @0 $O proptest tests","1.0.0"],"tectonicdb":["tectonicdb @U","0.5.2"],"perf_stats":[C[50],"0.1.6"],"malloc_buf":["Structs @0 ^a malloc'd $g passed to @3.","1.0.0"],"tet-core":["Shareable Tetcore @g.","2.1.2"],"flep_@9":[C[696],C[3]],"varianteq":["&n @4 equality of enum variants ignoring fields","0.5.0"],"publicsuffix":[C[697],"2.1.1"],"mozsvc-common":["&O @E @0 Mozilla @U side apps","0.1.1"],"cargo-upgrades":["Checks if &c in Cargo.toml are up to date. Compatible @7 workspaces @5 path &c.","1.3.3"],"uwuify":["fastest ^D uwuifier in @4 west",C[8]],"platter":["Load @z on &e @5 desktop asynchronously","0.1.4"],"async-ready":["Async readiness $3.","3.0.0"],"feeds-to-pocket":["Sends items @t $r RSS @5 Atom feeds to $r Pocket list.","0.1.6"],"register":["&O @m @0 MMIO @5 CPU registers","1.0.2"],"scroll_@b":["A @a 1.1 @b @2 @0 Pread @5 Pwrite $3 @t @4 scroll @8","0.10.5"],"headless_chrome":["Control Chrome programatically","0.9.0"],"raw-cpuid":["A @1 to parse @4 x86 CPUID instruction, $A in @f @7 no external &c. $8 @2 closely resembles @4 Intel CPUID manual description. $8 @1 does only depend on libcore.","10.2.0"],"fork":["@p @0 $Z a new ^I detached @t @4 controling $o (daemon)","0.1.18"],"reproto-backend-swift":[C[89],"0.3.36"],"$c_morph":["string_morph is a @1 of $c case transformations @7 an emphasis on accuracy @5 $J. $8 case conversions are available as @y as well as $3 on String @g.",C[0]],"firestarter":["A ^I @5 &J socket &F",C[9]],"rss-rs":["Deprecated. @Q ^g has been merged @7 @4 `rss` @8.",C[9]],"v4l":["Safe video4linux (v4l) @6","0.12.1"],"rsoundio":["libsoundio @6 @0 @3","0.1.6"],"wfc":["Generate images @u Wave Function Collapse","0.10.4"],"comctl32-sys":["Contains @Y $h @0 @4 ^6 @x @1 comctl32. See winapi @0 @g @5 constants.",C[3]],"ark-algebra-test-templates":["A @1 @0 tests @0 finite fields, elliptic curves, @5 pairings",C[1]],"serializer":["Tetcore customizable $6 serializer.","2.1.2"],"cv-core":["Contains @F $9 $2 in computer vision @P",C[23]],"gag":["Gag, redirect, or hold stdout/stderr &Z. Currently only *nix operating systems are supported.","1.0.0"],"usfx":["Realtime procedurally ^8 sound effects","0.1.3"],"criterion-cpu-time":[C[698],C[0]],"checkers":["A sanity checker @0 global allocations.","0.6.0"],"steamworks":["@W @f &E @6 to @4 steamworks sdk","0.7.0"],"pcap-file":["A @8 to read @5 &0 Pcap @5 read PcapNg","1.1.1"],"mtree":["A @8 @0 iterating through @4 entries of an mtree record $0.","0.5.0"],"external_mixin":["Use $r favourite interpreted @L to ^n $r @3, rightin $r @3. Supports Python, Ruby @5 shell (`sh`) out of @4 box,@7 an extensible @e to @j any others. (See `rust_mixin` tobe able to $d $r all-$z favourite @L to ^n $r @3.)","0.0.1"],"spirit-reqwest":["Reqwest &w @0 Spirit","0.5.1"],"wowcpe":["Command-$D ^4 @0 @4 classical radio station WCPE",C[8]],"lua52-sys":["@H @0 Lua 5.2",C[4]],"pact_mock_@U":["Pact-@3 @j @1 @l implements in ^I mock @U","0.8.0-beta.4"],"winlog":["A @d @3 log $N to send &y to @4 ^6 event log.","0.2.6"],"apply-macro":[C[152],"1.0.13"],"gamemath":["A @d math @1 @0 game &D, $A in @3.",C[2]],"dlc-decrypter":["A decoder @1 @0 dlc @z",C[5]],"glue":["Glue is a @i combinator @k @0 @R ^D @n formats, it is &x to $d @5 relatively $I too.","0.8.7"],"gimli-permutation":["Gimli: a cross-@N permutation","0.1.7"],"dtool":["A @D-$D ^4 $b to assist &D",C[16]],"tc-executor-twasmi":["@Q @8 @s an @2 of `WasmRuntime` @l is baked by twasmi.",C[7]],"fluence-fork-libp2p-request-response":[C[11],C[12]],"signify":["Create ^w signatures @0 @z @5 verify them","0.4.1"],"bm-le-derive":["&n @0 bm-le.",C[16]],"collections-more":["&O @w $V @5 ^3 @0 @f-lang to @q @4 already excellent std::&C","0.1.4"],"petgraph":["Graph @w $V @1. @W graph @g @5 graph ^3.","0.6.0"],"mrml":["@3 @2 of MJML renderer","1.2.6"],"twists":["Example WebSocket Echo Server implemented @7 twist",C[5]],"google-gan1_beta1":[C[699],"2.0.8+20130205"],"cosmos_sdk":["&T: please switch to @4 `cosmrs` @8","0.99.0"],"google-appengine1-cli":[C[843],C[147]],"objc_^7_^u":["^e @0 $S Objective-C interop.","0.0.2"],"vgrs":["Valgrind @c requests",C[0]],"vpncloud":["Peer-to-peer VPN","2.2.0"],"password-rules-parser":["&B @0 @4 HTML passwordrules &U","1.0.3"],"ark-poly":["A @1 @0 ^Z polynomial arithmetic via FFTs &6 finite fields",C[1]],"trapmail":["A @D-$D replacement @0 sendmail @l stores mail. Useful @0 $T tests.",C[2]],"http-service":["Types @5 $3 @0 standardizing @J ^s services","0.5.0"],"$P_cloudfront":["^r ^N @0 @3 - Amazon CloudFront @ 2020-05-31",C[27]],"$6_^7":["Token De/Serializer @0 $S De/Serialize @T","1.0.130"],"mock_instant":["a @d way to mock an std::$z::Instant",C[5]],"daggy":["A directed acyclic graph @w $V @1. It is Implemented on top of petgraph's Graph @w $V @5 attempts to follow similar conventions where suitable.","0.7.0"],"safemem":["Safe &r @0 $g-accessing @y, $C `std::ptr::copy()`.","0.3.3"],"memchr":["Safe @m to memchr.","2.4.1"],"typename":["Stable alternative to Rust's type_name intrinsic.",C[4]],"flux":["Flux is a @c @1 to query InfluxDB","3.0.1"],"sim2h":[C[700],C[18]],"pretty-exec":[C[701],"0.0.37"],"unicode-script":["@Q @8 exposes @4 &h `Script` @5 `Script_Extension` properties @t [UAX #24](&z://www.unicode.org/reports/tr24/)","0.5.4"],"azure-functions-shared":["Implementations &J $t @4 azure-@y-^H @5 azure-@y $R.",C[16]],"blake2b_simd":["a ^X @3 BLAKE2b @2 @7 dynamic SIMD","0.5.11"],"atomic-option":["An atomic, nullable, owned pointer.",C[4]],"evalexpr":["A powerful arithmetic @5 boolean expression evaluator","6.6.0"],"witx":["Parse @5 validate witx $0 @G","0.9.1"],"timespan":["A @d timespan @0 chrono times.",C[3]],"fluvio-wasm-timer":[C[702],"0.2.5"],"version-consts-git":["Code ^1 @0 compiling in $f about a crate's git status",C[3]],"frank_jwt":["@v of ^k JWT","3.1.2"],"google-webmasters3":[C[703],"2.0.8+20190428"],"$P_route53":["^r ^N @0 @3 - Amazon Route 53 @ 2013-04-01",C[27]],"pokereval":["A @3 @1 @0 evaluating poker hands @7 5 or 7 cards.",C[4]],"exonum-system-api":["System @x $Y @0 @4 Exonum @k","1.0.0"],"openal":["OpenAL @h",C[8]],"fast-socks5":["Fast SOCKS5 @c/@U @2 $A in @3 @J/.await (@7 @J-std)","0.5.0"],"rust-sctp":["High @C SCTP networking @1","0.0.5"],"gtk-layer-shell":["Save gir-^8 @h @0 gtk-layer-shell",C[8]],"cumath":["Cuda-@n matrix/vector computations","0.2.7"],"claim":["Assertion @a","0.5.0"],"initials":["initials avatar @0 @f",C[4]],"rusty-hash":["@K ^y $w to calculate $0 checksums","1.1.0"],"elastic_@b":[C[704],C[705]],"octoon-math":["Graphics @E @0 @3.","0.1.7"],"azure-functions-codegen":["Azure Functions @0 @3 @V ^1 @j",C[16]],"sha256":["sha256 &Q digest","1.0.2"],"structopt-derive":[C[414],"0.4.18"],"drone-core":["$8 @F @8 @0 Drone, an Embedded Operating System.","0.14.3"],"objc_id":["@3 smart pointers @0 Objective-C reference counting.","0.1.1"],"nue-codegen":["Stable POD @5 $Q @w $5 I/O @a",C[1]],"sapp-darwin":[C[706],"0.1.6"],"twilight-util":["Miscellaneous @E @0 Twilight.","0.7.0"],"ebay":["eBay @x @c @0 @3.",C[3]],"named_$l_@b":["&n @j @0 named_type",C[8]],"ethereum-types":[C[707],"0.12.1"],"hyper-system-resolver":["An advanced @O resolver @0 $d @7 hyper.","0.5.0"],"pwasm-std":["Parity $x ^E @1 @0 contract &D","0.13.1"],"nom-greedyerror":["Custom ^q $l to take a deepest ^q",C[2]],"quickxml_to_$6":["Convert $t XML ^k @u quickxml @5 $6","0.4.3"],"gudev":["@3 @x @0 gudev, @4 glib @j @1 @0 libudev.",C[13]],"twilight-standby":["Utility to filter wait @0 filtered incoming events @0 @4 Twilight ecosystem.","0.7.0"],"census":["Keeps an inventory of living objects",C[2]],"horrorshow":["a templating @1 $A in @f @a","0.8.4"],"tis-100":["An emulator @0 @4 TIS-100",C[8]],"discard":["Discard $y $i allows @0 intentionally leaking $g","1.0.4"],"chromiumoxide":["@p @0 &2 @7 a chrome instance @7 @4 chrome devtools @9","0.3.1"],"ring-algorithm":["^3 on ring (Abstruct Algebra)",C[2]],"datafusion":["DataFusion is an in-$g query $a @l uses Apache Arrow as @4 $g model","5.0.0"],"rayon-core":["Core APIs @0 Rayon","1.9.1"],"crypto-hashes":["Meta @8 @0 ^w ^z @y $A in ^X @3","0.9.0"],"edit_^0":["Edit trees in @f.",C[3]],"lcov-tool":["LCOV report of $w ^4","0.1.5"],"lazycell":["A @1 ^R a lazily filled Cell struct","1.3.0"],"num_alias":["@d @a to declare '$l checked' aliases @0 integers @5 floats.","0.1.7"],"envsubst":["Variables substitution",C[3]],"amethyst_renderer":[C[708],"0.10.4"],"plumcast":["A message broadcasting @1 @n on @4 Plumtree/HyParView ^3","0.1.5"],"imag-gps":["Part of @4 imag @F ^m: imag-gps @D",C[12]],"unwrap-infallible":["Unwrapping Result ^V @7 compile-$z guarantee of infallibility","0.1.5"],"wayland-cursor":["@H to libwayland-cursor.",C[98]],"threema-gateway":["A @c @1 @0 @4 Threema Gateway.",C[23]],"^B_vector2d":["$q @a $2 internally by vector2d","1.0.2"],"heroku_rs":["@3 @6 @0 @4 Heroku @x","0.6.0"],"rendy-graph":["Rendy's render graph","0.5.1"],"darwin-libproc":["Safe @5 idiomatic &r @0 macOS libproc",C[3]],"coredump":["Force coredump creation on panics.","0.1.1"],"auto_impl":["^W implement $3 @0 $u smart pointers @5 closures","0.4.1"],"md5":["$8 @X @s @4 MD5 ^z @Y.","0.7.0"],"tari_$u":["^e @5 features @0 @4 Tari domain layer, &J across both Base @5 Digital Asset layers.","0.8.1"],"libnftnl-sys":["Low-@C @6 to libnftnl, ^8 @u bindgen","1.1.2"],"slog-serde":["Serde @M adapter @0 slog-rs","1.0.0-alpha9"],"colors-transform":["Module @0 convert @5 transform colors","0.2.11"],"ya-sb-proto":["Golem Service Bus ^c &y",C[2]],"web-dom":["Web @y @0 DOM manipulation","0.3.9"],"sphinxcrypto":["Sphinx ^w packet @G @1","0.1.1"],"i3ipc":["A @1 @0 controlling i3-wm through its IPC @m",C[12]],"udp_sas":["Source address selection @0 UDP sockets","0.1.3"],"qt_3d_render":["@H @0 Qt3DRender C++ @1","0.5.0"],"librespot-protocol":["$8 protobuf logic @0 communicating @7 Spotify servers","0.3.1"],"fpe":["Format-preserving encryption","0.5.0"],"wedpr_l_&Q_zkp_^u":["@p of WeDPR &J zkp @Y ^u.","1.2.0"],"tonic":["A gRPC &6 ^s/2 @2 focused on high $J, interoperability, @5 flexibility.","0.6.1"],"@d_^l_$y":["A @K placeholder @0 chunky @5 compact until they integrate @7 a stable @f ^l @x",C[0]],"sourceview5-sys":["$L @6 @0 GtkSourceView 5",C[1]],"reflect":["$8 \"but I thought @3 doesn't have reflection?\" memorial brand new way of defining $e @a.","0.0.8"],"date":["$8 @1 @s a notion of @4 calendar date.","0.1.3"],"json-pest-parser":["Parse ^k @7 pest grammar.",C[1]],"pokemon-go-protobuf":["Pokemon Go proto buffer @g.","0.1.4"],"sea-query-derive":["&n @e @0 sea-query's Iden $y",C[3]],"simple-slab":["Fast @5 ^O Slab Allocator.","0.3.3"],"oxygengine-ignite-types":["Ignite @g ^F @0 Oxygen Engine",C[42]],"tetsy-libp2p":[C[709],"0.36.0"],"imagequant":["Convert 24/32-bit images to 8-bit palette @7 alpha channel.Bindings @0 libimagequant @l powers pngquant lossy PNG compressor.Dual-licensed $C pngquant. See &Y://pngquant.org @0 details.","3.1.0"],"radiate":["Parallel genetic $m $a capable of evolving solutions @0 supervised, unsupervised, @5 general reinforcement learning problems","1.1.59"],"cognito-user-reader":["Utility to retrieve all users in a specific ^r user pool","1.0.3"],"tetsy-libp2p-websocket":["WebSocket transport @0 tetsy-^v","0.28.2"],"bellman_ce":[C[710],"0.3.5"],"moreops":["a set of @d useful additional &P","0.4.1"],"inlay":["CLI ^4 @0 $5 @5 ^P @d $Q @w $k",C[9]],"leptonica-sys":["$L @6 @0 Leptonica","0.3.5"],"atsamd21e":["Peripheral $X @x @0 ATSAMD21E $s (^8 @u svd2rust)",C[16]],"atomic-traits":["$8 $3 @0 ^G atomic $B",C[1]],"fastly-sys":["Fastly Compute@Edge ABI @H",C[7]],"xoroshiro128":["Fast psuedo-&L &a generators","0.5.0"],"render-tree":["A @1 @0 &S trees of content to @4 $o","0.1.1"],"futures-util":[C[711],"0.3.17"],"cdrs":["Cassandra DB ^j $A in @3",C[712]],"migrant_lib":["Database migration @5 $H @1 @0 postgres, sqlite, mysql","0.33.0"],"lapin-futures-openssl":["Integration of openssl @7 lapin-@Z",C[12]],"region":["Cross-@N virtual $g @x","3.0.0"],"block_kit":["@K @h @0 slack ^S",C[0]],"wasmtime-rust-macro":["Macro @j @8 @0 wasmtime-@f","0.27.0"],"mockito_declarative_@U":["yaml mock servers $H @0 mockito",C[1]],"notifier-rs":["Easy slack notifications.","0.1.3"],"serial_^7_@b":["Helper @8 @0 serial_test","0.5.1"],"iterext":["Padding @5 separation &p to iterators",C[0]],"opencv":["@3 @6 @0 OpenCV","0.57.0"],"c-ares":["A @3 @h @0 @4 c-ares @1, @0 $n DNS requests.","7.5.0"],"bevy_rapier2d":["2-dimensional physics $a in @3, official Bevy $Y.",C[16]],"transit_model_procmacro":["A private procmacro @8 @0 @4 transit_model @8","0.1.1"],"nazar":["A Tile38 @c in @f!","1.0.7"],"audact":["Minimalist synth @5 sequencing lib","0.5.1"],"mop-blocks":["Foundation blocks @0 MOP","0.5.0"],"synstructure":["Helper &P @5 @a @0 custom derives","0.12.6"],"cursive_^0_view":["A ^0 view @2 @0 cursive.","0.7.0"],"bit-vec":["A vector of bits","0.6.3"],"ekko":["Ekko is a @d @5 light $w @0 sending echo requests, built upon raw sockets.","0.7.0"],"gamma-lut":["@3 port of Skia gamma correcting tables","0.2.3"],"ct-codecs":["Constant-$z hex @5 base64 codecs @t libsodium reimplemented in @3","1.1.1"],"adi_clock":["Aldaron's Device Interface / Clock is a @1 developed by Plop Grizzly @0 measuring / getting $z, sleeping @7 precision, @5 smooth animation.",C[1]],"colorgrad":["Color scales @1 @0 @w visualization, charts, games, generative art @5 others.","0.5.0"],"waiter":["@K waiter $y @0 synchronous events","0.1.1"],"input-linux-sys":["@H @0 ","0.7.0"],"proper":["Derives @0 converting $9 to @5 @t @d enums @5 newtype &o","0.1.5"],"$D":["A ^X-@3 @2 of $D editing in a $o","0.1.15"],"uwl":["A ^A ^L @0 bytes @5 characters","0.6.0"],"notosans":["A @d @8 ^R several of Google's Noto Sans true $l fonts as slices of bytes.",C[0]],"glium-glyph":["Glium frontend @0 @4 glyph-brush ^D renderer. gfx-glyph @7 gfx swapped out @0 glium.",C[16]],"repng":["$8 PNG encoder @l no one asked @0.",C[8]],"tp-blockchain":["Tetcore blockchain $3 @5 $9.","2.0.2"],"r2pipe":["@p to @o @7 radare2 @u r2pipes.","0.5.0"],"metal":[C[713],"0.23.1"],"lava_torrent":["A @1 @0 @R/$5 bencode @5 .torrent @z.","0.5.0"],"vex":["3D math @1","2.1.1"],"r":["a set of ^u @0 machine learning","0.0.9"],"bear":["A dead-@d ^7 ^t @0 @f.",C[8]],"zerodmg":[C[543],"0.1.9"],"peel-ip":["Packet @R @0 @4 Internet ^c Suite",C[3]],"enum-each-variant-derive":["Background jobs @0 @3","0.1.3"],"hashbrown_tstd":[C[714],"0.7.1"],"s3handler":["An s3 handler @0 s3rs nu-shell-s3-$Y","0.7.4"],"tract":[C[94],"0.15.5"],"autocxx-bindgen":["^W generates @3 $L @6 to C @5 C++ &4. Version adjusted @0 cxx.","0.59.4"],"grin_wallet":[C[715],"5.0.1"],"termimad":["Markdown Renderer @0 @4 Terminal","0.16.4"],"cntk":["Wrapper $G Microsoft CNTK @1",C[5]],"solana-cli":[C[58],"1.8.1"],"witchcraft-log":["A structured &H facade @0 Witchcraft servers","0.3.1"],"jlens":["^k query combinator @1","0.0.1"],"mimir":["@3 @6 &6 @4 Oracle Database Programming Interface @0 Drivers @5 Applications","0.3.5"],"comonoid":["A comonoid in a monoidal category is a monoid in @4 dual category, what is @4 problem?",C[1]],"claude":["A little @1 to represent money.","0.3.1"],"natpmp":["NAT-PMP @c @1",C[9]],"lldb-sys":["Raw @6 to @4 LLDB C++ @x. LLDB is @4 debugger @l is part of @4 LLVM ^g @5 is @4 default @O debugger on Mac OS X. Building @5 @u this is currently slightly tricky, so be sure to see @4 README.md in @4 repository.","0.0.27"],"cppStream":["a @h brings `<<` @5 `>>` operator to rust's writer/reader/^L $C what C++ did","0.1.1"],"extprim_literals":["Plugin @0 $Z extra primitive @g literals (u128!(n), i128!(n))","2.0.3"],"compact_@a":["Automatic `#[@b(Compact)]` @e @0 &o whose fields are all `Compact`",C[0]],"argparse":["Powerful @D-$D argument @R @1",C[8]],"hexchat":["A $M @x @0 $Z HexChat plugins","0.6.3"],"$P_pricing":["^r ^N @0 @3 - ^r Price List Service @ 2017-10-15",C[27]],"nonblock-logger":["A non-blocking logger @0 @3","0.1.6"],"socketcan-alt":["@3 $W @0 SocketCAN",C[1]],"cargo-valgrind":["A @S &i @0 running valgrind","2.0.1"],"lair_keystore":["secret lair private keystore",C[785]],"xmas-elf":["@p @0 @R @5 navigating ELF @w; zero-allocation, $l-$M.",C[7]],"platform-info":["A @d cross-@N @m to get info about a @O",C[0]],"sozu-command-futures":[C[716],C[15]],"google-gmail1-cli":[C[717],C[200]],"juniper-eager-loading-code-gen":[C[743],"0.5.1"],"axgeom":["@p @l @s ability to extract 1d ranges out of 2d objects.","1.9.3"],"cargo-makedocs":["A @S doc @h @l only builds @4 documentation you care about","1.2.0"],"macroquad-profiler":["Profiler UI @0 macroquad","0.1.1"],"google-cloudsearch1":["A @q @1 to @o @7 cloudsearch (@9 v1)","0.1.6+20150416"],"lm75":["Platform-&f @3 ^j @0 @4 LM75 temperature sensor @5 thermal watchdog.",C[3]],"lasso":["A multithreaded @5 single threaded $c interner @l allows $p to be cached @7 aminimal $g footprint, associating them @7 a unique key @l can be $2 to retrieve them at any $z.","0.6.0"],"kademlia_routing_table":["Kademlia Routing Table @2","0.6.0"],"$6_bencode":["A Serde backed Bencode $5/^P @1 @0 @3.","0.2.3"],"async-google-apis-common":["Shared @V @0 @4 @J-@A-apis ^8 @V.",C[1]],"av-metrics":["A $b of ^3 @0 measuring audio/video &q","0.7.2"],"vga-framebuffer":["A ^D console &Z &6 a VGA ^i signal","0.9.0"],"fitrs":["Parse FITS $0 in ^X @f","0.5.0"],"^f_libra_vm_genesis":["Libra vm genesis",C[10]],"downcast":["Trait @0 downcasting $y objects back to their original @g.",C[13]],"serde-protobuf":["Support @0 Google ^c Buffers in combination @7 $6","0.8.2"],"leptess":["Productive @3 $W @0 Tesseract @5 Leptonica.","0.13.1"],"persistent_array":["Persistent array is a @1 @0 ^p @7 $g mapped arrays","0.5.0"],"new-ordered-float":["Wrappers @0 total ordering on floats (fork of ordered-float)","1.0.2"],"louis-sys":["@H to liblouis (low-@C @8)","0.6.1"],"linkme":["Safe cross-@N linker shenanigans","0.2.7"],"fancy-regex-fork-pb":["A custom fork of @4 fancy-regex @8. You probably don't want to $d this.",C[9]],"tokio-libtls":["Tokio @6 @0 LibreSSL's libtls.","1.2.0"],"kf-protocol-fs":["zero copy $0 semantics @0 kafka @9","3.0.0"],"argmin":["Mathematical optimization in ^X @3","0.4.7"],"ucd-generate":["A ^U @0 $E packed representations of @4 &h characterdatabase @l can be efficiently searched.","0.2.10"],"nannou_laser":["A cross-@N laser DAC detection @5 streaming @x.",C[26]],"moite_moite":["Split a &5 in two owned parts",C[3]],"gotham":["A flexible &e @k @l promotes stability, safety, security @5 speed.","0.6.0"],"gazetta-model-ext":["A &k site @B @k. Extra models.",C[1]],"bow":["Boxed $4 of Cow $l.","2.0.1"],"fern_colored":["@K, ^Z &H (@7 true color @j)","0.6.1"],"druid-derive":["@b impls @0 druid, a @3 UI toolkit.",C[2]],"wasmprinter":["@3 converter @t @4 $x $Q @G to @4 ^D @G.","0.2.31"],"guardian":["@W owned mutex guards @0 refcounted mutexes.","1.0.1"],"krb5-src":["Build @O $T @0 libkrb5, MIT's Kerberos @2.","0.2.4+1.18.2"],"merkletree":[C[824],"0.21.0"],"sc-cli":["Substrate CLI @m.","0.9.0"],"rsfuzzy":["Basic @3 fuzzy logic @1","0.1.3"],"cmdr":["Cmdr is a @1 @0 $K $D-oriented ^D-@n user interfaces","0.3.12"],"c-ares-sys":["Low-@C @6 to @4 c-ares @1","5.3.0"],"secular":["No Diacr!","1.0.1"],"oak":["A typed @i @B syntax ^h @0 Parsing Expression Grammar (PEG).",C[7]],"pear":["A pear is a fruit.","0.2.3"],"snarkos-curves":["Curves @0 a decentralized operating @O","1.1.4"],"^G_^q":["A @X containing a ^G ^q $l @l can be dropped in to simplify ^q ^a",C[3]],"enumx":["Ad-hoc enum ^h.","0.4.3"],"oci-distribution":["An OCI @2 in @3","0.7.0"],"drogue-nom-utils":["Bits @5 bobs $u to many nom parsers",C[0]],"barnes":["A multithreaded Barnes Hut Algorithm @2.",C[4]],"actix-web-actors":["Actix actors @j @0 Actix Web","4.0.0-beta.7"],"arf-strings":["Encoding @5 ^P @0 ARF $p","0.5.1"],"anduin":["Complex end to end game $a @7 usage of new technologies $C vulkan ^S (vulkano), @5 basic principles: 1) Speed; 2) Memory Safety; 3) Cross-@N; 4) User Friendly","0.0.5"],"mapr":[C[184],C[7]],"psa-crypto-sys":[C[718],"0.9.0"],"tokio-batch":["Deprecated. Use @Z-batch instead. An adaptor @l chunks up elements @5 flushes them after a timeout or when @4 buffer is full.","0.5.1"],"libimagentryref":[C[39],C[12]],"^0_^z":["Efficient Merkle-hashing as $2 in Ethereum 2.0",C[1]],"fluxcap":["$z expression @R &X on duckling","0.0.15"],"linux-loader":["A &j kernel image loading @8.",C[2]],"libp2p-identify":[C[719],C[547]],"schroedinger_box":["A @3 container $l modeled after Erwin Schrödinger’s famous thoughtexperiment.","0.0.2"],"wagyu-zcash-parameters-1":[C[323],C[3]],"xenctrl":["Safe @6 to xenctrl","0.4.7"],"ckb-script":["CKB component to run @4 $l/lock scripts.",C[302]],"deno_ffi":["Dynamic @1 ffi @0 deno",C[13]],"solana-cli-config":[C[58],"1.8.1"],"grin_^S":["APIs @0 grin, a @d, private @5 scalable cryptocurrency @2 @n on @4 Mimblewimble chain @G.","5.1.0"],"stm32l4x6-hal":["HAL @0 @4 STM32L4x6 family of $s",C[0]],"im":["Immutable $b datatypes","15.0.0"],"heed":["A fully typed LMDB/MDBX @h @7 minimum overhead",C[16]],"tc_@F":["Core @8 of testcontainers, a @1 @0 $T-$S against docker containers @t within @3.","0.3.1"],"mutate_once":["Interior mutability, &0-once @5 borrowable as plain &T","0.1.1"],"librdkafka-sys":[C[720],"0.9.2-0"],"direct2d":["A $M $F @0 drawing @7 Direct2D","0.3.0-alpha1"],"mail":["mail, facade @0 a &a of mail related $R @0 $Z @5 sending mails","0.7.0"],"media-type":["impl @0 Media Types","0.4.1-unstable"],"a2":["A &8, $n Apple push notification @c","0.6.1"],"ark-bw6-761":["$8 BW6-761 pairing-&E elliptic curve",C[1]],"ucd-util":["A &7 $w @1 @0 ^p @7 @4 &h character ^Q.","0.1.8"],"gdk-pixbuf-sys":["$L @6 to libgdk_pixbuf-2.0",C[24]],"persy":["Transactional Persistence Engine","1.0.0"],"topo-macro":["$e @a @0 @4 topo @8",C[13]],"simple-cards":["A @d deck of cards @1 @7 some useful @y.","1.1.0"],"tp-authority-discovery":[C[867],"2.1.2"],"noria":["Client @6 @0 Noria","0.6.1"],"enumx_@b":["^o @0 ad-hoc enum ^h","0.4.2"],"hazy_@b":[C[721],"0.1.1"],"symlink":["Create symlinks in a cross-@N manner",C[0]],"libimagentryannotation":[C[39],C[12]],"xmc4500":["XMC peripheral @1 @0 XMC4500 ^8 @t SVD",C[2]],"ros-nalgebra":["ROS message converter @0 rosrust @5 nalgebra","0.0.5"],"ducc-sys":["Low-@C Duktape $L @0 @4 `ducc` @8",C[4]],"yeelight":["@3 @x @6 @0 yeelight WiFi Light Inter-Operation",C[1]],"redis_cluster_rs":["Redis cluster ^j @0 @3.",C[32]],"voluntary-servitude":["Thread-$M appendable list @7 lock-free iterator","4.0.8"],"stb_image":["@H to @4 stb image $5/^P @1","0.2.3"],"bb8-tiberius":["bb8 connection &F @0 Tiberius","0.7.0"],"web-view":[C[795],"0.7.3"],"rvk":["Crate @0 accessing VK (VKontakte) @x","0.21.0"],"gtk-icon-cache":["A gtk-icon-cache $0 reader",C[8]],"dasp_envelope":["Audio PCM DSP envelope detection @7 peak @5 RMS @T.",C[16]],"IOKit-sys":["$L @6 @0 IOKit","0.1.5"],"cargo-ensure-prefix":["Cargo &i to check @l all target @z have a fixed prefix.","0.1.6"],"github-api":["Github v3 @x @6 @0 @3","0.4.3"],"window_clipboard":["A @1 to obtain clipboard $X @t a `raw-window-handle`",C[5]],"ledger-cosmos":["@p to integrate @7 ledger nano s apps",C[5]],"mlnx-ofed-libmlx5-sys":["Low-@C $L @6 to @4 C-@1 Mellanox OFED libmlx5","0.0.7"],"google-acceleratedmobilepageurl1":["A @q @1 to @o @7 Acceleratedmobilepageurl (@9 v1)",C[92]],"dart-bindgen":["A ^4 @0 $E Dart $L @6 to C Header $0.","0.1.9-deprecated"],"fiat-crypto":["Fiat-&Q ^8 @3","0.1.9"],"impls":["Determine if a $l implements a logical $y expression.","1.0.3"],"helgoboss-midi":["Interfaces, @w $k @5 @E @0 dealing @7 MIDI &y according to @4 MIDI 1.0 specification","0.3.3"],"deno_graph":["^F graph analysis @0 deno","0.9.0"],"voice":["Attempting to $d tts @5 stt in @f, exploration only. no @V yet","0.1.4"],"tfrecord":["Serialize @5 deserialize TFRecord @w @G @t TensorFlow","0.9.0"],"librespot-tremor":["@3 @6 to tremor",C[3]],"xh":["Friendly @5 $I ^4 @0 sending ^s requests",C[15]],"ptb-reader":["@K @R of @4 merged Penn Treebank @G.","0.9.1"],"progress_$c":["Generate a progress bar $c",C[3]],"unixfs-v1":["unixfs v1 @2",C[5]],"hashids-rs":[N,"0.0.0"],"libaes":["AES cipher in $M @3 @7 no &c","0.6.1"],"serde-value":["Serialization &5 trees","0.7.0"],"idna":["IDNA (Internationalizing Domain Names in Applications) @5 Punycode.","0.2.3"],"harfbuzz":[C[722],C[2]],"coord_2d":["A general purpose 2d coordinate",C[9]],"cargo-pgx":["@S &i @0 'pgx' to make Postgres ^h &D &x",C[57]],"cmac":["&W @2 of Cipher-@n Message Authentication Code","0.6.0"],"isolang":["Efficient, &k lookup table @0 ISO 639 @L codes","1.0.0"],"commandlines":["A @D $D argument @R @1 @0 @3",C[7]],"spark":["▄▆▂█▁ in $r @3!",C[2]],"rweb-openapi":[C[748],"0.7.0"],"dingus":["Easily apply ^K variables loaded @t a config $0 to a shell session.","0.5.7"],"filewatcher":["File Watcher @p",C[8]],"codemap":["A @w $V @0 efficiently storing source @V position @5 span $f(e.g. in a ^2 AST), @5 mapping it back to $0/$D/column locations @0 errorreporting @5 suggestions.","0.1.3"],"rustsourcebundler":["Bundle @4 source @V of a @f @S @8 in a single source $0","0.9.0"],"capstone_@f":["A Capstone $a $W @0 @3","0.2.3"],"hifive1":["Board @j @8 @0 HiFive1 @5 LoFive boards",C[13]],"kugel":["@3-oriented OpenGL @h.","0.0.2"],"google-cloudresourcemanager1":[C[995],C[1039]],"smlang":["A no-std state machine @L DSL","0.4.2"],"m":["A C free / ^X @3 mathematical @1 (\"libm\") @0 `no_std` @V","0.1.1"],"switchboard-utils":["Switchboard $w @8","0.1.29"],"aws-region":["Tiny @3 @1 @0 ^p @7 Amazon ^r regions, supports `s3` @8","0.23.2"],"vektor":["Strongly typed explici SIMD",C[8]],"cucumber_@f":["Use `cucumber` @8 instead!",C[13]],"kyotocabinet":["Kyotocabinet $W","0.0.6"],"google-dfareporting2d2":[C[723],C[117]],"hyperdav":["WebDAV @c",C[3]],"$P_es":["^r ^N @0 @3 - Amazon Elasticsearch Service @ 2015-01-01",C[27]],"static-compress":["Create a compressed copy of @z matching a glob to serve statically compressed @z @7 a &e @U",C[9]],"sp-utils":[C[724],"3.0.0"],"axiom":["Implements a highly-scalable @5 ergonomic actor @O @0 @3 @n on @4 best of Erlang / Elixir @5 Akka.",C[5]],"ansi-escapes":["Ansi escape codes @0 manipulating @4 $o","0.1.1"],"network-internet-protocol":["A domain model of internet @9 $4 4 @5 $4 6 host addresses, masks, ^9 addresses @5 packets @5 associated @g.",C[32]],"html-diff":["@p detect HTML diffs","0.0.6"],"genetic":["a little lib to $d genetic $1",C[5]],"clucstr":["Safe creation of “CStr” @7 zero cost at @4 compilation stage @7 checking @0 zero bytes @5 @4 ability to transfer &l ^V.","1.1.91"],"zookeeper_@b":["&n @T $2 to $j @4 ZooKeeper @1","0.4.1"],"may_actor":["@K Actor @1 @n on MAY",C[8]],"libraw-sys":["$L @6 to libraw","0.1.1"],"movine":["A @d ^Q migration &F","0.11.3"],"cortex-m-rtfm-macros":["$q @a of @4 cortex-m-rtfm @8","0.5.1"],"aez":["@3 @h @0 AEZ wide block cipher $A in C.","0.0.7"],"bitcoincore-rpc-json-async":[C[583],"3.0.1"],"hipack":["Serialization/&9 @0 @4 HiPack @G","0.1.1"],"argonautica":["Idiomatic Argon2 password hashing @0 @3",C[3]],"mnl":["Safe $F @0 libmnl, a minimalistic user-space @1 oriented to Netlink developers",C[3]],"web3-async-native-tls":["Temporary @X released to crates.io. Fork of @J-&8-tls. Please don't $d.",C[2]],"burner":["Mini REST @U","0.2.3"],"nu-macros":["Core @a @0 $K Nushell",C[28]],"crc32c-hw":["Hardware-accelerated (SSE 4.2) @2 of CRC32C @7 software fallback","0.1.3"],"matrixcompare":["Tools @0 convenient comparison of matrices",C[1]],"fallible":["Fallible $B","0.1.3"],"nettle-sys":["Low-@C @3 @6 @0 @4 Nettle ^w @1","2.0.8"],"hex2d-dpcext":["dpc's hacky &p to hex2d-rs @1",C[0]],"$P_codecommit":["^r ^N @0 @3 - ^r CodeCommit @ 2015-04-13",C[27]],"blockies":["@p @l generates blocky identicons.",C[1]],"sha":["@3 Secure Hash Algorithm (SHA) @p.","1.0.3"],"cargo-wasm":["Make developing a &s ^g in @3 &x","0.4.1"],"autocxx-parser":[C[227],C[15]],"bidir-map":["Bidirectional map @2 @0 @3","1.0.0"],"ftoa":["@Q is a fork of @4 `dtoa` @8 $i writes integer &5 floats ^Y trailing `.0`. Fast @y @0 printing floating-point $9 to an io::Write.","0.1.1"],"tibco_ems-sys":["@3 @6 @0 @4 Tibco EMS C @1.","1.0.2"],"cmd_lib_@F":[C[150],C[2]],"varlink_@i":["A @8 @0 @R varlink @m definition @z.","4.1.0"],"bme280":["A @f device ^j @0 @4 Bosch BME280 temperature, humidity, @5 atmospheric pressure sensor @5 @4 Bosch BMP280 temperature, @5 atmospheric pressure sensor",C[5]],"base32":["Base32 encoder/decoder @0 @3",C[2]],"webview_official":["Official Webview-org @3 @6, a tiny cross-@N @1 to render &e-@n GUIs @0 desktop @P",C[3]],"esp-idf-sys":["@H @0 ESP-IDF (Espressif's IoT Development Framework)","0.22.2"],"print-nanny-client":["Official Print Nanny @3 @x Client","0.8.51"],"lexical-write-float":["Efficient formatting of floats to $p.","0.8.2"],"sql_lexer":["@p to lex @5 sanitize SQL","0.9.3"],"noble-mmr-primitives":["FABRIC Merkle Mountain Range $9.","2.0.0"],"near-bindgen-macros":[C[725],"0.6.0"],"prosto":["Compress prost! &y @7 zstd, optional $v channels @j","0.6.4"],"boringauth":["Straightforward password, passphrase, TOTP, @5 HOTP user authentication","0.9.0"],"generic-dns-update":["A cross-@N ^4 to update DNS zonefiles (such as Gandi.net) when you have a dynamic public IP address.","1.1.4"],"unescape":["Unescapes $p @7 escape sequences $A out as literal characters.",C[0]],"varisat-internal-proof":["Internal proof @G @0 @4 Varisat SAT solver",C[8]],"lmdb":[C[726],C[7]],"tg_botapi":["Telegram Bot Api @1","0.7.0"],"nix-base32":["@W a nix (as in NixOS) ^i base32 $5.","0.1.2-alpha.0"],"hyperscan":[C[783],C[8]],"ioc":["A @d IoC (Inversion of Control) container in @3.","0.6.2"],"bolero-generator":[C[973],"0.6.0"],"uniquote":["Quote $p @0 clear display in &Z","3.0.0"],"synom":["Stripped-down Nom @i $2 by Syn","0.11.3"],"libslirp-sys":["$L @6 @0 libslirp.","4.2.0"],"irc":["@4 irc @8 – usable, @J IRC @0 @3",C[23]],"toxiproxy_@f":["Lightweight @c @0 Toxiproxy","0.1.6"],"rls-span":["Types @0 identifying @V spans/ranges","0.5.4"],"freertos-rust":["Create to $d FreeRTOS in @f projects.The freertos-@S-$j @8 can be $2 to $j @5 link FreeRTOS @t source inside build.rs.",C[4]],"flow_impl":["Definition of an @v $y @0 flow @y, @5 a @b @e","0.21.0"],"hashmap_@F":["@v of HashMap @5 HashSet @0 no_std environments.",C[38]],"carapax-codegen":["$q macroses @0 carapax",C[3]],"eddie":["Fast @5 well-tested @T of edit distance/$c similarity metrics:Levenshtein, Damerau-Levenshtein, Hamming, Jaro, @5 Jaro-Winkler.","0.4.2"],"pallet-randomness-collective-flip":["FRAME randomness collective flip &v","3.0.0"],"google-resourceviews1_beta2":[C[947],C[727]],"pallet-generic-asset":["FRAME &v @0 ^G asset ^A",C[728]],"flame":["a profiling / flamegraph @1",C[8]],"sentry-contrib-native-sys":["Unofficial $L @6 to @4 Sentry &M ^N @0 @3.","0.3.1"],"play":["$8 @X @s a means of playing audio @z.","0.5.3"],"influent":[C[1037],"0.5.3"],"xidlehook":["xautolock rewrite in @3, @7 a few extra features",C[13]],"mit-lint":["Lints @0 commits parsed @7 mit-commit.","2.2.4"],"doubly":["Doubly linked lists in @f","1.1.3"],"imag-todo":["Part of @4 imag @F ^m: imag-todo @D",C[12]],"ethcontract-derive":["Proc @e @0 $E $l-$M @6 to Ethereum smart contracts.",C[99]],"dasp":["A @8 ^R @4 fundamentals @0 ^p @7 audio PCM DSP.",C[16]],"ambisonic":["Compose @5 play 3D audio.","0.4.1"],"beanstalkd-cli":["Command $D Beanstalkd ^4",C[2]],"firmata":["A @c @1 @0 communicating @7 &N @u @4 firmata @9",C[3]],"aes-gcm":["Pure @3 @2 of @4 AES-GCM (Galois/Counter Mode)Authenticated Encryption @7 Associated Data (AEAD) Cipherwith optional architecture-specific hardware acceleration","0.9.4"],"msp430g2553":["Peripheral $X @x @0 MSP430G2553 microcontroller",C[3]],"google-manufacturers1-cli":[C[729],C[34]],"relative-path":["Portable, relative paths @0 @3.","1.5.0"],"winapi-x86_64-pc-windows-gnu":["Import &4 @0 @4 x86_64-pc-windows-gnu target. Please don't $d this @8 directly, depend on winapi instead.",C[2]],"spirit":["Helper to create well behaved daemons @7 @I-reconfiguration @j","0.4.21"],"exonum-cryptocurrency-advanced":["Exonum blockchain example ^5 a cryptocurrency.","1.0.0-rc.1"],"$P_logs":["^r ^N @0 @3 - Amazon CloudWatch Logs @ 2014-03-28",C[27]],"gtmpl":["$8 Golang Templating &R @0 @3","0.7.1"],"tui":["A @1 to $j rich $o user interfaces or dashboards",C[72]],"uchardet-sys":["Low-@C, unsafe @m to uchardet $5 detector","2.0.3"],"probe-rs":["A $b of on chip debugging &1 to communicate @7 microchips.",C[16]],"constellation-rs":["Constellation is a @k @0 @3 (nightly) @l aides in @4 $O, debugging @5 deployment of distributed programs.",C[320]],"alpm":["@3 @6 @0 libalpm","2.1.3"],"google-dfareporting3":[C[730],C[954]],"mt-dom":["A @1 @0 $E patches as a result diffing virtual DOM ^0","0.12.3"],"nom5_locate":[C[731],"0.1.1"],"nanomsg":["A high-@C, @3 idiomatic @h $G nanomsg.","0.7.2"],"vtable-macro":[C[732],"0.1.3"],"clru":["An LRU cache @2 @7 constant $z $B @5 weighted semantic","0.5.0"],"pnet_@a":[C[801],"0.28.0"],"actix-postgres":["PostgreSQL $T @0 Actix @k.",C[1]],"csa":["A Shogi game @M/&9 @1 in CSA @G.","0.6.1"],"nametable_^H":["Code ^1 @0 $E @5 managing lots of $c literals. Use this together @7 nametable.","0.1.3"],"xdg":["A @1 @0 storing @5 retrieving @z according to XDG Base Directory specification","2.4.0"],"bit-iter":["Iterate forward or backwards &6 @4 positions of set bits in a word.","0.1.6"],"advisory-lock":["A cross-@N advisory $0 lock.",C[1]],"jod-thread":["std::&d $i joins on drop by default.",C[4]],"tstr_^B_@a":["@v detail of tstr.",C[8]],"frounding":["@3 @8 to change fpu @5 sse rounding mode.","0.0.4"],"dwt-systick-monotonic":["RTIC Monotonic implemenation @n on Systick @5 DWT",C[59]],"hexagon-e":["$8 HexagonE virtual machine","0.1.5"],"dipstick":["A $I, all-purpose &q @1 decoupling instrumentation @t reporting backends. Similar to popular &H frameworks, but @7 counters, timers @5 gauges. Can combine outputs (e.g. log + graphite), do sampling, aggregation, periodical publication, etc.","0.9.0"],"rocket":["Web @k @7 a focus on usability, security, extensibility, @5 speed.",C[113]],"dynfmt":["A @8 @0 formatting $p dynamically.","0.1.5"],"gobject-subclass":["Infrastructure @0 GObject subclassing in @3",C[5]],"sc-executor-wasmtime":["Defines a `WasmRuntime` @l uses @4 Wasmtime JIT to execute.","0.9.0"],"dropshot_endpoint":["@e $2 by dropshot consumers @0 registering handlers","0.5.1"],"rustix-bl":["Backend @0 cervisia $U","0.5.0"],"pmem":["@3 abstractions &6 @4 NVM @p &z://pmem.io",C[0]],"chrono-humanize":["Human-&E $z expressions - similar to Python arrow.humanize",C[5]],"tini":["A tiny ini @R @1","1.2.0"],"treeflection_@b":["#[@b(Node)] @e @0 @4 Treeflection @1",C[2]],"@d_jwt":["@d JWT encoder/decoder","1.2.1"],"aligner":["^W corrects subtitle timings given a second correct subtitle","0.1.6"],"python27-sys":["$L Declarations @0 Python 2.7","0.7.0"],"zipWith":["An iterator @0 zipping @7 a combination @Y",C[3]],"dbus-bytestream":["&M D-Bus @2","0.1.4"],"kompact":["Kompact is a @3 @2 of @4 Kompics component model combined @7 @4 Actor model.",C[12]],"reflection":[C[733],"0.1.3"],"async-oauth2":["An $n OAuth2 flow @2",C[1]],"libpq":["Safe $W @0 libpq","2.0.0"],"evm-stateful":["Stateful evm-rs wrapped @7 tries.",C[17]],"texture_packer":["A texture packing @1 @u @4 skyline heuristic","0.23.1"],"saphir_@e":["Macro ^1 @0 &z @U @k","2.1.2"],"vte-rs":["@3 @6 @0 @4 VTE 3 @1",C[2]],"partners":["Switch $t &l git authors",C[5]],"uvm_install_@F":["Base @8 @7 installer @y to install Unity3D @5 its @j modules",C[2]],"devloop":["A ^4 to help @7 repetitive commands during &D.",C[8]],"deadpool-lapin":["Dead @d @J pool @0 lapin","0.9.0"],"tbc":["Texture Block Compression (BCn)",C[1]],"libcryptsetup-sys":["$L @6 to @4 libcryptsetup @1",C[459]],"ssh-parser":["&B @0 @4 SSH @9","0.5.0"],"dsdl_@i":["A nom @i @0 @4 DSDL (Data $V description @L) $2 when transmiting &6 uavcan","0.1.3"],"mwalib":["A @1 to simplify &3 Murchison Widefield Array (MWA) raw visibilities, voltages @5 metadata.",C[13]],"cargo-cmd":["Alias any shell @D in $r Cargo.toml. It's $C npm scripts, but @0 @S.","0.3.1"],"windows-error":["@p to provide @h &6 ^6 errors","1.1.0"],"harfbuzz_rs":["A high-@C @m to HarfBuzz, exposing its most important $7 in a $M manner @u @3.","2.0.1"],"tailscale-api":["An @x @c @0 Tailscale","0.1.5"],"xio_jobset":["XIO jobset datatypes",C[15]],"texture-synthesis-cli":["A CLI @0 texture-synthesis","0.8.2"],"corsware":["CORS @0 Iron According to @4 Spec",C[3]],"ckb-vm":["CKB's Virtual machine",C[734]],"shadowsocks-rust":[C[592],"1.11.2"],"nlprule-build":["Build &1 @0 a $I, low-resource Natural &R Processing @5 Error Correction @1.","0.6.4"],"metrics-exporter-prometheus":["A &q-^i exporter @l serves a Prometheus scrape endpoint.","0.6.1"],"oxcable":["A signal &u @k @0 making music @7 @3.","0.5.1"],"afterparty-ng":[C[735],"0.4.2"],"ffsend":["Easily @5 securely share @z @t @4 @D line.A fully featured Send @c.","0.2.74"],"ndk":["Safe @3 @6 to @4 Android NDK",C[2]],"cargo-crev":["Distibuted Code REView @O @0 verifying security @5 quality of Cargo &c","0.21.1"],"as_@b_^u":["private @b @E $2 by abi_stable @5 structural.","0.10.2"],"gen-epub-book":["Generate an ePub book @t a @d plaintext descriptor","2.3.2"],"twitter-api":["Unofficial @3 @1 @0 @4 Twitter @x.","0.5.0"],"$P_cloudsearchdomain":["^r ^N @0 @3 - Amazon CloudSearch Domain @ 2013-01-01",C[27]],"crypto2":["^w ^3",C[4]],"ipfs-unixfs":["UnixFs ^0 @j",C[3]],"mdl_monkey":["A @3 @2 of @4 Monkey $m @L @t <&Y://interpreterbook.com/>.","1.0.0"],"arabic_reshaper":["Reconstruct Arabic sentences to be $2 in @P @l doesn't @j Arabic script.","0.4.1"],"libffi-sys":[C[736],"1.3.0"],"str":["$c ^h","0.1.4"],"turbo":["A @1 of convolutional encoder/decoders.","0.4.2"],"clone_all":["clone_all!(my,variables,@7,long,names);","0.1.1"],"firestorm":["A low overhead intrusive flamegraph profiler.","0.5.0"],"wit-writer":["Binary encoder @0 @4 $x Interface Types @G",C[3]],"actix-web-codegen":["Routing @5 @I @a @0 Actix Web","0.5.0-beta.5"],"freeimage-sys":["@3 $j &w @0 freeimage. Licensed as GPL3, GPL2 or FreeImage License","3.18.2"],"spatial":["An N-Dimensional R-^0 family spatial ^0 @T","0.2.0-rc2"],"coldsnap":["A @1 @5 @D-$D @m @0 uploading @5 downloading Amazon EBS snapshots",C[9]],"synstructure_^7_$3":["Helper ^7 $3 @0 synstructure doctests",C[0]],"splr":["A modern CDCL SAT solver in @3",C[15]],"tendermint-p2p":["$8 Tendermint P2P stack in @3.",C[354]],"simple-bind":["One-$D non-exhaustive binds","0.1.6"],"tun":["TUN device creation @5 ^a.","0.5.3"],"gettext-rs":["Safe @6 @0 gettext","0.7.0"],"libipld-macro":["ipld @e",C[28]],"falcon_capstone":["Capstone @6 in @f","0.5.0"],"yn":["Natural @L &u @1 @0 yes or no ^V","0.1.1"],"yaserde_@b":["Serialization @5 &9 @a","0.7.1"],"$6_scan":["easily deserialize ^V @t ^E input","0.4.1"],"rustc-ap-rustc_ast":["^W published $4 of @4 @X `rustc_ast` in @4 @f-lang/@f repository @t commit 9a27044f42ace9eb652781b53f598e25d4e7e918 $8 publishing script @0 this @8 lives at: &Y://github.com/alexcrichton/&K-auto-publish",C[215]],"vrp-scientific":["An ^h logic @0 solving scientific VRP","1.11.5"],"sp-runtime-interface":["Substrate @I @m","3.0.0"],"pathfinder_^D":["Text layout @0 @4 Pathfinder vector ^T renderer","0.5.0"],"basn1":["Binary ASN.1 $5 @5 ^P no-std @1 (DER)","0.1.3"],"clipboard_x11":["A @1 to obtain $X to @4 X11 clipboard","0.3.1"],"deribit":["@3 @c @0 deribit. Please look at tests/examples @0 detail usage at current stage.",C[9]],"text-diff":[C[737],C[2]],"junction":["@1 @0 ^p @7 NTFS junctions",C[3]],"k8055":["@3 @j @0 @4 Vellemann K8055 USB IO Card",C[5]],"unsegen_signals":["Use unsegen's input ^F to raise signals on @4 usual key combinations",C[1]],"codenano":["A @1 @0 editing DNA molecular designs","0.5.1"],"rake":["@3 @2 of Rapid Automatic Keyword Extraction (RAKE) $1","0.3.3"],"gstreamer-rtp":["@3 @6 @0 GStreamer Rtp @1",C[26]],"drum":["A bitcask &X ^x ^S @0 @f.","0.4.4"],"cargo-screeps":["Build ^4 @0 deploying @3 WASM @V to Screeps game servers","0.3.3"],"turtle":["Learn @4 @3 @L by $Z animated drawings!","1.0.0-rc.3"],"context-allocator":["context-^l","0.2.3"],"libp2p-gossipsub":[C[738],C[739]],"as_num":["Checked conversions $t Rust's numeric @g.","0.2.5"],"ironcore-search-helpers":["Search &w @0 ^p @7 encrypted ^V, particularly on @4 IronCore @N.",C[4]],"derive-aktor":["Create actors in @f @7 a @b @e","0.1.6"],"cranelift-codegen-meta":["Metaprogram @0 cranelift-^H @V @B @1","0.77.0"],"&d_profiler":["A &d profiling @1 @l outputs profiles in @4 chromium trace @G.",C[1]],"vte_^n_state_changes":["Proc @e @0 $E VTE state changes","0.1.1"],"lzzzz":["Full-featured liblz4 $W @0 @3.",C[7]],"$M_dns":["SAFE DNS @x @1","0.6.0"],"sysfs-rs":["@f lib @0 &2 @7 sysfs","0.0.12"],"nasbench":["A @3 port of NASBench: &Y://github.com/@A-research/nasbench",C[4]],"behrens-fisher":["Find @4 difference of @4 means of two Normal distributions",C[0]],"pemmican":["Pemmican Web Framework",C[2]],"cargo-sphinx":["Cargo &i @0 $K @5 publishing Sphinx documentation to GitHub Pages.","1.3.1"],"trigram":["Trigram-@n $c similarity @0 fuzzy matching.","0.4.4"],"metrics-observer-json":["A &q-@F ^i observer @l outputs ^k.","0.1.1"],"cogset":["&W @T of clustering ^3. Includes k-means, DBSCAN @5 OPTICS.",C[3]],"ns-dns-tokio":["Name &t @2 @0 abstract-ns @l uses domain name @O (DNS) run in $v event loop",C[2]],"stringplus":["A ^t @8 @0 dealing easily @7 @3 $p.",C[0]],"daemonize-me":["@3 @1 to ease @4 task of $Z daemons on unix-$C systems","1.0.0"],"bitbang-hal":["Implements ^b-hal $3 by bitbanging",C[9]],"uds_windows":["Unix Domain Sockets @0 ^6!","1.0.1"],"openssh":["SSH through OpenSSH","0.8.1"],"rustats":["A statistical @1",C[4]],"termios-sys":["@3 $L layer @0 libc's termios @y","0.0.6"],"lms":["A $I @5 reliable alternative to rsync @0 synchronizing local @z",C[2]],"prototty_monolithic_^x":["@K @2 of prototty_storage::Storage, $i uses an in-memomry key/&5 store, storing persistently in a user-provided way","0.27.0"],"hglib":["Mercurial @D @U @c @1.","0.1.1"],"apng":["APNG Encoder. But it is tiny yet.",C[3]],"msi_klm":["MSI keyboard light &F @1 @5 $w",C[1]],"dbui-service":["Application logic $2 by @4 dbui @U","0.0.64"],"srv-shim":["Drop-in SRV record @j @0 legacy systems.",C[4]],"reducer":["A predictable reactive @k @0 @3 apps","3.0.0"],"&Z":["@K CLI &Z &1","0.6.2"],"galvanic-assert":["A comprehensive set of matcher-@n assertions @5 expectations @0 easier testing.Supports checking properties of ^M, objects, enum variants, &C, panics, @5 more.Stuctural matching enables you to integrate matchers ^d struct decompositions @0 less @V repetition.It's &x to &0 $r own matchers @0 assertions too.This @8 will be part of @4 galvanic ^7 @k (in &D).You can also $d @4 assertions in another ^7 @k of $r choice.Works on: stable, beta, @5 nightly","0.8.7"],"cargo-bitbake":["Generates a BitBake recipe @0 a @X utilizing meta-rust's classes.","0.3.15"],"ddc-hi":["High @C DDC/CI monitor control",C[2]],"qapi-codegen":["QEMU QAPI ^H ^t","0.6.0"],"win32_filetime_^u":["Conversion ^u @t, @5 to Windows's FILETIME, SYSTEMTIME, etc ...",C[5]],"typed-slab":["Typed @h @0 Slab","0.1.4"],"unicorn":[C[740],"0.9.1"],"extprim":["Extra primitive @g (u128, i128)","1.7.1"],"cult":["cubeb @6 @0 @f","0.0.3"],"parity-bytes":["byte @E @0 Parity",C[4]],"env-test-util":["Just a @d ^4 to manipulate ^K variable in tests.","1.0.1"],"termcodes":["A @1 @0 styled &Z in ANSI terminals.","0.0.1"],"concurrent-queue":["Concurrent multi-producer multi-consumer queue","1.2.2"],"guillotiere":["A dynamic 2D texture atlas ^l @7 $I deallocation.","0.6.2"],"futures-core":[C[741],"0.3.17"],"axum":["Web @k @l focuses on ergonomics @5 modularity","0.2.8"],"cargo-version-sync":["Cargo &i @0 keeping @4 $4 ^M in sync @7 Cargo.toml","0.0.5"],"nuclei":["Proactive IO & @I @O","0.1.3"],"multiqueue":[C[742],C[9]],"rill-protocol":["$8 RillRate @9.","0.41.0"],"fluvio-cluster":["Tools @0 installing @5 managing Fluvio clusters","0.7.1"],"varisat":["A CDCL @n SAT solver (@1)",C[8]],"serenity":["A @3 @1 @0 @4 Discord @x.","0.10.9"],"unbounded-gpsd":["A basic @1 to $X gpsd @l uses no C @6.","0.4.4"],"diener":["&m diener is a ^4 @0 easily changing [Substrate](&Y://github.com/paritytech/substrate), [Polkadot](&Y://github.com/paritytech/polkadot) or [BEEFY](&Y://github.com/paritytech/grandpa-bridge-gadget) &m versions","0.4.2"],"mysql-proxy":["Extensible MySQL Proxy",C[5]],"cargo-find":["Find $R @t @D $D","0.1.6"],"shotgun":["Minimal X screenshot $w","2.2.1"],"uds":["A unix domain socket @8 @l supports abstract addresses, fd-passing @5 seqpacket sockets.","0.2.6"],"crates-mirror":["Crates.io mirror",C[5]],"frida-gum-sys":["@3 ^8 @6 @0 Frida Gum","0.3.1"],"shellexpand":["Shell-$C expansions in $p","2.1.0"],"libfsntfs-sys":["@3 @6 @0 libfsntfs (&Y://github.com/libyal/libfsntfs)","0.2.5"],"qt_ritual_$u":[C[912],C[2]],"emacs_^F":["Raw $L @0 emacs-^F",C[43]],"ec-gpu":["Traits @0 field @5 eliptic curve $B on GPUs",C[0]],"trk-io":["TrackVis (*.trk) reader @5 writer",C[42]],"tetsy-trie-root":["tetsy in-$g patricia trie $B","0.16.1"],"mdo":["Monadic do notation @0 @f @u @e @5 duck typing",C[1]],"nbytes":["@3 compile-$z evaluation of byte unit conversions",C[0]],"jupiter":["Jupiter is a @1 @0 ^R high-throughput ultra low latency services via @4 RESP @9 as defined by Redis.","1.4.1"],"^l_^S":["@Q is a copy of @4 unstable allocator_api(&Y://github.com/@f-lang/@f/issues/32838) @5 of parts of @4 unstablealloc feature.Usable @7 stable @f, but requires 1.33.","0.6.0"],"pistoncore-event_loop":["A Piston event loop @0 games @5 interactive @P","0.53.0"],"amethyst-imgui":["imgui @1 @0 amethyst","0.7.1"],"eytzinger-map":["array/vec @n map @u eytzinger search $1","0.1.1"],"juniper-eager-loading":[C[743],"0.5.1"],"smush":["&O @f $F $G a variety of ^C codecs.","0.1.5"],"zcash_script":["ffi @6 to zcashd's zcash_script @1","0.1.6-alpha.0"],"tenshi":["Unbound local-zone @B @0 curated hosts @z",C[8]],"dlopen_@b":["&n @a @0 @4 dlopen @8.","0.1.4"],"tauri-hotkey":["Cross @N global hotkey @x",C[4]],"serde-xdr":["XDR @M @5 &9 @0 Serde","0.6.0"],"swc_eq_ignore_@a":["^o @0 EqIgnoreSpan @5 TypeEq.",C[0]],"minion":["Crate @0 managing cancellable services","0.1.3"],"impose":["Minimalist audio lib",C[1]],"sp-version":["Version ^F @0 @4 Substrate @I; @W a @Y @l returns @4 @I $4.","3.0.0"],"packed_simd_2":[C[744],"0.3.6"],"rocket_contrib":["Community contributed &4 @0 @4 Rocket &e @k.","0.4.10"],"solana-net-utils":[C[745],"1.8.1"],"ramhorns":[C[746],C[28]],"epitech_^S":["A @1 @0 &2 @7 @4 EPITECH intranet @x",C[3]],"expectorate":["@p @0 comparing &Z to $0 contents @7 @d updating","2.0.1"],"cart-tmp-nga":[C[890],C[0]],"i-o":["Input @5 &Z","0.4.7"],"noble-lottery":["FABRIC Participation Lottery Noble","2.0.0"],"iced-x86":["iced-x86 is a blazing $I @5 correct x86/x64 disassembler, assembler @5 instruction decoder $A in @3","1.15.0"],"cargo-download":["Cargo &i @0 downloading @8 sources",C[4]],"get_if_addrs-sys":["get_if_addrs @r @8","0.1.1"],"&K_$4_@I":["A @1 @0 querying @4 $4 of @4 &K ^2 $2 in @I",C[3]],"chrono-english":["parses @d English dates, &X by &j date @D","0.1.6"],"unrar":["list @5 extract RAR archives","0.4.4"],"prometheus-utils":["^e built on top of @4 prometheus @8","0.5.1"],"pleco":["A blazingly-$I chess @1.","0.5.0"],"ya-sb-util":["Golem Service Bus: @x @5 Router $u @V",C[3]],"pitch_calc":["A @1 @0 musical pitch conversions! @W @y @5 &P @0 converting $t frequency, midi-step @5 letter-octave.",C[28]],"aovec":["Append-only, concurrent vector","1.1.0"],"inth-oauth2":["OAuth2 @c",C[72]],"easy-csv-derive":["$q @e @8 @0 &x-csv.",C[9]],"cargo-shim":["A ^t @1 @0 &2 @7 Cargo",C[3]],"atk-sys":["$L @6 to libatk-1",C[24]],"lib_composite":["@3 compatibility @1 @0 @4 composite operating @O","0.7.0"],"rust-clacc":["@3 implementanion of a CL universal accumulator","0.5.0"],"osaka-dns":[C[253],C[1]],"amadeus-types":[C[179],"0.4.3"],"secure-reliable-transport":[C[747],C[5]],"luhnmod10":["Fast @5 @d in-place @2 of @4 luhn (mod 10) $1.","1.1.0"],"forgiving-semver":["Semantic $4 @R @5 comparison. Fork of &Y://docs.rs/@8/semverwhich supports @R outside of semver spec, e.g. \"1.0\" -> \"1.0.0\".",C[16]],"bitfield-register":["@3 bitfield @1 @0 low-@C registers",C[5]],"cattlerustler":["A @1 @0 localized calendar ^A.",C[8]],"openapi":[C[748],"0.1.5"],"ovr-mobile-sys":["@3 @6 @0 Oculus VR Mobile ^N",C[2]],"actix":["Actor @k @0 @3",C[28]],"luis_@r":["$L @6 @0 Microsoft LUIS @x.","0.4.5"],"bls12_381":["@v of @4 BLS12-381 pairing-&E elliptic curve construction","0.6.0"],"literally":["Macro literals @0 members of std::&C","0.1.3"],"refinery-macros":[C[326],"0.7.0"],"goat":["better sleep",C[13]],"rocket_sync_db_pools_^H":["$q @a @0 rocket_sync_db_pools.",C[59]],"task-local-extensions":[C[749],"0.1.1"],"simavr-sys":["@H to @4 'simavr' AVR simulator","1.5.9"],"micromath":["Embedded-&E math @1 featuring $I floating point approximations(@7 &7 @V size) @0 $u arithmetic $B, trigonometry,2D/3D vector @g, statistical analysis, @5 quaternions.Optimizes @0 $J @5 &7 @V size at @4 cost of precision.","2.0.0"],"atomic":["&W Atomic @h $l","0.5.0"],"async-datagram":["Async datagram $3.","3.0.0"],"legion_^H":["#[@O] ^B @e @0 @4 legion @1",C[2]],"@b_pod":["Implement @4 Pod $y safely @7 a @b @e.","0.1.1"],"mkstemp-rs":["Safe @h &6 mkstemp @Y @t libc","1.0.0"],"bugreport":["Collect @O @5 ^K $f @0 bug reports","0.4.1"],"celes":["@3 @8 @0 ^a ISO 3166-1.Each country has a three digit @V, two letter @V, three letter @V,full state name, @5 short english aliases.","2.1.0"],"swf-tree":["Abstract Syntax Tree (AST) @0 SWF @z","0.9.0"],"bcmp":["bcmp offers $I $Q @w comparison ^3 to enumerate $u substrings, unique substrings or determine a patch set","0.4.1"],"envvar":["@Q tiny @8 @s @4 `var()` @Y $i is @4 same as `std::env::var()` but @4 `NotPresent` variant of `VarError` @s @4 name of @4 missing ^K variable","0.1.3"],"rasn-ldap":["Data @g @0 Lightweight Directory Access ^c.","0.4.2"],"syscoin":["General purpose @1 @0 @u @5 interoperating @7 Syscoin @5 other cryptocurrencies @7 AUXPOW @j.","4.16.1"],"imag-ids":["Part of @4 imag @F ^m: imag-ids @D",C[12]],"discord":["Client @1 @0 @4 Discord @x","0.8.1"],"auto_enums":["A @1 @0 to allow &l return @g by automatically ^8 enum.","0.7.12"],"lmdb-sys":[C[372],C[7]],"diffr-lib":["An @2 of Myers diff $1.","0.1.3"],"drop_guard":["$8 drop_guard @8 enables you to implement @4 Drop $y on any type.So you can run a closure on any &5 running out of scope.",C[5]],"virtual-dom-rs":["A standalone Virtual DOM creation, diffing @5 patching @2","0.6.14"],"ansi_colour":["Representation of ansi colours","0.5.3"],"knox":["structured secret vault encrypted through GPG",C[2]],"cortex-m-rtfm":["Real Time For @4 Masses (RTFM): a concurrency @k @0 $K real $z systems","0.5.3"],"grid_search_cardinal":["Collection of search ^3 @0 uniform-cost cardinal grids","0.3.1"],"stun3489":["An @2 of STUN (RFC 3489) @u $v","0.5.0"],"ncollide_testbed3d":["3D testbed @0 ncollide.","0.5.0"],"bitcoind":["Utility to run a regtest bitcoind ^I, useful in $T $S ^K",C[42]],"reproto-backend-rust":[C[89],"0.3.36"],"stateright":["A model checker @0 ^5 distributed systems.","0.28.0"],"dia-args":["For ^a @D $D arguments","0.54.1"],"oxidized-json-checker":["A pushdown automaton low $g ^k bytes ^L checker",C[9]],"schema_registry_converter":["Encode/decode @w @t/to kafka @u @4 Confluent Schema Registry","2.1.0"],"assert_hex":["display assert panics in hexadecimal {:#x?} @G",C[8]],"trie-rs":["Memory ^Z trie (prefix ^0) @1 @n on LOUDS","0.1.1"],"$M_vault":["@v of @4 'Vault' node @0 @4 SAFE Network.","0.20.2"],"css-autoprefix":["@W a @1 similar to [autoprefixer](&Y://github.com/postcss/autoprefixer) to prefix $r CSS depending on @4 versions of &e browsers, but in @3. Currently needs nightly @f as a &m (phf) needs nightly. Makes $d of caniuse.com's ^Q via caniuse-$6 (ie offline).","0.0.5"],"rustfm":["A @3 @m @0 Last.fm APIs",C[4]],"heim-derive":["&n @a @0 heim $R",C[59]],"libimagentrytag":[C[39],C[12]],"encoding-index-singlebyte":["Index tables @0 various single-byte character encodings",C[461]],"criterion-plot":["Criterion's plotting @1","0.4.4"],"alloc-no-stdlib":["A dynamic ^l @l may be $2 @7 or ^Y @4 stdlib. @Q allows a @X @7 nostd to allocate $g dynamically @5 be $2 either @7 a custom ^l, items on @4 stack, or by a @X @l wishes to simply $d Box<>. It also @s options to $d calloc or a mutable global variable @0 pre-zeroed $g","2.0.3"],"spinner":["A @d @1 to add more interactivity to $r $o @P.","0.5.0"],"mouscache":["A @8 to store object either in redis or in $g","0.5.6"],"lightspeed_$0_store":[C[209],"0.40.1"],"lsp-server":["&W LSP @U scaffold.","0.5.2"],"embedded-time":["Fully defined, inter-operable, ergonomic, @5 $I human-$z units (both duration @5 rate @g) @7 hardware timer $F @5 software timers.","0.12.1"],"turbulence":["Tools to provide @M, multiplexing, optional reliability, @5 optional ^C to a game's networking.",C[1]],"hash-chain":["A tiered hashmap @5 hashset @2 @l allows @0 easily representing lexically scoped variables",C[9]],"send-cell":["Immutable $g region @7 @I Send checking","0.1.4"],"mio-extras":[C[750],"2.0.6"],"telemetry":["Telemetry is a mechanism $2 to capture &q in an $U, to later store @4 @w locally or upload it to a @U @0 statistical analysis.","0.1.3"],"cargo-dephell":["Analyzes a project's third-party &c.","0.5.1"],"$I_log":["@3 @J log High-$J $n &H","1.3.32"],"yowsl":["Yet another ^6 Subsystem @0 &j tweaker","0.1.3"],"kiss3d_conrod":["Fork of conrod_core (an &x-to-$d, 100% @3, extensible 2D GUI @1) ^i @7 WASM @5 Kiss3D.","0.64.0"],"exempi":["Safe @3 @6 to Exempi 2.4.","2.5.0"],"pyth-client":["pyth price oracle @w $k @5 example usage",C[8]],"circle_boundary":["A @3 @1 to calculate @4 boundary of a circle, coordinates given in bitmap style discrete integers.","0.1.19"],"cfile-rs":["A @h $G @4 C FILE struct @0 @f","0.3.3"],"convenience":["Useful @E @l are not part of @4 ^E @1.",C[0]],"file-descriptors":["Wrapper $G @4 $u kinds of (mostly &j) $0 descriptors, including sockets, pipes, FIFOs, terminals, serial ports, character &N, epoll, POSIX message queues, timerfd, eventfd, signalfd fanotify @5 inotify","0.9.1"],"stb_truetype":["A straight translation of @4 font loading @V in stb_truetype.h @t C to @3.","0.3.1"],"draw_state":["Graphics state blocks @0 gfx-rs",C[7]],"authorize":["@p @7 ^G authorization routines.","0.1.4"],"hotspot":["$8 @X @s an @m to HotSpot.","0.6.0"],"cli-setup":["Helper @y @0 installing manpages alongside a @D-$D ^4.","0.2.7"],"watchman_@c":["a @c @0 @4 Watchman $0 watching &t","0.7.1"],"ikon":["A robust, flexible @3 @k @0 $Z encoders @5 decoders @0 various icon formats.","0.1.0-beta.16"],"jazz":["Jazz Virtual Machine",C[8]],"passert":["Pretty/Power assertion @a @0 @f",C[3]],"asciifolding":["ascii folding @1",C[0]],"eventstore":["Official EventStoreDB gRPC @c","1.0.0"],"lapin-futures-tls-api":["Integration of tls-^S @7 lapin-@Z","0.19.1"],"kiss3d":["3D ^T $a @0 @3.","0.31.0"],"ckb-db-schema":["$8 schema include constants define @4 low @C ^Q column families.",C[302]],"sysfs-class":["@3 @1 @0 viewing /@r/class in an object-oriented @G","0.1.3"],"drone-cortex-m":["ARM® Cortex®-M @N @8 @0 Drone, an Embedded Operating System.",C[17]],"owned-singleton":["Owned singletons",C[0]],"datafusion-arrow":[C[751],"0.12.4"],"fringe":[C[786],"1.2.1"],"poi":["A pragmatic point-free theorem prover assistant",C[88]],"newtype_array":["A @e to help ^5 @4 ^E derived $3 on newtype arrays","0.1.6"],"serde-lite-derive":["@v of #[@b(Deserialize, Serialize, Update)] @0 $6-lite",C[3]],"mosquitto-client":["@3 @m to @4 Mosquitto MQTT broker @c","0.1.5"],"itertools-num":["Numerical iterator &1. Extra iterators @5 iterator &P @5 @y.","0.1.3"],"tokio-mockstream":["A fake ^L @0 $S ^9 @P backed by buffers.","1.1.0"],"windows-permissions":["Safe @3 @6 to ^6 permissions APIs","0.2.4"],"gethostname":["gethostname @0 all platforms",C[5]],"juniper_hyper":["Juniper GraphQL $T @7 Hyper",C[7]],"zoom":["A particle physics @1 @7 extensive generics","1.5.0"],"xplane_$Y":["@W @g @5 a @e @0 $Z X-Plane plugins","0.1.1"],"libgssapi":["A $M $W to gssapi","0.4.6"],"yaml-rust":["$8 missing YAML 1.2 @i @0 @f","0.4.5"],"inherent":["Make $y &P callable ^Y @4 $y in scope","1.0.0"],"doc-cfg":["#[doc_cfg(..)] ^t &U",C[0]],"postage":["An @J channel @1","0.4.1"],"rocket_okapi":["OpenAPI (AKA Swagger) document ^1 @0 Rocket @P",C[752]],"ockam_key_exchange_xx":["$8 Ockam Noise XX impementation.","0.29.0"],"alpaga-test":["Crate @0 $S purposes","0.1.5"],"frame-benchmarking":["Macro @0 benchmarking a FRAME @I.","3.1.0"],"sourcegen-cli":["In-place @3 source @B CLI $w.",C[2]],"ark-marlin":[C[753],C[1]],"no-panic":["Attribute @e to require @l @4 ^2 prove a @Y can't ever panic.","0.1.15"],"fdp":["Safe @6 @0 libFDP (Fast Debugging ^c)","0.2.5"],"latex2mathml":["Convert LaTeX equations to MathML","0.2.3"],"sgx_rand":[C[21],"1.1.1"],"spade":["Spatial datastructures $C r-trees @5 delaunay triangulations @0 @f.","1.8.2"],"egui_&e":["@H @0 compiling egui @V to WASM @0 a &e page",C[23]],"rsa-der":["Crate to encode @5 decode public RSA keys @u DER",C[5]],"emitbrown":["event emitter @n on @A swisstable","0.1.9"],"plane-split":["Plane splitting","0.17.1"],"friedrich":["Gaussian Process Regression.","0.4.1"],"khronos-egl":[C[960],"4.1.0"],"pistoncore-event":["A @1 @0 flexible ^G event threading",C[2]],"morq":["TDD/BDD assertion @m",C[1]],"hoare":["Design by contract style assertions @0 @3","0.1.1"],"nu-data":[C[484],"0.39.0"],"hdrsample":[C[971],"6.0.4"],"portable-pty":["Cross @N pty @m","0.5.0"],"sprs-ldl":["Sparse cholesky factorization","0.9.0"],"zfilexfer":["File transfer &6 ZMQ sockets.","0.0.2"],"sp-inherents":[C[1058],"3.0.0"],"osstrtools":["Additional ^t &P @0 OsStr",C[8]],"delta":["An &x to $d timer @1.",C[5]],"mojang-api":["A @d @1 @0 interfacing @7 @4 Mojang @x. Includes full @j @0 @J/await.","0.6.1"],"rutebot":["Telegram bot ^S @6","0.7.4"],"aio-limited":["Rate-limited @J I/O.","0.1.1"],"nu":["A new $l of shell","0.39.0"],"noble-staking":["FABRIC noble staking","2.0.0"],"ease":["A @1 @0 $K REST clients","0.6.1"],"gd32vf103-pac":["Peripheral $X @x @0 GD32VF103 chips",C[2]],"try_@t":["TryFrom @5 TryInto $3 @0 failable conversions @l return a Result.",C[9]],"half_edge_mesh":["A basic @2 of @4 half-edge mesh @w $V. It has a bunch of @4 @y you probably want in a half-edge mesh, but probably not all of them. I'm intending to add more &P @5 mutation techniques, as I need them @0 other projects or as I think of them. Pull requests welcome!","1.1.8"],"storage-proofs-core":["Core parts @0 proofs of ^x","10.1.0"],"r2d2-oracle":["Oracle @j @0 @4 r2d2 connection pool","0.5.0"],"transistor":["Crux Datalog DB Client","2.1.1"],"rurust":["High @C Ruby VM @6",C[3]],"async-global-executor-trait":["executor-$y @2 @0 @J-global-executor","2.0.1"],"conrod_vulkano":[C[214],"0.75.0"],"bfi":["Brainfuck @0 $r machine learning needs",C[8]],"deadqueue":["Dead @d @J queue",C[3]],"palette":["Convert @5 manage colors @7 a focus on correctness, flexibility @5 ease of $d.","0.6.0"],"celery":["@3 @2 of Celery",C[754]],"netlify_toml":["netlify_toml is a @i @0 netlify.toml @z",C[279]],"filetime":["Platform-&f accessors of timestamps in File metadata","0.2.15"],"binary-heap-plus":["Enhanced $4 of std::&C::BinaryHeap @l supports max, min, @5 custom-order heaps.","0.4.1"],"maybe-uninit":["MaybeUninit @0 friends of backwards compatibility","2.0.0"],"bevy_render":["@W &S $7 @0 Bevy Engine","0.5.0"],"pest_@b":[C[1085],"2.1.0"],"trie-root":[C[755],C[26]],"near-sdk":[C[756],C[100]],"stm":["@v of Software transactional $g. Allows composable atomic $B.",C[2]],"vault":["A @i @0 Company of Heroes 2 replay @z. Valid @0 replays ^8 since UKF release ($4 19545).","1.0.0"],"mlc":["$8 markup link checker (mlc) checks @0 broken links in markup @z.","0.14.3"],"dotrust":["@H @5 &4 @0 &2 @7 .NET @t @3",C[1]],"tc-network":["Tetcore ^9 @9",C[7]],"purescript_waterslide_@b":["Generate Purescript @g @t $r @3 @g (^B @a)","0.3.1"],"lossyq":["@Q is a concurrent single publisher, single consumer queue @7 fixed length, @l never blocks @4 writer.","0.1.19"],"tesseract":["Higher-@C @6 @0 Tesseract OCR","0.9.0"],"curve25519-dalek":[C[562],C[359]],"$6_tokenstream":["A $6 deserializer @0 ^B-@e TokenStreams",C[4]],"solana-noop-program":["Solana Noop ^U","1.8.0"],"bit_crusher":["Rusty Jen Down Sampling DSP",C[3]],"rust-netmap":[C[757],"0.0.7"],"mj":["My Journal - personal ^4 to capture ideas, work @7 journals, notes @5 tasks in $r favourite ^D $EDITOR.","0.4.3"],"validator_@g":["Basic $l @0 validator @5 validator_derive",C[24]],"nitrokey-test":["Supporting ^7 infrastructure @0 @4 nitrokey @8 @5 others @u it.","0.5.0"],"lebe":["Tiny, dead @d, high $J endianness conversions @7 a ^G @x","0.5.1"],"rand_mt":["Reference Mersenne Twister &L &a generators.","4.0.1"],"djpass":["A @D-$D ^4 to ^n @5 verify passwords $2 in Django ^g.","1.1.0"],"tokio-io-timeout":["Tokio &r $i apply timeouts to IO $B","1.1.1"],"tiff-encoder":["@3 @1 @0 $Z TIFF @z.",C[9]],"flexbuffers":["Official FlexBuffers @3 @I @1.","2.0.0"],"air-interpreter-interface":["Interface of @4 AIR interpreter","0.7.0"],"display-interface-i2c":["&W I2C @2 @0 display interfaces",C[2]],"redacted_debug":["A &7 $e @e to allow redacting sensitive $f ^Y losing @4 ease of $d of deriving Debug",C[0]],"postgres-shared":["Internal @8 $2 by postgres @5 postgres-$v","0.4.2"],"const-cstr":["Create &k C-^i $p @t @3 $c literals.",C[1]],"binjs_meta":["Part of binjs-ref. Tools @0 manipulating grammars. You probably do not want to $d this @8 directly unless you're $O an encoder, decoder or @i @B @0 binjs.","0.5.4"],"hexf-parse":["Parses hexadecimal floats (see also hexf)",C[5]],"semaphore":["Atomic/lock-free counting semaphore",C[2]],"cynic-codegen":["Codegen @0 cynic - a GraphQL query &I & @w mapper @0 @3","0.15.1"],"epoxy":["@3 @6 @0 libepoxy, an OpenGL @Y pointer &F.",C[0]],"scryfall":["A @h $G @4 scryfall magic @4 gathering ^S","0.9.0"],"might-be-minified":["Qualified guesswork @0 telling minified javascript @t regular javascript",C[1]],"governor":["A rate-limiting @2 in @3",C[9]],"mat3":["matrix 3x3",C[5]],"symphonia-utils-xiph":["Project Symphonia @E @0 Xiph codecs @5 formats.",C[2]],"darwinia-bridge-primitives":["Darwinia bridge $9","0.3.3"],"sn_transfers":["@v of Transfers in @4 Safe Network.","0.8.1"],"hdlc":["@3 @2 of HDLC @7 @j of @4 IEEE ^E","0.2.5"],"tk-http":["A full-features $n ^s @2 @0 $v-rs stack, including websockets.","0.3.9"],"amplify_syn":["Amplifying syn capabilities: ^t @y @0 $Z ^B @e &4","1.1.6"],"uncon_@b":["&n $7 @0 unchecked conversion $3.","1.1.1"],"cast":["Ergonomic, checked cast @y @0 primitive @g",C[1]],"vorbis":["High-@C @6 @0 @4 official libvorbis @1.",C[0]],"yukikaze":["Beautiful @5 elegant ^s @1.","1.0.10"],"azure_sdk_auth_aad":["@3 &r $G Microsoft Azure REST APIs - Azure OAuth2 ^t @8",C[27]],"ffimage":["Foreign @Y image ^a","0.9.0"],"sugar":["@3 syntax sugar &C.",C[3]],"reproto-repository":["reproto repository","0.3.36"],"elf2tab":["Compiles @t ELF to TAB (a Tock Application Bundle @u @4 Tock Binary Format)",C[7]],"transformation-pipeline":["Middleware-esque @x @0 transforming @w.",C[0]],"imgui-gfx-renderer":["gfx renderer @0 @4 imgui @8",C[7]],"debruijn":["Tools @0 DNA sequences: ^Z k-mer manipulation, De Bruijn graph construction @5 compaction @5 ^a of DNA $p","0.3.4"],"num-macros":["deprecated -- $d num-@b","0.1.40"],"openvpn-parser":["&B @0 @4 OpenVPN @9","0.6.0"],"keeshond":["A $I @5 fun 2D game $a @0 @3",C[74]],"stream-cipher":[C[978],C[979]],"ringtail":[C[758],C[1]],"staticvec":["Implements a fixed-capacity stack-allocated Vec alternative backed by an array, @u const generics.","0.10.8"],"str-concat":["Concatenate two adjacent $c slices",C[3]],"poem-derive":["^o @0 poem","1.0.3"],"tentacle":["Minimal @2 @0 a multiplexed p2p ^9 @k.",C[362]],"routerify-cors":["A Routerify &G $i enables CORS.","2.0.0"],"sniffglue":["Secure multithreaded packet sniffer","0.13.1"],"pruefung":["Checksums in ^X @3, @7 no_std available, ^5 @4 Hasher $y.",C[5]],"ip_^9_table-deps-treebitmap":["Forked $4 of $I IPv4/IPv6 lookup trie.","0.5.0"],"tab-api":["@4 $u ^S ^F @0 @4 tab $o multiplexer","0.5.6"],"prometheus":["Prometheus instrumentation @1 @0 @3 @P.",C[15]],"genawaiter-proc-macro":["$e @e @0 generators (genawaiter)","0.99.1"],"cow":["A Copy-On-Write Triemap","0.0.8"],"serde-indexed":["Derivation of Serialize @5 Deserialize @l replaces struct keys @7 numerical indices.",C[0]],"seda_bus":["A Staged Event-Driven Architectural message bus",C[3]],"couchbase-sys":["@3 @6 to @4 libcouchbase C Couchbase ^N.",C[759]],"rust-iteratorcomprehensions":["A comprehension syntax @0 iterators implemented as @a.","0.3.4"],"mp4parse_fallible":["Fallible replacement @0 Vec","0.0.3"],"&a_prefix":["@p @0 numeric prefixes (kilo, giga, kibi).",C[2]],"runng-sys":[C[760],"1.2.4-rc.1"],"wiggle-generate":["@p @8 @0 wiggle @V @B.",C[53]],"common-multipart-rfc7578":[C[761],"0.3.1"],"google-doubleclickbidmanager1-cli":[C[878],C[54]],"tui-react":["TUI widgets @u a react-$C paradigm, allowing mutable component state @5 render properties.",C[72]],"content-security-policy":["Will parse @5 validate Content-Security-Policy @C 3","0.4.2"],"autopilot":["A @d, cross-@N GUI automation @1 @0 @3.",C[2]],"iron":["Extensible, Concurrency Focused Web Development in @3.","0.6.1"],"image2":["A @d image &u @1","1.1.1"],"dbpulse":["@D $D ^4 to monitor ^Q $J","0.2.4"],"google-oslogin1_beta-cli":[C[762],C[382]],"catflap":["Creates a TCP socket @5 passes its descriptor as an env variable","1.2.0"],"cargo-coverage-annotations":["Ensure annotations in @V match actual coverage.","0.2.7"],"transaction":["transaction $F @1 (a.k.a. transaction monad)",C[5]],"fltk":[C[763],"1.2.10"],"gstreamer-rtsp-server-sys":["$L @6 to libgstrtspserver-1.0",C[26]],"bio-seq-algos":["\"bio-seq-algos\", @p of Algorithms about Biological Sequences","0.1.17"],"hunspell-sys":["@H to @4 hunspell C @x.",C[8]],"nanocurrency-protocol":["^c @V @0 @4 Nano cryptocurrency","0.7.0"],"mio-misc":["Miscellaneous components @0 $d @7 Mio","1.2.1"],"$P_sagemaker_@I":["^r ^N @0 @3 - Amazon SageMaker Runtime @ 2017-05-13",C[27]],"time-point":["Less opaque, thin, $l @g","0.1.1"],"qmc":["Quantum Monte Carlo simulations in @3","2.20.0"],"ark-serialize":["A @1 @0 serializing @g in @4 arkworks ecosystem",C[1]],"dlv-list":["Semi-doubly linked list implemented @u a vector",C[1]],"fastmod":["Fast, partial replacement @0 codemod (find/replace ^4 @0 programmers)","0.4.2"],"superluminal-perf":["Superluminal Performance @x @0 adding user events to profiler captures","0.1.1"],"emojicons":["Parse :emoji: notation to unicode representation.","1.0.1"],"hoodlum-parser":["&B @0 @4 hoodlum @8.","0.5.0"],"libsm":[C[764],"0.4.1"],"embedded-websocket":["A ^O websocket @1 @0 ^b systems (no_std)",C[7]],"sc-client-db":["Client $N @l uses RocksDB ^Q as ^x.","0.9.0"],"playbook":["YAML driven Docker DevOps","0.4.2"],"libxlsxwriter-sys":["@3 $W of libxlsxwriter","1.1.1"],"num_cpus":["Get @4 &a of CPUs on a machine.","1.13.0"],"sciter-rs":["@3 @6 @0 Sciter - Embeddable HTML/CSS/script $a (cross-@N desktop GUI toolkit). Also capable @7 DirectX / OpenGL.","0.5.57"],"yamlate":["A cross-@L interpreter @1 @l dynamically evaluates YAML attributes given variable @6","0.1.1"],"scale-core":["low @C datastructures @5 $7 @0 compiling @0 SCALE via &s",C[4]],"bswap":["A @3 @1 @0 byte-swapping integers, pointers, @5 slices.","1.0.0"],"modular-bitfield-impl":["Bitfields @0 &o @l allow @0 modular $d of enums.","0.11.2"],"serializable_enum":["Two @a @0 ^5 @M / &9 @0 enums containing no @w variants",C[2]],"gudev-sys":["@3 ffi @m @0 gudev, @4 glib @j @1 @0 libudev.",C[7]],"webrtc-sctp":["A ^X @3 @2 of SCTP",C[2]],"nu-source":["A source $c characterizer @0 Nushell","0.39.0"],"gotham_&G_diesel":["A Gotham Middleware @l @s $X to a Diesel connection via an R2D2 pool to allow other Middleware @5 Handlers to @o @7 a ^Q.","0.3.1"],"uni-gl":["Unrust &8/&s openGL compatibility layer",C[4]],"swears":["Use swears, not curses",C[60]],"async-mutex":["Async mutex","1.4.0"],"tink-mac":["MAC $7 @0 @3 port of Google's Tink cryptography @1",C[5]],"readline_rs_compat":["A minimal readline @1 @h @0 @4 @3 $m @L.","0.1.9"],"wigner-symbols":["Exact Clebsch–Gordan coefficients @5 Wigner 3-jm, 6-j, @5 9-j symbols @0 coupling @5 recoupling angular momenta in quantum mechanics","0.5.0"],"tetsy-memory-db":["in-$g @2 of tetsy-^z-db, useful @0 tests","0.26.0"],"sc-rpc-server":["Substrate RPC servers.","3.0.0"],"azure_sdk_^x_table":["@3 &r $G Microsoft Azure REST APIs - Table ^x @8","0.41.3"],"drone-cortex-m-macros":["$q @a @0 drone-cortex-m.",C[17]],"statistical":["A @d statistics @1","1.0.0"],"generic-arrayvec":["Interop $t @4 arrayvec @5 generic_array $R","0.3.1"],"assembler":["An ^Z run-$z assembler @0 X86-64 @V @l is intended to be immediately executed",C[12]],"cfb8":["&W 8-bit Cipher Feedback (CFB8) mode @2.","0.7.1"],"scout":["Friendly fuzzy finder @0 @4 @D $D","2.5.1"],"message_filter":["A size or $z @n message filter @l takes any ^G $l as a key @5 will drop keys after a $z period, or once a maximum &a of &y is reached (LRU Cache pattern).","0.6.0"],"endiannezz_@b":["Addition to endiannezz @8 @l allows @b(Io)",C[8]],"bbqueue":["A SPSC, lockless, no_std, &d $M, queue, @n on BipBuffers","0.5.0"],"riscv-rt-macros":["Attributes re-exported in `riscv-rt`","0.1.6"],"pircolate":["&B @5 @m @0 IRCv3 &y.",C[5]],"combid":["Generate numeric identifiers","0.6.1"],"filebuffer":["Fast @5 @d $0 &3",C[2]],"cpuid-bool":["&T: replaced by @4 `cpufeatures` @8",C[979]],"uninitialized":["Opt-in unsafe uninitialized $g","0.0.2"],"typeable":["Exposes Typeable, @0 getting TypeIds at @I.",C[4]],"cairo-rs":["@3 @6 @0 @4 Cairo @1","0.14.9"],"revent":["Event @O @0 @3","0.29.0"],"neptune":["Poseidon hashing &6 BLS12-381 @0 Filecoin.","5.1.0"],"yaserde":["Serialization @5 &9 @1","0.7.1"],"libaster":[C[770],"1.2.1"],"rslint_rowan":["A @d threadsafe fork of rowan @0 @4 rslint ^g",C[13]],"deno_&Q":["Web Cryptography @x @2 @0 Deno","0.37.0"],"tugger-windows":["Collection of packaging $9 specific to ^6","0.7.0"],"dicom-object":["A high-@C @x @0 &3 @5 manipulating DICOM objects",C[2]],"snarkos-objects":["Objects @0 a decentralized operating @O","1.1.4"],"nakacli":["CLI @c @0 Nakadi",C[2]],"cargo-results":[C[765],"0.6.2"],"libreauth":["Collection of &1 @0 user authentication.","0.14.1"],"term_input":["Input ^a @0 xterm-^i terminals","0.1.5"],"mangadex-scraper":["scrapes manga off of mangadex.org","0.5.2"],"spawn-ptrace":["Spawn a ^I @7 ptrace enabled.",C[4]],"tracing-fmt":["A `&g` subscriber @l formats @5 logs trace @w. Moved to @4 `&g-subscriber` @8.","0.1.1"],"exonum-time":["$8 $z oracle &t @0 Exonum.","1.0.0"],"crypto-msg-parser":["Parse websocket &y @t cryptocurreny exchanges","1.6.2"],"multiaddr":[C[297],C[15]],"cql":["Apache Cassandra @c @1","0.0.3"],"parity-hash":["A $b of fixed-size byte array representations","1.2.2"],"seance":["A session @1","0.5.0"],"exonum_bitcoinrpc":["Bitcoin RPC @x @c.","0.6.0"],"flatbuffers-verifier":["Support @1 @0 @4 flatbuffers verifier ^8 by cfbc.",C[5]],"math-text-transform":["Transform greek letters, latin letters, or decimal digits intocertain variants @t @4 mathematical alphanumeric symbolsUnicode block (U+1D400–U+1D7FF). For example to bold, italic,script or double-struck.","0.1.1"],"ocl-core-vector":["OpenCL-^i vector primitive @g.",C[0]],"holochain_persistence_$0":["persistence @0 content addressable ^x @5 entity &U &5 indexes. A $0 @O @n @2 @u directory hieraarchies to navigate @w.","0.0.18"],"anymap2":[C[766],C[15]],"onionsalt":["$8 onion salt encryption scheme","0.4.2"],"numtoa":["Convert ^M ^d stack-allocated byte arrays","0.2.4"],"viewimg":["OpenEXR @5 HDR image viewer",C[7]],"dmsort":["Fast adaptive sorting @0 when most of $r @w is already in order.dmsort can be 2-5 times faster than Rust's default sort when more than 80% of @4 elements are already in order.","1.0.1"],"filenamegen":["Shell-style filename ^1 aka globbing","0.2.4"],"sv-parser":["SystemVerilog @i @1 fully complient @7 IEEE 1800-2017",C[17]],"build-helper":["@Q @8 contains convenience &P @0 $j scripts.","0.1.1"],"bevy_property_@b":["&n @T @0 bevy_property",C[1]],"tower-service":["Trait representing an $n, request / response @n, @c or @U.","0.3.1"],"rustfft":["High-$J FFT @1 $A in ^X @3.","6.0.1"],"schnorr":["Schnorr Signatures","0.0.20"],"swc_visit":[C[767],"0.2.8"],"bevy_tasks":["A task executor @0 Bevy Engine","0.5.0"],"unicode-joining-type":["Fast lookup of @4 &h Joining Type @5 Joining Group properties","0.5.0"],"botan-sys":["$L @h @0 Botan cryptography @1","0.8.1"],"fscmp":["Utility @0 comparing @z/directories","0.2.16"],"oysterpack_built":["OysterPack Built",C[9]],"cbor_event":["$8 CBOR Event @1. There are no &c, all platforms are supported @5 it is &s ^i.","2.1.3"],"netstat":[C[768],"0.7.0"],"rusteam":["Manage $r games on @4 $o","0.5.2"],"pretty-good":["RFC4880 (OpenPGP Message Format) @1",C[8]],"curl-sys":["&M @6 to @4 libcurl @1","0.4.49+curl-7.79.1"],"maidsafe_vault":[C[769],"0.1.1"],"llhd":["A Low Level Hardware Description @l acts as a foundation @0 $K hardware design &1.",C[23]],"snarkvm-models":["Models @0 a decentralized virtual machine","0.0.6"],"uuid-sys":["Contains @Y $h @0 @4 ^6 @x @1 uuid. See winapi @0 @g @5 constants.","0.1.3"],"cosmwasm-bignumber":["Bignumber @1 @0 cosmwasm ^g","2.2.0"],"geoip":["@H @0 @4 GeoIP @1","0.0.14"],"validate":["A @1 to easily validate user input","0.6.1"],"vmaf-sys":["@3 VMAF $L","0.0.10"],"modbus":["Pure @3 modbus @2","1.0.4"],"diesel_derives_$3":["Traits @0 diesel_derives_extra",C[3]],"@Z_ringbuf":["Mock Type ^5 AsyncRead/AsyncWrite @0 $S @5 examples.","0.3.1"],"ceph-safe-disk":["Ceph disk safety removal ^4","0.1.6"],"aster-proxy":[C[770],"1.3.4"],"lyon_extra":["Various optional @E @0 @4 lyon @8.","0.17.1"],"near-sdk-sim":["NEAR Simulator & cross-contract $S @1",C[100]],"winpty":["Safe @f @6 @0 winpty",C[3]],"swc_ecma_transforms_$S":[C[151],"0.42.0"],"hwclock":["Manages @4 &j hardware clock through ioctls",C[3]],"ra_ap_rust-analyzer":["A @L @U @0 @4 @3 $m @L","0.0.79"],"parking_lot_mpsc":["A port of @4 @3 std::sync::mpsc ^F, @u @4 parking_lot concurrency @g rather than those in @4 ^E @1.","0.1.5"],"deque":["A (mostly) lock-free concurrent work-stealing deque",C[9]],"wstr_impl":["Private @e @T @0 compile-$z UTF-16 (wide) $c literals.",C[3]],"tshell":["TShell, a @D ^0 @k @7 autocompletion @5 contextual help",C[8]],"num":["A $b of numeric @g @5 $3 @0 @3, including bigint,complex, rational, range iterators, ^G integers, @5 more!",C[2]],"shaman":["A ^X-@3, cross-@N @2 of various $u hashing ^3.",C[0]],"dia-assert":["Helps @7 confirming user decision on important tasks","3.0.0"],"sc-finality-grandpa":["Integration of @4 GRANDPA finality gadget ^d substrate.","0.9.0"],"devtimer":["A @d @1 @0 benchmarking @V","4.0.1"],"riker-timer":["A message scheduler @0 Riker","0.2.4"],"libwgetj":["@p @0 @u wget to grab Java distributions","1.0.5"],"readfilez":["Quite $I $0 to slice &3","0.2.4"],"ensure":["Ensure target state of an object","0.3.1"],"secp256k1":[C[771],"0.20.3"],"vec-arena":[C[772],"1.2.0"],"rust-gmp-kzen":[C[634],"0.5.1"],"geos":["@3 @6 @0 GEOS C @x","8.0.3"],"tokio-executor-trait":["executor-$y @2 @0 $v","2.0.1"],"contrast":["Calculate contrast $t two colors",C[0]],"embedded-can":["An ^b Controller Area Network (CAN) $F layer",C[1]],"grenad":["Tools to sort, merge, &0, @5 read immutable key-&5 pairs.","0.4.1"],"mongodb":["$8 official MongoDB ^j @0 @3","2.0.1"],"windows_gen":[C[773],C[74]],"calamine":["An Excel/OpenDocument Spreadsheets reader @5 deserializer in ^X @f",C[43]],"log4rs-routing-appender":["A routing appender @0 log4rs",C[2]],"kaws":["Create @5 manage Kubernetes clusters on ^r @u Terraform.",C[13]],"qcollect":["Collections; Collection-Traits.","0.4.1"],"amethyst_@F":["Amethyst @F",C[99]],"opengles":["@3 @6 @0 OpenGL ES 2.0",C[4]],"bee-crypto":["Cryptographic $9 of @4 IOTA @9","0.2.1-alpha"],"fernet":["An @2 of fernet in @3.","0.1.4"],"gbm-sys":["Bindgen ^8 unsafe libgbm @h",C[3]],"uhid-virt":["Interface to &j UHID (user-space HID transport drivers)","0.0.5"],"alga":[C[774],"0.9.3"],"azure_sdk_@F":[C[930],"0.43.7"],"glsl-quasiquote":["$8 glsl! $e @e, ^R quasiquoting of @4 glsl @8.","6.0.0"],"$6_dhall":["Dhall @j @0 $6",C[12]],"ecdsa":["Signature @5 elliptic curve @g ^R interoperable @j @0 theElliptic Curve Digital Signature Algorithm (ECDSA)","0.12.4"],"blunder":["Dumb @8 to make ^q ^a &x",C[5]],"frunk_derives":["frunk_derives contains @4 custom derivations @0 certain $3 in Frunk.",C[2]],"askama_actix":["Actix-Web $T @0 Askama templates",C[17]],"alt_$6":[C[775],"1.0.119"],"slice_as_array":["Cast slices to arrays","1.1.0"],"nettle":["@3 @6 @0 @4 Nettle ^w @1","7.0.2"],"async-nats":["An @J @3 NATS @c",C[12]],"config_$0_handler":["Create, read @5 &0 ^k-encoded config @z.",C[16]],"google-cloudkms1-cli":[C[776],C[777]],"mrq":[C[778],C[0]],"httpbin":["A httpbin reimplementation in @f. Works as a @1 @5 as a standalone webserver $Q. (not affiliated to @4 original httpbin)","0.3.3"],"unbound":["Wraps libunbound; an @2 of a DNS resolver including cache @5 DNSSEC validation.","0.6.0"],"background-jobs":["Background Jobs implemented @7 actix @5 @Z",C[13]],"test-strategy":["$q @e to easily &0 higher-order strategies in proptest.",C[4]],"lsm303dlhc":["A @N &f ^j to @m @7 @4 LSM303DLHC (accelerometer + compass)",C[3]],"io-lifetimes":["A low-@C I/O ownership @5 borrowing @1","0.3.1"],"mock_me_^7_context":["$8 Test Context Crate is private @5 should not be consumed by any external APIs. It is needed by @4 mock_me @8.",C[4]],"sane-fmt":["Opinionated @V formatter @0 TypeScript @5 JavaScript",C[16]],"x86":["@p to ^U x86 (amd64) hardware. Contains x86 specific @w $V descriptions, @w-tables, as well as convenience @Y to call assembly instructions typically not exposed in higher @C languages.","0.43.0"],"mri-sys":["@3 @6 to Mat'z Ruby interpreter","0.2.5"],"wrapped2d":["@3 $W @0 Box2D","0.4.1"],"event":["A mulit-threaded event loop @0 @3",C[5]],"gtmpl_@b":["&n @0 gtmpl_value","0.5.0"],"wasm-bindgen-shared":["Shared @j $t &s-bindgen @5 &s-bindgen ^y, an internaldependency.","0.2.78"],"ncollide_$e":[C[111],"0.9.1"],"wasmer-derive-near":[C[781],"2.0.1"],"mbedtls":["Idiomatic @3 @h @0 MbedTLS, allowing you to $d MbedTLS @7 only safecode while being able to $d such great @3 features $C ^q ^a andclosures.Building on MbedTLS's focus on ^b $d, this @8 can be $2 in a no_stdenvironment.","0.8.1"],"cargo-todox":["Ensure source @z in a @S ^g do not contain TODOX issues.",C[8]],"minimq":["A minimal MQTT5 @c designed @0 no_std platforms",C[2]],"skim":["Fuzzy Finder in @f!","0.9.4"],"ico_$g":["Experimental custom $g &F @5 handle-@n resource &F.","0.1.23"],"direct3d11":["Safe Direct3D 11 @6. Currently just a minimal @2 mostly foruse @7 direct2d, but I plan to flesh out @4 @x eventually. If you'reexcited by this ^g @5 would $C to contribute, pull requests are alwaysopen.","0.3.0-alpha2"],"panic-abort":["Set panicking behavior to abort",C[9]],"unic-bidi":["UNIC — &h Bidirectional Algorithm","0.9.0"],"pathbuftools":["Additional ^t &P @0 PathBuf",C[4]],"p2p":["NAT Traversal @0 P2P communication","0.6.0"],"gstreamer-sdp-sys":["$L @6 to libgstsdp-1.0",C[26]],"hrtf":["HRTF (Head-Related Transfer Function) audio signal processor","0.7.0"],"fs_extra":["Expanding opportunities ^E @1 std::fs @5 std::io. Recursively copy folders @7 recept $f about ^I @5 much more.","1.2.0"],"ra_ap_stdx":["TBD","0.0.79"],"atomicwrites":["Atomic $0-writes.",C[1]],"beach_map":["@v of a slotmap",C[5]],"containers":["Containers","0.9.12"],"is-root":["A @d @1 to detect whether you are root/admin or not",C[4]],"xmlJSON":["Conversions @t XML to ^k",C[3]],"google-container1":[C[906],"2.0.8+20210314"],"notify":["Cross-@N filesystem notification @1","5.0.0-pre.13"],"pathsearch":["Search @0 @z in PATH",C[3]],"grin_wallet_util":["Util, @0 ^G @E @5 to re-export grin $R","5.0.1"],"hotmic":["high-speed &q $b @1","0.8.2"],"t4rust-derive":["t4rust is a compile-$z templating-$a $i allows you to &0 plain rustcode in $r template.",C[1]],"midly":["Fast MIDI @i @5 writer both @0 @z @5 standalone MIDI events","0.5.2"],"rust-cleverbot":["A @3 @m @0 Cleverbot.","0.1.1"],"docx-rs":["A .docx $0 writer @7 @3/$x.","0.2.14"],"humthreads":["Threads @0 humans",C[3]],"smd_@e":["A @8 @0 @4 smd! @e","0.0.7"],"serde-with-expand-env":["Parse ^K variables in $6 @8 @u deserialize_with.","1.1.0"],"init_@7":["Helper $y to initilize an array @7 a @Y","1.1.0"],"ruget":["Alternative to wget $A in @3","0.4.3"],"remain":["Compile-$z checks @l an enum, struct, or match is $A in sorted order.",C[8]],"tokio-core":["Core I/O @5 event loop $9 @0 $n I/O in @3. Foundation forthe rest of @4 $v $R.","0.1.18"],"vhost":["a ^X @f @1 @0 vdpa, vhost @5 vhost-user",C[3]],"rltk":["A CP437/ASCII $o @1 @5 &w to make $Z roguelike games in @3 &x. Similar to libtcod, but aiming to be @3-&8.","0.8.1"],"gene-seq-intersections":["Count intersections $t genes @5 sequences","0.3.1"],"error-chain-mini":["^q-chain @0 minimalist",C[3]],"ark-bls12-381":["$8 BLS12-381 pairing-&E elliptic curve",C[1]],"physical_constants":["CODATA recommended ^V of physical constants","0.4.1"],"ckb-fixed-hash":["Provide several @d fixed-sized ^z @w $l @5 their &k constructors.",C[302]],"$P_s3":["^r ^N @0 @3 - Amazon @K Storage Service @ 2006-03-01",C[27]],"reformation_@b":["reformation @b @8","0.5.2"],"mutiny":["Some @d &1 @l can be $2 to ^7 ^I monitoring systems",C[3]],"nanovg":["Idiomatic @6 to @4 NanoVG @1","1.0.2"],"fixedvec":["A heapless $4 of @4 @3 vector $l.","0.2.4"],"grin_store":[C[157],"5.1.0"],"libc":["Raw $L @6 to @N &4 $C libc.","0.2.105"],"unix-named-pipe":["Ease creation of named pipes on Unix @N",C[3]],"uncased":["Case-preserving, ASCII case-insensitive, no_std $c @g.","0.9.6"],"tough-kms":["Implements ^r KMS as a key source @0 TUF signing keys","0.3.4"],"$6_tuple":[C[779],"0.5.0"],"faster-rs":["@3 @h @0 FASTER by Microsoft Research",C[16]],"&z_req":["@d @5 ^O ^s @c @7 built-in HTTPS @j","0.8.1"],"google-webfonts1":[C[1064],C[33]],"shoop":["Shoop is a high-speed encrypted $0 transfer ^4 reminiscent of scp. It uses SSH to bootstrap authentication @5 encryption, then uses UDT (a reliable @9 @t @4 2000s) instead of TCP (a reliable @9 @t @4 1970s).","0.1.1"],"plaintalk":["A @1 @0 @R @5 $E PlainTalk","0.0.15"],"rustc-ap-arena":["^W published $4 of @4 @X `arena` in @4 @f-lang/@f repository @t commit 10c2316a6bf7cf9255f991e06e82ce692e6f84d5 $8 publishing script @0 this @8 lives at: &Y://github.com/alexcrichton/&K-auto-publish","662.0.0"],"phloem":["CPU/GPU Data Blob @0 Machine Learning","0.3.1"],"glide":["Cross-@N media player @n on GStreamer @5 GTK+","0.5.8"],"bitrw":["Bit Read/Write","0.8.3"],"alpm-rs":["aplm @6 @5 @h @0 @f","0.1.24"],"soio":[C[780],"0.2.3"],"concourse-resource-derive":["Helper create @0 a derivation @0 concourse-resource",C[0]],"exonum-derive":["$q @a @0 Exonum @k.","1.0.0"],"colourado":["A &7 @5 minimalistic @1 to ^n a &L color palette",C[3]],"cereal_@a":["Syntax ^h @0 @4 cereal @1","0.3.5"],"^f_libra_config":["Libra config",C[10]],"verilog-filelist-parser":["A @1 to parse a Verilog Filelist @5 return a list of @z, include directories @5 defines",C[4]],"wasmer_enumset_@b":["An ^J ^t @8 @0 enumset. Not public @x. Wasmer fork to work $G `syn` issue. @Q will not be updated once @4 issue is fixed upstream.","0.5.0"],"cached_^B_@e":[C[666],"0.7.1"],"wasmer-derive":[C[781],"2.0.0"],"gstreamer-base-sys":["$L @6 to libgstbase-1.0",C[26]],"wasm-pack":["📦✨ $r favorite @f -> &s workflow ^4!",C[12]],"detect-lang":["&R detection given paths @5 &p","0.1.5"],"^q_@b":["^o @0 deriving Error @T through custom_derive!.",C[3]],"mdns":["A multicast DNS @c library.Supports discovery of any mDNS device on a LAN.","3.0.0"],"appendix":["Append-only, on-disk key-&5 index","2.0.0"],"libcgroup":["libcgroup @6",C[1]],"google-admin2_email_migration":["A @q @1 to @o @7 admin (@9 email_migration_v2)","0.1.11+20150303"],"interfaces2":[C[782],"0.0.5"],"lexical-sort":["Sort &h $p lexically","0.3.1"],"onig":["@3-Onig is a set of @3 @6 @0 theOniguruma regular expression @1. Onigurumais a modern regex @1 @7 @j formultiple character encodings @5 regex syntaxes.","6.3.1"],"inkwell_internals":["Internal @e @8 @0 inkwell",C[2]],"sgx_demangle":[C[21],"1.1.1"],"snarkvm-posw":["Proof of Succinct Work circuit @2 @n on [KB20]","0.7.9"],"nb-connect":["Non-blocking TCP or Unix connect","1.2.0"],"xirr":["XIRR @0 @3",C[8]],"alcibiades":["A @k @0 $O chess engines in @3",C[1]],"rc":["A copy of std::rc @l runs on stable @3 @7 weak references","0.1.1"],"tracing-error":["^e @0 enriching errors @7 `&g`.",C[3]],"unit_^7_^u":["@3 unilities @0 unit tests","0.1.3"],"intern":["@p @0 interning $p @5 other kinds of @w. (WIP)",C[3]],"libfuzzy-sys":["&M @6 to @4 libfuzzy @1",C[3]],"yup-oauth2":["An oauth2 @2, ^R @4 'device', '&t account' @5 'installed' authorization flows","6.0.0"],"argh":["&n-@n argument @i optimized @0 @V size","0.1.6"],"gl_$u":["&O glue @0 &4 @u gl-rs",C[0]],"hyperscan-sys":[C[783],C[8]],"rust-visitor":["Visitor $y @0 @3 AST @n on @f-analyzer",C[1]],"boxext":["Extensions to @4 `Box` $l","0.1.6"],"bcrypt-pbkdf":["bcrypt-pbkdf password-@n key derivation @Y","0.7.1"],"lalrpop":[C[784],"0.19.6"],"counted-array":["Macro @0 declaring fixed-size arrays ^Y counting elements by hand. Supports lazy_static.",C[4]],"hex_d_hex":["HexDHex is a @3 Crate @l encodes @5 decodes byte @w to @5 @t its hexidecimal representation. For instance, one may wish, on ocasion @l is, to translate a utf8 or ASCII $c of hex byte @w such as \"0F12FF00A7\" to a vector of u8s [15,18,255,0,167] or vise versa.","1.0.1"],"rio_xml":["RDF/XML @i @5 serializer","0.6.1"],"euclid":["Geometry $9","0.22.6"],"tls-parser":["&B @0 @4 TLS @9",C[16]],"lair_keystore_^S":["secret lair private keystore @g",C[785]],"cobalt":["Low @C, UDP @n networking @1.",C[74]],"deploy-temp-fringe":[C[786],"1.2.4"],"gpu-sw":["GPU-SW, GPGPU-enabled SW $1","1.0.4"],"futures-channel-preview":[C[787],C[19]],"lucet-module":["A structured @m @0 Lucet modules","0.6.1"],"newline-converter":["Newline byte converter @1",C[3]],"uabs":["Absolute &5 @Y @l returns an unsigned integer","3.0.0"],"deno_websocket":["@v of WebSocket @x @0 Deno","0.28.0"],"turbine_scene3d":["Scene &S @0 @4 Turbine $a","0.33.0"],"draw":["A &7 2D drawing @1",C[1]],"unic-ucd-ident":["UNIC — &h Character Database — Identifier Properties","0.9.0"],"meshopt":["@3 ffi @6 @5 idiomatic @h @0 mesh optimizer","0.1.9"],"dyn-clone":["Clone $y @l is object-$M","1.0.4"],"jemalloc":["binds to jemalloc",C[1]],"postgres-derive-codegen":["Deriving ^H @j @0 Postgres enum, domain, @5 composite @g",C[8]],"db-key":["A datatype intended to be $2 as a ^Q key.",C[0]],"@b_more":["Adds #[@b(x)] @a @0 more $3","0.99.16"],"tokio-tower":["Bridging @4 @9 gap $t Tokio @5 Tower","0.6.0"],"async-stream":["&b streams @u @J & await notation",C[9]],"build-info-proc":["Part of @4 $j-info @8: @Q @8 @s @4 ^B-@a.","0.0.24"],"build-info-build":["@W @4 @w consumed by @4 $j-info @8. Use as a $j-&m.","0.0.24"],"strict":["NonEmptyVec, a vec guaranteed to hold at least one element","0.1.4"],"lm3s6965":["Interrupt @6 @0 @4 LM3S6965 microcontroller","0.1.3"],"cucumber_@f_^H":["Code ^1 @0 `cucumber_rust` @8.","0.9.0"],"vec_box":["A single @e to create a vec of boxed elements, @0 $y objects","1.0.0"],"libspa-sys":["@3 $L @6 @0 libspa","0.4.1"],"tin":["tin: a statically structurally typed embeddable $m @L",C[1]],"tokio-postgres-openssl":[C[788],C[59]],"cupi":["Cuprum Pi is a GPIO $X @1 $A on @3 @0 @4 Raspberry Pi board.",C[0]],"paste-impl":["@v detail of @4 `paste` @8","0.1.18"],"xdr-codec":["XDR encode/decode @I @j. Pairs @7 xdrgen $i generates @V @t specs.","0.4.4"],"lmdb-rs-m":["LMDB @6","0.7.7"],"fast-float":["Fast floating-point &a @i.",C[3]],"dasp_ring_buffer":["@K fixed @5 bounded ring buffers @0 audio PCM DSP.",C[16]],"tabular":["Plain ^D tables, aligned automatically","0.1.4"],"bit":["A @1 $i @s &w to manipulate bits @5 bit ranges.","0.1.1"],"fast-threadpool":["Thread-pool @2 optimized to minimize latency.",C[1]],"zellij-utils":["A $w @1 @0 Zellij @c @5 @U",C[95]],"ini":["A @d @e built on top of configparser to load @5 parse ini @z. You can $d this to &0 @3 programs $i can be customized by end users easily.","1.3.0"],"abci-rs":["A @3 @8 @0 $Z ABCI @P",C[17]],"iptables":["@3 @6 @0 iptables","0.4.3"],"lpc82x-pac":["Low-@C register mappings @0 @4 NXP LPC82x series of ARM Cortex-M0+ $s","0.8.1"],"result-inspect":["Adds @4 missing Result::inspect() @Y",C[3]],"rsa-export":["Export keys ^8 by @4 \"rsa\" @8 ^d @4 PKCS#1 or PKCS#8 @G","0.3.3"],"buffered_offset_reader":["Buffered $0 read_at (pread)","0.6.0"],"serde-redis":["Serde &9 @0 redis-rs",C[16]],"speedometer":["Measure throughput per second.",C[8]],"deuterium_$Y":["Compiler $Y @0 Deuterium ORM","0.5.3"],"stable-vec":["A Vec-$C $b $i guarantees stable indices @5 features O(1)element deletion (semantically similar to `Vec>`). Useful forallocations in graphs or similar @w $k.",C[2]],"geohash":["Geohash @2 @0 @3.",C[28]],"libhandy-sys":["$8 @r part of @4 @f @6 @0 libhandy",C[789]],"md2":["MD2 ^z @Y","0.9.0"],"stack":["DSTs @5 arrays on @4 stack!",C[2]],"inquerest":["A complex url parameter @i @0 rest filter queries","0.3.1"],"os-sync":["@K synchronization $9 @n on OS semaphore","0.3.3"],"jrsonnet-evaluator":["jsonnet interpreter","1.0.0"],"tetsy-scale-codec-derive":["Serialization @5 &9 @b @e @0 Tetsy SCALE Codec","2.0.1"],"identicon":["A port of GitHub's identicon $1 to @3.",C[5]],"contract-metadata":["@p defining metadata @0 smart contracts on substrate",C[2]],"component_group":["Defines @4 ComponentGroup $y @0 managing a group of specs::Component instances @5 moving them $t specs::Worlds","3.0.0"],"schemafy_@F":[C[690],"0.6.0"],"endiannezz":["Zero &c @1 @0 I/O endianness on high-@C","0.6.5"],"xplr":["A hackable, minimal, $I TUI $0 explorer","0.15.2"],"slowloris":["$8 slow loris attack, now implemented in @3!","1.2.0"],"sparse-merkle-tree":["Sparse merkle ^0 implement in @f","0.5.2"],"nt":["A NetworkTables revision 3 @1 @0 @3","3.0.0"],"parity-scale-codec":["SCALE - @K Concatenating Aggregated Little Endians","2.3.1"],"app":["A &x-to-$d @D-$D-@i.","0.6.5"],"die":[C[790],C[3]],"glean-core":["A modern Telemetry @1","42.1.0"],"google-admin1_reports-cli":[C[791],C[792]],"ketree":["A ^0 representing a symbolic expression @l can be created @7 Ketos.","0.5.2"],"cabocha":["Safe @3 @h @0 cabocha a japanese @L &m $V analyzer @1",C[3]],"pest_@B_tmp":[C[793],"2.1.0"],"objekt-clonable-impl":[C[794],C[8]],"taglib":["@3 @6 @0 TagLib","1.0.0"],"httptin":["httpbin $C $w rewrite in @3","0.2.3"],"rocket_lamb":["A @8 to allow running a Rocket webserver as an ^r Lambda Function @7 @x Gateway","0.6.0"],"acme2":["A Tokio @5 OpenSSL @n ACMEv2 @c.","0.5.0"],"theban_db_@m":["a $u @m @0 @4 db-@U @5 @4 datastructure",C[3]],"debugtrace":["Enables backtraces to be attached to ^V in debug @5 ^7 builds ^Y incurring a cost in release or bench builds",C[0]],"actix-webfinger":["Types @5 &w to create @5 fetch Webfinger resources",C[549]],"tetsy-libp2p-core":[C[802],"0.27.2"],"variance":["Helpers @0 establishing @4 variance of lifetimes @5 $l parameters.","0.1.3"],"bevy_reflect":["Dynamically @o @7 @f @g","0.5.0"],"sovrin-client":["Sovrin @c @7 c-callable @m","0.1.1-15"],"aligned-utils":["&O @E to work @7 aligned ^V @5 allocation","1.0.2"],"lazy_&k":["A @e @0 declaring lazily evaluated statics in @3.","1.4.0"],"yew_styles":["Framework styles @0 yew",C[13]],"ostree-sys":["$L @6 to libostree-1","0.9.1"],"rbatis-core":["Core of rbatis, @4 @f SQL toolkit. Not intended to be $2 directly.","2.1.7"],"tin-summer":["Command-$D ^4 to find $j artifacts @5 thing occupying space on $r computer. Shatters records not glass.","1.21.14"],"pandoc_ast":["deserializes @5 serializes @4 markdown ast @0 $O pandoc filters",C[7]],"is-match":["@p to check whether something matches something else",C[0]],"async-listen":["Various &w @0 $O production-ready servers in @f @u @J-std.",C[5]],"tugger-rust-toolchain":["Discover, download, @5 $d @3 toolchains","0.5.0"],"network-manager":["@3 NetworkManager @6",C[16]],"s3rs":["A s3 ^y @c @7 multi configs @7 diffent provider","0.4.7"],"rustc-ap-rustc_lint_defs":["^W published $4 of @4 @X `rustc_lint_defs` in @4 @f-lang/@f repository @t commit 9a27044f42ace9eb652781b53f598e25d4e7e918 $8 publishing script @0 this @8 lives at: &Y://github.com/alexcrichton/&K-auto-publish",C[215]],"kodama":["Agglomerative hierarchical clustering.","0.2.3"],"astro-dnssd":["@K & $M DNS-SD @h",C[1]],"cargo-apk":["Helps @S $j APKs","0.8.1"],"websocket-base":["A WebSocket (RFC6455) @1 @0 @3: low-@C component. It contains ^s-independent aspect of WebSockets","0.26.2"],"tauri-web-view":[C[795],"0.6.2"],"prometrics":["Client @1 @0 exposing prometheus &q",C[49]],"token-generator":["It returns an unsed token",C[0]],"ttl_cache":["A cache @l will expire ^V after a TTL","0.5.1"],"openvino":["High-@C @6 @0 OpenVINO.",C[9]],"ansi-to-html":["ANSI escape codes to HTML converter",C[0]],"vector_^u":[C[50],"0.1.3"],"quicksink":["Create a Sink @t some &5 @5 a closure returning a Future.",C[4]],"ra_ap_tt":["TBD","0.0.79"],"jsonnet-sys":["&M @6 to @4 libjsonnet @1",C[26]],"oil_parsers":["Parsers @0 oil.",C[0]],"libm":["libm in ^X @3",C[5]],"wavefront_obj":["A @i @0 @4 Wavefront .obj $0 @G.","10.0.0"],"seqalign":["Sequence alignment @u edit $B",C[8]],"samotop":["SMTP @U @5 @1 built on @J-std",C[15]],"amadeus-commoncrawl":[C[179],"0.4.3"],"rust-termios":["A light, $M @3 layer &6 @4 termios-@r ffi @8","0.0.2"],"nb":["Minimal non-blocking I/O layer","1.0.0"],"^D_io":["really @d to $d panicking input @y","0.1.9"],"seahash":["A blazingly $I, portable ^z @Y @7 proven statistical guarantees.","4.1.0"],"vob":["Vector of Bits @7 Vec-$C @x @5 usize backing ^x","3.0.1"],"compose_yml":[C[796],"0.0.59"],"itm-decode":["A @1 @0 ^P ARM Cortex-m ITM @5 DWT packets","0.6.1"],"piston_meta_search":["A search @x @0 piston_meta",C[95]],"catfs":["Cache AnyThing filesystem",C[7]],"webrtc-dtls":["A ^X @3 @2 of DTLS","0.5.0"],"cargo-publish-all":["Tool to publish all packages","0.5.3"],"cron_rs":["A Cron &B @p And Job Scheduler Written In @3","0.1.6"],"crepe":["Datalog in @3 as a $e @e","0.1.5"],"heapsize_@b":[C[797],"0.1.4"],"avif-parse":["&B @0 AVIF image @z","0.13.2"],"socketpair":["Cross-@N socketpair $7",C[12]],"pjson":["^k ^L @i",C[8]],"csv-query":["Make SQL queries on CSV @z","0.5.0"],"smith":["Smith is a @d $o-@n ^D editor $A in @3.","2.0.1"],"napi-build":["N-@x $j @j","1.1.0"],"dusk-poseidon":["@v of Poseidon ^z $1 &6 @4 Bls12-381 Scalar field.","0.23.0-rc.0"],"args":["An argument @R @5 validation @1 designed to take some of tediousness out of @4 general 'getopts' @8.","2.2.0"],"ruma-api-macros":["A $e @e @0 $E ruma-^S Endpoints.","0.18.5"],"easycurses":["A @8 @l makes ^p @7 curses &x.",C[15]],"stemflow":["Access-control policy $a $2 by StemJail","0.5.3"],"sonnerie-api":["A @c ^S to Sonnerie, a timeseries ^Q","0.4.1"],"data-buffer":["A @d low-@C @w buffer $l useful @0 IO @5 in homogeneous &C",C[7]],"dubp-common":["Provide $u &1 @5 @g @0 DUBP.","0.58.0"],"google-cloudbilling1-cli":[C[798],C[200]],"ultraviolet":["A @8 to do linear algebra, $I.","0.8.1"],"make_pluralrules":["A Rustcode @B @0 CLDR plural rules.","0.5.0"],"unicode_hfwidth":["^e @0 ^a characters in @4 &h \"Halfwidth @5 Fullwidth Forms\" block.",C[3]],"docx-codegen":["Code ^1 @0 docx-rs.",C[5]],"fn-error-context":["An &U @e to add context to errors @t a @Y.",C[3]],"easybench":["A ^O benchmarking @1","1.1.0"],"mdbm-sys":[C[577],"0.0.1"],"burst-pool":["A SPMC channel optimised @0 bursts of activity","0.5.1"],"emerald-rs":["Ethereum secure account ^A @F libary","0.25.6"],"fox-and-hounds":["@v of Fox & Hounds in ^X @3","0.6.0"],"darling_@e":["Internal @j @0 a ^B-@e @1 @0 &3 attributes ^d &o whenimplementing custom derives. Use &Y://crates.io/$R/darling in $r @V.",C[15]],"base58check":["Base58Check $5",C[0]],"google-siteverification1":[C[799],"2.0.8+20191119"],"thread-scoped":["Unsafe @5 deprecated std::&d::scoped","1.0.2"],"ferrite":["Batteries-included $U @k built on Iron.","0.0.1"],"blobby":["Iterator &6 @d $Q blob ^x",C[1]],"raudient":["ipmsg rewrite by @f.","0.3.3"],"unmp":["unmp","0.7.3"],"jens":["Readable templates @0 @V ^1","0.6.0"],"serde-hashkey":["Space ^Z, in-$g $6 @M $i supports hashing.",C[2]],"symbolic-demangle":["A @1 to demangle symbols @t various languages @5 compilers.","8.3.2"],"sid_vec":["Tiny @1 ^R id @g @5 an id-@n vector.",C[5]],"lucet-wasi":["Fastly's @I @0 @4 $x System Interface (WASI)","0.6.1"],"loglog":["A @d @5 usable logger",C[9]],"spirv-tools-sys":[C[800],"0.5.0"],"path-dedot":["A @1 @0 extending `Path` @5 `PathBuf` in order to parse @4 path $i contains dots.","3.0.14"],"aljabar":["A super ^G, super experimental linear algebra @1.","1.0.2"],"pnet_@a_$Y":[C[801],C[0]],"bayespam":["A @d bayesian spam classifier.","1.1.0"],"lichen":["Scripting DSL (@0 Dialogue Graphs, et al)","0.3.7"],"quick-js":["QuickJS Javascript $a @h","0.4.1"],"value-trait":["Traits to deal @7 JSONesque ^V","0.2.8"],"fluence-fork-libp2p-core":[C[802],"0.27.2"],"jsonrpsee-proc-macros":["Procedueral @a @0 jsonrpsee","0.4.1"],"inflections":["High $J inflection transformation @1 @0 changing properties of words $C @4 case.","1.1.1"],"eventsource":["@p @0 accessing EventSource/Server-Sent Events endpoints","0.5.0"],"redox_pkgutils":["Redox Packaging ^e","0.1.6"],"bolero":["fuzz @5 property $S front-end","0.6.0"],"shio":["Shio is a $I, @d, @5 $n micro &e-@k @0 @3.",C[1]],"nu-ansi-term":["@p @0 ANSI $o colors @5 styles (bold, underline)","0.39.0"],"simplemad":["An @m @0 libmad, @4 MPEG audio ^P @1","0.9.0"],"copyless":["Ways to eliminate memcpy calls when @u @4 ^E @1.","0.1.5"],"zapper":["lightning $I templating $a","0.9.1"],"test-assembler":["A set of @g @0 $K complex $Q streams.","0.1.6"],"zstd-seekable-s3":["Seekable zstd-compressed S3 objects.","0.6.0"],"libimaglog":[C[39],C[12]],"erl_parse":["Erlang source @V @i","0.0.8"],"pdh-sys":["$L @6 to pdh. @Q @8 is a placeholder @0 @4 future. If you are interested in this @1 feel free to get in touch @7 me: &z://www.rustaceans.org/retep998","0.0.1"],"whois-rust":["@Q is a WHOIS @c @1 @0 @3, &X by &Y://github.com/hjr265/node-whois","1.4.0"],"bevy-glsl-to-spirv":["Deprecated. @Q @8 is a temporary measure until &8 @f shader compilation $C &Y://github.com/gfx-rs/naga lands.",C[5]],"hyper-sync-rustls":["Glue @V @0 Rustls @5 synchronous Hyper.","0.3.0-rc.17"],"blanket":["A @d @e to @b blanket @T @0 $r $3.",C[3]],"livesplit-hotkey":["livesplit-hotkey @s cross-@N global hotkey hooks.","0.5.0"],"pipecolor":["A $o filter to colorize &Z","0.4.2"],"git_ignore":["@Q @8 is now known as gitignore, please $d @l instead!",C[4]],"parquet2":["Safe @2 of parquet IO.","0.6.0"],"wfc_image":["Create patterns @0 wfc @u image @z","0.11.2"],"cryptoki-sys":["$L @h $G @4 PKCS #11 @x",C[4]],"ozelot":["Handles everything ^9 related to MCMODERN.","0.9.0"],"nu-parser":["Nushell @i","0.39.0"],"ipopt":["@3 @L @6 @0 @4 Ipopt non-linear constrained optimization @1.","0.5.4"],"mit-build-tools":["Generate different things @t a clap app $0","5.11.6"],"raster":["Image &u lib @0 @3",C[3]],"blake3":["@4 BLAKE3 ^z @Y","1.1.0"],"ca-rules":["Parsing rule $p of life-$C cellular automata.","0.3.3"],"redoxer":["Method @0 quickly running programs inside of Redox @t a KVM capable OS.","0.2.22"],"nu_$Y_chart":["A $Y to display charts","0.39.0"],"millefeuille":["Millefeuille $Y @0 Flow &u @O (under construction).","0.0.0"],"wren-sys":["$L @6 to @4 Wren scripting @L @x","0.2.5"],"$P_snowball":["^r ^N @0 @3 - Amazon Import/Export Snowball @ 2016-06-30",C[27]],"rpcperf_workload":["rpc-perf workload ^1","2.0.0"],"jlrs":["jlrs @s @6 to @4 Julia C @x @l enables Julia @V to be called @t @3 @5 more.",C[28]],"oxygengine-physics-2d":["2D physics ^F @0 Oxygen Engine",C[42]],"threed-ice-sys":["$8 @X @s @6 to 3D-ICE.",C[1]],"stop-handle":["Convinient $V to terminate future execution",C[0]],"^f_libra_^2":["Libra ^2",C[10]],"cplx":["Complex @5 hypercomplex ^M","0.3.3"],"psd":["A @3 @x @0 @R @5 ^p @7 PSD @z.",C[3]],"ruplace":["Bot @0 r/place",C[5]],"oil_&J":["Support @V &J by oil &4.",C[0]],"unzip3":["Same as Iterator::unzip, but @0 3 items. Based on @3 1.6 @2.","1.0.0"],"conrod_wgpu":["A @8 to assist @7 &S conrod UIs via wgpu.","0.75.0"],"unroll":["An &U-$C $e @e @0 unrolling @0 loops","0.1.5"],"onigiri":["@Q @8 is a ^4 of ^a chars.",C[3]],"fountaincode":["@v of @4 Luby Transform Code in @3","0.0.8"],"strand":["A datatype @l evolves",C[4]],"cassowary":["A @3 @2 of @4 Cassowary linear constraint solving algorithm.The Cassowary $1 is designed @0 naturally laying out user interfaces @u linear constraints,$C 'this button must $D up @7 this ^D box'.",C[1]],"canonical-path":["Path @5 PathBuf-$C @g @0 representing canonical filesystem paths","2.0.2"],"embedded-nal":["A Network Abstraction Layer (NAL) @0 Embedded Systems","0.6.0"],"nitro":["A game $a built in @3. @Q @8 is no longer maintained.","0.9.1"],"nettfiske":["Detect Phishing fetching Certificate Transparency Logs",C[1]],"stm32l0":["Device @j $R @0 STM32L0 &N",C[24]],"fountain":["&B @5 formatter @0 @4 Fountain screenplay markup @L","0.1.12"],"drone-stm32-map-pieces-11":[C[46],C[24]],"ipp-sys":["toplevel convenience @8 (part of ipp-@r Intel IPP @6)","0.4.5"],"$6_urlencoded":["`x-www-form-urlencoded` meets Serde","0.7.0"],"$6_closure_@b":["Serializable @5 debuggable closures.This @1 @s @a @l wrap closures to make them serializable @5 debuggable.See &Y://crates.io/$R/serde_closure @0 documentation.",C[9]],"bls-signatures-rs":["Open source @2 of Bonneh-Lynn-Shacham (BLS) signatures $A in @3",C[0]],"prototty_unix":["Prototty context @0 unix terminals.","0.27.0"],"ruc":["@3 Util Collection, include a &E `^q-chain` @5 many other ^u.","0.6.6"],"gtk4":["@3 @6 of @4 GTK 4 @1","0.3.1"],"shipyard":["Entity Component System","0.5.0"],"zipkin-macros":["^o @0 $d @7 `zipkin`","0.1.1"],"tc-telemetry":[C[803],"2.0.0"],"ethcore-bigint":["Large fixed-size integers @5 ^z @Y outputs",C[5]],"dinzai-datni":["Cryptocurrency ticker @1 @0 @3.","0.1.1"],"git-config":["A git-config $0 @i @5 editor @t @4 gitoxide ^g","0.1.7"],"^f_libra_transaction_&I":["Libra transaction_builder",C[10]],"holochain_conductor_lib":["holochain conductor @1",C[18]],"signatory-dalek":["signatory-dalek is deprecated! Use ed25519-dalek directly instead.ed25519-dalek natively supports @4 $3 $2 in Signatory. See:https://docs.rs/ed25519/ @0 more $f.","0.99.0"],"phantom-type":["A `PhantomData` analog $i prevents \"parameter is never $2\" ^q, but does not produce any restrictions in contrast @7 `PhantomData`.","0.3.1"],"charred":["charred char checking","2.2.0"],"cylinder":["Cylinder is a ^w signing @1 @7 CLI &1.",C[8]],"frugalos":["Frugal Object Storage","1.2.0"],"jsonrpc-client-http":["A transport @2 @0 jsonrpc-@c-@F @n on Hyper @5 @Z","0.5.0"],"faux_@a":["Implementations @0 #[create], #[&P], when!","0.1.5"],"json-utils":["An $w @8 @0 ^p @7 ^k @5 ^k-schemas","0.3.5"],"miniz_oxide_c_^S":["DEFLATE ^C @5 decompression @x designed to be @3 drop-in replacement @0 miniz","0.2.5"],"badlog":["A @d, zero customization, colored logger.","1.1.1"],"stft":["computes @4 short-$z fourier transform on streaming @w",C[3]],"media_filename":["A @1 @0 squeezing $f out of filenames of torrents @5 media @z.","0.1.4"],"redis-lua":["Redis Lua scripting ^t",C[2]],"neural_^9":["Modular neural ^9 @7 an @2 of back propagation learning $1.","0.1.3"],"subslice_index":["Get @4 index of a subslice ^d its parent slice","0.5.0"],"abortable_@i":["A @i combinator @1 @7 an emphasis on ^q ^a","0.2.4"],"checkpoint":["Unmaintained","0.1.6"],"capsize":["A converter @0 units of capacity","0.1.1"],"more-asserts":["Small @1 ^R additional assert_* @5 debug_assert_* @a.",C[5]],"webrtc":["A ^X @3 @2 of WebRTC @x",C[8]],"rustnao":["A @3 @2 of a @h @0 @4 SauceNAO @x.",C[55]],"trust-graph":["trust graph","0.2.7"],"blake2_c":["[deprecated] a $M @h @0 @4 official BLAKE2 C @2","0.3.3"],"sv-parser-parser":[C[327],C[17]],"wire":["An $F &6 TCP @5 struct @M","0.0.12"],"libhandy":["@3 @6 @0 libhandy",C[789]],"libimagcontact":[C[39],C[12]],"libtls-sys":["$L @6 @0 LibreSSL's libtls.","1.2.0"],"$c_cache_$Y":["A $c interning @1 @0 @3, developed as part of @4 Servo ^g − ^2 $Y.",C[32]],"sized-object-pool":["Object size aware object pool.",C[8]],"cached-path":["Download @5 cache ^s resources.","0.5.1"],"ruster_unsafe":[C[208],C[2]],"numpress":["A ^X @f @2 of ms-numpress, a $I, minimally lossy ^C $1 @0 mass spectrometry @w.","1.1.0"],"csscolorparser":["CSS color @i @1","0.5.0"],"terraform-zap-ignore-lib":["@W ignore @2 to terraform-zap",C[2]],"somedoc":["A very @d document model @5 markup @B.","0.2.10"],"actix-ogn":["OpenGliderNetwork @c @n on actix",C[2]],"byte-strings":["@3 byte $p manipulation, @0 a better @5 safer C $L","0.2.0-rc1"],"proxy_cfg":["A @1 to get proxy $H @t @4 OS.",C[2]],"scotext":["CLI app to score input according to how likely it is it contains english ^D","0.5.0"],"z3_ref":["High @C @m to @4 Z3 SMT solver","0.1.4"],"blastfig":[C[447],"0.3.3"],"net":["...",C[0]],"did_url":["A no_std @i @0 Decentralized Identifiers (DIDs)",C[0]],"libmodbus-sys":["$L @6 to @4 libmodbus C @1.","1.0.0"],"error-type":["@W a @e @0 constructing unifying ^q @g.",C[4]],"metered":[C[804],C[7]],"boomphf":["Scalable @5 Efficient Minimal Perfect Hash Functions","0.5.9"],"hash32":["32-bit hashing machinery",C[5]],"&s_val":["@p @l @s a typesafe @x to call javascript @t a &s ^U","0.3.5"],"diesel_^H_&J":["Shared @V $t `diesel_codegen` @5 `diesel_codegen_syntex`",C[13]],"openexchangerates":["@p @0 communicate @7 OpenExchangeRates @x.","0.1.7"],"dag-cbor-derive":[C[805],C[0]],"gl_&w":["gl &w","0.1.8"],"openssl-sys":["$L @6 to OpenSSL","0.9.67"],"gfcgi":["&M @3 @1 @0 FastCGI @7 multithreading @5 multiplexing @j","0.4.3"],"fever_^S":["@f @2 of @4 FEVER-@x","0.2.11"],"sourceview5":["@3 @6 @0 GtkSourceView 5",C[1]],"leg":["🔈 Elegant print @0 lazy devs (@J-std)","1.0.1"],"lib":["...","0.0.2"],"trust-dns-openssl":["Trust-DNS is a $M @5 secure DNS @1. @Q is an ^h @0 @4 Trust-DNS @c to $d $v-openssl @0 TLS.",C[41]],"evzht9h3nznqzwl":["A temporary fork.","0.0.3"],"todotxt":["Todo.txt $0 @G @i",C[1]],"stm32f2":["Device @j $R @0 STM32F2 &N",C[24]],"yew-event-source":["an event source &t @0 @4 yew &e @k",C[5]],"tw-rs":[C[806],"0.1.34"],"stm32g0xx-hal":["Peripheral $X @x @0 STM32G0 series $s","0.1.1"],"ensync":["A flexible ENcrypted $0 SYNChroniser suitable @0 uses where @4 centrallocation is not fully trusted.","1.0.0"],"synchronized-writer":["A tiny implement @0 synchronously $O @w.","1.1.10"],"linux-futex":["Futex: A &j-specific $I user-space locking primitive","0.1.1"],"askama":["Type-$M, compiled Jinja-$C templates @0 @3","0.10.5"],"ruspiro-console":["Lightweight console $F @0 bare metal @T to print $p to an &Z channel @l could be easely configured/attached.","0.5.3"],"yeslogic-unicode-script":["Fast lookup of @4 &h Script property","0.5.0"],"httpcodec":["Encoders @5 decoders @0 ^s/1.x &y @n on bytecodec @8","0.2.3"],"paperclip-macros":["^o @0 paperclip OpenAPI tooling @1","0.5.1"],"wasmtime-wiggle":["Integrate Wiggle @V @B @7 Wasmtime","0.27.0"],"shippai":["failure in other languages",C[9]],"^y_^7_dir":["Tools @0 $S @3 @D-$D @E","0.1.7"],"exonum_sodiumoxide":[C[244],"0.0.23"],"docusign":["An @x @c @0 @4 DocuSign @x","0.1.17"],"keyvi":["Keyvi - @4 key &5 index. It is an in-$g FST-@n @w $V highly optimized @0 size @5 lookup $J.","0.5.3"],"cntr-nix":["@3 &E @6 to *nix APIs (fork @7 features $2 in cntr)","0.11.3-pre1"],"pistoncore-winit_window":["A winit back-end @0 pistoncore-window",C[28]],"ferris":["Hierarchical timer wheel",C[3]],"enum-map":["A map @7 C-$C enum keys represented internally as an array","2.0.0-1"],"hmap":["Adds hmap! @e @0 easily ^n HashMap",C[0]],"ui-sys":["&M @6 to @4 minimalist, cross-@N, widget set `libui`","0.1.3"],"tgbot":["A Telegram Bot @1",C[24]],"dinotree":["An aabb space partitioning 2d ^0 @w $V","0.5.5"],"straw":["WIP @3 -> HTML renderer",C[1]],"mp4parse_capi":[C[807],C[28]],"marked-yaml":["A simplified YAML $V @7 provenance spans",C[3]],"mop-common":["&O $h @0 MOP $R.","0.5.0"],"&6":["OVER: @4 best @w @G.","0.6.5"],"klogger":["@p @0 &H in kernel mode.","0.0.8"],"protocol-derive":[C[808],"3.1.9"],"accelerate-src":["$8 @X @s a source of BLAS @5 LAPACK via @4 Accelerate @k.",C[9]],"starlark":["An @2 in @3 of @4 Starlark @L.","0.5.0"],"ruspiro-boot":["Bare metal boot strapper @V @0 @4 Raspberry Pi 3 to conviniently start a custom kernel within @4 @3 environmentwithout @4 need to deal @7 all @4 initial setup $C stack pointers, switch to @4 appropriate exeption @C @5 getting all cores kicked off @0 &u of @V compiled @t @3.","0.5.3"],"kerbalobjects":["A @8 @l allows you to read or &0 a KerbalObject $0.","3.1.10"],"miasht":["Minimum $n ^s @U/@c @1","0.0.5"],"polars-io":["IO related logic @0 @4 Polars DataFrame @1",C[72]],"sgx_urts":[C[21],"1.1.1"],"conllu":["Readers/writers @0 @4 CoNLL-U &m @G","0.7.0"],"cstring":["A super @d cstring @1 @0 $x","0.1.1"],"nickel_postgres":["Postgres &G @0 nickel.rs",C[3]],"actix-files":["Static $0 serving @0 Actix Web","0.6.0-beta.8"],"svinst":["Determines @4 modules declared @5 instantiated in SystemVerilog @z, producing a YAML $0 as &Z.","0.1.6"],"uninit":["A $b of &1 @0 a safer usage of uninitialized $g","0.4.1-dev"],"three":["Three.js &X 3D $a in @3",C[2]],"fst-regex":["&T. Use 'regex-automata' @8 @7 'transducer' feature instead.",C[1]],"ark-ff-asm":[C[809],C[1]],"traitcast":["Cast $t dynamic $y objects.","0.5.0"],"yuv":["Conversion $t various YUV (YCbCr) formats @5 RGB","0.1.4"],"mfrc522":["A @N &f ^j to @m @4 MFRC522 (RFID reader/writer)",C[3]],"webidl":["A WebIDL @i","0.9.0"],"abscissa_$v":["Support @0 launching Tokio runtimes within Abscissa @P","0.6.0-pre.3"],"logging-toolkit":["Logging @E","0.5.0"],"log4rs-syslog":["Syslog appender @0 log4rs @n on libc's syslog() @Y (*nix only)","3.0.3"],"webpage":["Small @1 to fetch info about a &e page: title, description, @L, ^s info, RSS feeds, Opengraph, Schema.org, @5 more","1.3.0"],"rustcql":["@3 Cassandra Client (CQL Binary ^c v4)","0.0.6"],"solana-jsonrpc-core":[C[810],C[2]],"cdc":["A @1 @0 performing Content-Defined Chunking (CDC) on @w streams.",C[0]],"rolling-file":["A rolling $0 appender @7 customizable rolling conditions.",C[0]],"iso3166-1":["ISO 3166-1 @w.","1.0.1"],"minutiae":["Cellular Automata-esque simulation $a involving a 2D universe populated by cells @5 entities","0.12.2"],"zeitstempel":["A timestamp you can serialize, @5 it might include suspend $z.","0.1.1"],"heed-types":["$8 @g $2 @7 @4 fully typed LMDB @h, heed",C[7]],"sass-rs":["Higher @C $W @0 @4 Sass @1",C[8]],"safer_ffi-proc_@e":["$q @e internals of `::safer_ffi`","0.0.6"],"http-signature-normalization":[C[221],"0.5.4"],"size":["Units @5 formatting @0 $0 sizes in base2 @5 base10",C[4]],"near-metrics":["A fork of @4 lighthouse_metrics @8 $2 to implement prometheus",C[0]],"endianness":["@3 @1 @0 &3 ^M in big-endian @5 little-endian.",C[3]],"grep-cli":["^e @0 search oriented @D $D @P.","0.1.6"],"interleave":["An arbitrary iterator interleaver @0 exhaustive consumption of iterators. Each iterator is guaranteed to be no more than a single next call behind any other iterator.","1.0.1"],"onewire":["OneWire @2 @u embedded_hal as $F layer, @n on arduino OneWire @1. WIP","0.3.13"],"rsocket_@f":["rsocket-@f is an @2 of @4 RSocket @9 in @3.","0.7.2"],"dnsoverhttps":["Resolve hostnames by sending DNS queries &6 HTTPS","0.6.0"],"atelier_^7":["Test @5 example models $2 within @4 other Atelier $R.","0.1.4"],"pinentry":["@x @0 &2 @7 pinentry binaries","0.5.0"],"snowflake":["A ^F @0 $E guaranteed ^I unique IDs.","1.3.0"],"hyphenation_commons":["Proemial @V @0 @4 `hyphenation` @1","0.8.4"],"whoami":["Retrieve @4 current user @5 ^K.","1.1.5"],"pb-rs":["A converter @t proto @z ^d quick-protobuf ^i @f ^F","0.9.1"],"enso-lazy-reader":["An ^Z buffered reader.",C[3]],"faketime":["Fake $z to ease $S @5 debugging",C[5]],"libtest-mimic":["Write $r own ^7 harness @l looks @5 behaves $C @4 built-in ^7 harness $2 by `&K --^7`",C[1]],"glyph-names":["Mapping of characters to glyph names according to @4 Adobe Glyph List Specification",C[0]],"slog-journald":["Journald drain @0 slog-rs","2.1.1"],"e310x-hal":["HAL @0 @4 E310x family of $s.","0.9.3"],"lwactors":["Lightweight actors @0 @3 @u @Z-rs",C[3]],"verco":["A @d Git/Mercurial/PlasticSCM tui @c @n on keyboard shortcuts","6.7.0"],"rate-core":["$8 RillRate ^b ^s @U.","0.41.0"],"topaz":["A tiny game $a.",C[2]],"cqrs-es":["A ^O, opinionated CQRS @5 event sourcing @k targeting serverless architectures.","0.2.3"],"intspan":["Command $D &1 @0 IntSpan related bioinformatics $B","0.4.15"],"rugint":[C[463],"0.4.1"],"oxide":[C[811],"0.0.1"],"commandspec":["@3 @e to $j std::^I::Command objects @7 shell syntax. Uses macro_rules! @5 works on stable.","0.12.2"],"async-compression":["Adaptors $t ^C $R @5 Rust's modern $n IO @g.","0.3.8"],"thread-local-object":["Per-object &d local ^x",C[0]],"salsa-macros":[C[849],C[812]],"jaylink":["@p to communicate @7 J-Link USB &N",C[3]],"stm32f4xx-hal":["Peripheral $X @x @0 STM32F4 series $s",C[12]],"sharedlib":["A cross-@N &J @1 loader.","7.0.0"],"ansi_rgb":["Colorful console ^D @u ANSI escape sequences",C[3]],"fluvio-protocol-api":["fluvio @9 @x &w","0.4.1"],"leveldb":[C[813],"0.8.6"],"glium_^D":["Text drawing @7 glium @5 freetype",C[24]],"untrustended":["Untrustended - Untrusted Extended. A compilation of $9 @0 @R ^V @t untrusted input.",C[2]],"cfgrammar":["Grammar manipulation","0.10.2"],"askama_&J":["Shared @V @0 Askama",C[17]],"ckb-dao":["@Q @8 @s @2 to calculate dao field",C[302]],"snooze-rs":["An experimental @1 @0 sleeping periodically","0.0.3"],"chacha20-poly1305-aead":["A ^X @3 @2 of @4 ChaCha20-Poly1305 AEAD @t RFC 7539.",C[4]],"uvc-sys":["Raw @h of libuvc",C[3]],"ro":["Helps make stuff read-only","1.0.0"],"getset":["Getset, we're ready to go!A $e @e @0 $E @4 most basic getters @5 setters on fields.","0.1.1"],"hedge":["An index @n half-edge mesh @2.",C[5]],"semver-parser":["Parsing of @4 semver spec.","0.10.2"],"anylog":["A @1 @0 @3 @l attempts to parse single log lines ^d records.","0.6.1"],"ruspiro-register":["$8 @8 @s @4 $h to conviniently work @7 register field ^V @l are typically presented by a set of bit fields.","0.5.4"],"tectonic_bridge_@F":["Exposing @F $N APIs to @4 Tectonic C/C++ @V.",C[1]],"tarrasque-macro":[C[814],C[13]],"print_bytes":["Print bytes as losslessly as possible","0.5.0"],"anchor-attribute-event":["Anchor &U @e @0 defining an event",C[43]],"sqlite3-provider":[C[1065],C[0]],"hidapi_@f":["In &D hidapi $W @0 @f","0.1.3"],"$c_enum":["String @n enum.","0.3.1"],"anchor-derive-accounts":["Anchor &n @e @0 accounts",C[43]],"direkuta":["A $I REST focused &e @k","0.1.8"],"cargo-bullet":["@Q is a configurable ^g @B","0.2.6"],"lib3h_&Q_^S":["lib3h abstract cryptography $3 @5 @w @g","0.0.42"],"futures-micro":["Minimal, no_std ^i @J prelude.","1.0.0-rc0"],"cargo-cook":["A third-party @S ^h $i allows you to cook $r @8","1.0.0"],"gnaw":["Conveniently chip &7 pieces off a slice or `str` to $d elsewhere.","0.0.2"],"rtf-grimoire":["A Rich Text File (RTF) document tokenizer. Useful @0 $O RTF parsers.","0.1.1"],"bee-rest-api":["$8 default REST @x @2 @0 @4 IOTA Bee node software.",C[4]],"exocore":["Distributed @P @k","0.1.15"],"resid-rs":["Port of reSID, a MOS6581 SID emulator $a, to @3","1.0.4"],"pipitor":["A Twitter bot @l gathers, filters @5 Retweets Tweets automatically.","0.3.0-alpha.14"],"reproto-lexer":["lexer $2 @7 @4 reproto @i","0.3.36"],"rfd":["Rusty File Dialog","0.5.1"],"fred":["An @J Redis @c @0 @3 built on Futures @5 Tokio.","4.2.0"],"threefish-cipher":["Threefish block cipher",C[2]],"generalized_suffix_^0":["@v of Generalized Suffix Tree @u Ukkonen's $1 in @3","1.2.1"],"lib3h_p2p_@9":["Lib3h ^c definition @0 inter-node p2p communication.","0.0.42"],"spaces":["Set/space $9 @0 defining machine learning problems.","5.0.0"],"arraystring":["Fixed capacity stack @n ^G $c",C[1]],"commoncrypto":["Idiomatic @3 &r @0 Mac OS X's CommonCrypto @1",C[3]],"eui48":["A @1 to ^n @5 parse IEEE EUI-48 @5 EUI-64, also known as MAC-48 media accesscontrol addresses. $8 IEEE claims trademarks on @4 names EUI-48 @5 EUI-64, in $i EUI is anabbreviation @0 Extended Unique Identifier.","1.1.0"],"bounded-vec":["Non-empty @f Vec @h @7 $l guarantees on lower @5 upper bounds @0 items quantity.","0.5.0"],"inner":["$8 inner! @e descends ^d an enum variant. It's more flexible than try!() @5 unwrap(), @5 it works @7 $r enum, too!","0.1.1"],"dockerfile-parser":["a @3 @1 @0 @R, validating, @5 modifying Dockerfiles","0.7.1"],"rs_poker":["A @1 to help @7 any @3 @V dealing @7 poker. @Q includes card ^V, suits, hands, hand ranks, 5 card hand strength calculation, 7 card hand strength calulcation, @5 monte carlo game simulation &w.","2.0.0-alpha.1"],"glitch-in-the-matrix":["A set of matrix.org @6 @0 @3.",C[24]],"$g_units":["Safe conversions $t units of $g",C[2]],"tlv_@i":["BER-TLV @R & emitting @1","0.7.0"],"ticklock":["Duration, Instant, Frequency $F @0 ^b","0.0.8"],"arg_enum_^B_@e":["A $e @e ^i @7 clap arg_enum","0.3.1"],"urlpattern":["@f-urlpattern is a @3 @2 of @4 URLPattern ^E",C[4]],"mendes":["@3 &e toolkit @0 impatient perfectionists","0.0.59"],"radicle-surf":["A @V surfing @1 @0 VCS $0 systems","0.6.0"],"tun-tap":["TUN/TAP @m @h",C[4]],"rs_&g":["trace events in @4 trace event @G","1.0.1"],"mux":["mux codecs @0 @f","0.1.1"],"piston2d-shapes":["Convenience &o @0 2D shapes","0.34.0"],"ckb-error":["Underlying ^q @g $2 &6 ckb $R",C[302]],"biquad":["A @1 @0 digital second order IIR filtrers, also known as biquads.","0.4.1"],"linked_^z_set":["HashSet @7 insertion ordering","0.1.4"],"piston-timer_controller":["A timer controller","0.21.0"],"speedruns":["Unofficial &1 @0 mirroring speedrun.com @x @w",C[1068]],"aci_png":["Encode @5 decode png @5 apng(TODO) image @z.",C[815]],"tripactions":["A fully ^8 & opinionated @x @c @0 @4 TripActions @x.",C[3]],"tinyvec":["`tinyvec` @s 100% $M vec-$C @w $k.","1.5.0"],"culper":["A ^4 to embedd encrypted secrets in yaml @z",C[9]],"maidsafe_sodiumoxide":[C[244],"0.0.13"],"des":["DES @5 Triple DES (3DES, TDES) block ciphers @2","0.7.0"],"wasm-bindgen-macro-support":["$8 part of @4 @2 of @4 `#[wasm_bindgen]` &U @l is not in @4 &J $N @8","0.2.78"],"rotor-carbon":["$8 carbon @6 @0 rotor","0.7.0"],"url_params_serializer":["Allows @M of @g to URL GET parameters","0.1.1"],"ceviche":["@3 daemon/&t @h","0.4.5"],"emacs":["@3 @1 @0 $Z Emacs's dynamic modules",C[43]],"^v":[C[709],"0.40.0-rc.2"],"r2d2":["A ^G connection pool","0.8.9"],"asynchronous-codec":[C[1003],"0.6.0"],"http-test-server":["Programatically create resources @5 pre-defined responses @0 tests","2.1.0"],"bet":["Helps @R @5 evaluating $Q expression trees","1.0.0"],"vst":["VST 2.4 @x @2 in @f. Create plugins or hosts.",C[5]],"rusty_audio":["Convenient sound @1 @0 &7 projects @5 educational purposes.","1.2.1"],"way-cooler":["Customizeable Wayland compositor $A in @3","0.8.1"],"humantime":["A @i @5 formatter @0 std::$z::{Duration, SystemTime}","2.1.0"],"ckb-app-config":["CKB @D $D arguments @5 config options.",C[302]],"arc-swap":["Atomically swappable Arc","1.4.0"],"lucet-runtime-internals":["Pure @3 @I @0 Lucet $x toolchain (internals)","0.6.1"],"slitter":["A C- @5 @3-callable slab ^l @7 a focus on safety",C[0]],"ratel":["JavaScript transpiler in @3","0.7.0"],"gitui":["blazing $I $o-ui @0 git",C[43]],"randomkit":["`numpy.random` @0 @3.","0.1.1"],"celly":["Cellular automaton @1.","0.6.0"],"solana-genesis":[C[58],"1.8.1"],"spotify":["Easy to $d Spotify Local @x abstractions.","0.7.1"],"forest_message":["Filecoin message @g","0.7.2"],"ncollide_^u":[C[111],"0.9.1"],"libtor":["Bundle @5 run Tor inside $r own ^g","46.6.1+0.4.6.6"],"movecell":["`std::cell::Cell` @0 not-implicitly-copyable @g.",C[3]],"tss-sapi":["@H to @4 TPM 2.0 TSS SAPI","0.0.5"],"uil_parsers":["Parsers @0 uil.","0.0.3"],"cargo-with":["A third-party @S ^h to run @4 $j artifacts through &1 $C `gdb`.",C[9]],"ed25519-dalek-fiat":[C[816],C[0]],"relational_@g":["Manage relations $t objects","2.0.0"],"clickhouse":["a typed @c @0 ClickHouse","0.9.1"],"game":["eccentric skinner box point-collecting game","1.0.8"],"typeshare_marker":["Include marker &U @0 @4 typeshare @B.","0.0.1"],"capnp":["@I @1 @0 Cap'n Proto @w $5","0.14.3"],"remux":["Remux multiplexer &6 reliable, ordered connections","0.9.0"],"tokio-timer-plus":[C[817],"0.1.3"],"fork-tree":["Utility @1 @0 managing ^0-$C ordered @w @7 logic @0 pruning @4 ^0 while finalizing nodes.","3.0.0"],"runtime-fmt":["Runtime-@n $c formatting","0.4.1"],"rados_hi":["Opinionated high-@C @h @0 librados (Ceph).","0.2.4"],"egui":["@K, portable immediate mode GUI @1 @0 @3",C[23]],"geo-svg":["Convert geo @g to SVG $p @0 visualization","0.5.0"],"clap-verbosity-flag":["Easily add a `--verbose` flag to CLIs @u Structopt",C[9]],"trans":["Serialization @9 @0 inter-@L communication",C[818]],"image-meta":["Image meta $f loader","0.1.1"],"ark-snark":["A @1 @0 SNARK $3",C[1]],"aterm":["@v of @4 Annotated Terms @w $V",C[42]],"wasmer_enumset":["A @1 @0 $Z compact sets of enums. Wasmer fork to work $G `syn` issue. @Q will not be updated once @4 issue is fixed upstream.","1.0.1"],"built":["@W a @8 @7 $f @t @4 $z it was built.","0.5.1"],"gray-codes":["Iterators &6 $Q Gray codes; @E @0 efficiently visiting all subsets of a $b","0.1.1"],"cargo-benchcmp":["A $w @0 comparing @3 micro-benchmark &Z.","0.4.3"],"stm32l1":["Device @j $R @0 STM32L1 &N",C[24]],"glutin_gles2_@r":["$8 gles2 @6 @0 glutin","0.1.5"],"sp-consensus-pow":[C[819],"0.9.0"],"gog-sync":["Synchronizes a GOG @1 @7 a local folder.","0.3.4"],"socket-priority":["Set a priority on a raw socket","0.1.5"],"apply_attr":["A syntax ^h ^R higher-order attributes to @3.","0.2.4"],"imxrt-iomuxc":["Pad $H @m @0 NXP i.MX RT processors.Part of @4 imxrt-rs ^g.","0.1.3"],"overIDE":[C[61],C[62]],"hyper-unix-connector":["Use hyper @7 unix-domain sockets",C[8]],"bitwrap":["pack/unpack @w ^d byte array","2.0.2"],"velcro_@a":["$q @a $2 by @4 `velcro` @8. See `velcro` @0 documentation.It is not advised to depend on this @8 directly; it is an ^J &m of `velcro` @5 may be subject to breaking changes.","0.5.2"],"fn_block":["Crate defining @a @0 calling blocks or expressions in a closure.",C[5]],"rustie":["Cross Platform Shell","0.1.18"],"gst-plugin":["Infrastructure @0 $O GStreamer plugins in @3",C[9]],"orbtk-utils":["Helper ^u @5 $3 @0 OrbTk.",C[204]],"ftp4":[C[820],"4.0.2"],"penrose":["A tiling window &F @1 &X by dwm @5 xmonad",C[3]],"fwdlist":["A simply linked (forward) list",C[1]],"kravl-parser":["@4 kravl @L - @i ^F","0.3.3"],"tugger-wix":["Interfaces to @4 WiX Toolset to produce ^6 installers",C[13]],"noisy_float":["Contains floating point @g @l panic if they are set to an illegal &5, such as NaN",C[3]],"ffmpeg-next":["Safe FFmpeg @h (FFmpeg 4 ^i fork of @4 ffmpeg @8)","4.4.0"],"imageproc":["Image &u $B",C[74]],"ttf-firacode":["Fira Code TrueType fonts @0 @3.",C[0]],"lazysort":["Lazy sorting @0 iterators",C[5]],"xkbcommon-sys":["@H to libxkbcommon.","1.3.0"],"coreutils_^F":["Small $K blocks @0 modularized @P.","0.5.1"],"gspell-sys":["Raw C-$L @6 @0 @4 gspell @1","0.5.0"],"non-empty-collections":["Non-empty ^z-map @5 ^z-set @T","0.1.9"],"nuklear-backend-glium":["A glium drawing $N @0 @3 @h @0 Nuklear 2D GUI @1","0.5.0"],"$P_fms":["^r ^N @0 @3 - Firewall Management Service @ 2018-01-01",C[27]],"rowcol":["@K fixed-size vectors/matrices, allocated on @4 stack","0.3.3"],"tectonic_bridge_harfbuzz":["Expose @4 Harfbuzz C/C++ APIs to @3/Cargo.","0.2.3"],"soa_@b_^J":["Internal @2 @8 @0 soa-@b",C[12]],"wither_@b":[C[821],"0.9.0"],"pretty_env_logger":["a visually pretty env_logger",C[2]],"cita_trie":["Modified Patricia Tree (aka Trie).","2.0.0"],"yasna":["ASN.1 @1 @0 @3",C[2]],"google-dfareporting2d1-cli":[C[822],C[823]],"merkle_light":[C[824],"0.3.1"],"gltile":["OpenGL-@n tile &S $a","0.0.5"],"yar_@c":["yar @c &V @j only","0.1.3"],"onedrive-api":["OneDrive ^s REST @x","0.8.1"],"envy":["deserialize env vars ^d typesafe &o","0.4.2"],"$P_firehose":["^r ^N @0 @3 - Amazon Kinesis Firehose @ 2015-08-04",C[27]],"swc_ecma_visit_@a":[C[825],C[2]],"symbolic-debuginfo":["A @1 to inspect @5 load DWARF debugging $f @t binaries, suchas Mach-O or ELF.","8.3.2"],"shell-words":["Process @D $D according to @R rules of UNIX shell","1.0.0"],"task_queue":["$8 @2 of @4 &d pool @0 @3","0.0.7"],"fluence-fork-multistream-select":[C[826],"0.10.3"],"runtime-fmt-derive":["Runtime-@n $c formatting, custom @b $Y",C[3]],"finalfusion-utils":["finalfusion @E",C[15]],"glhelper":["Convenience &P @0 opengl.","0.1.12"],"bstr":["A $c $l @l is not required to be valid UTF-8.","0.2.17"],"actix-web-httpauth":["^s authentication schemes @0 Actix &e",C[827]],"promptly":["@K, opinionated CLI prompting ^t",C[1]],"ra_ap_hir_ty":["TBD","0.0.79"],"wasmer-middlewares":["A $b of various useful middlewares","2.0.0"],"google-drive3-fork":["A fork of Sebastian Thiel's @q @1 to @o @7 drive (@9 v3)","1.0.10"],"fann":["Wrapper @0 @4 Fast Artificial Neural Networks @1","0.1.7"],"lamport_sigs":["@v of @4 Lamport one-$z signature scheme.","0.7.0"],"midi":["&O Midi @g @0 @3",C[0]],"embedded-hal":["A Hardware Abstraction Layer (HAL) @0 ^b systems",C[299]],"jhash":["@3 @2 of Jenkins ^z @7 32-bit sized optimizations.","0.1.1"],"wasi-experimental-http-wasmtime":["Experimental ^s @1 @0 $x in Wasmtime","0.6.0"],"nixinfo":["A lib @8 @0 gathering @O info such as cpu, distro, ^K, kernel, etc in @3.","0.3.3"],"eyre":["Flexible concrete Error Reporting $l built on std::^q::Error @7 customizable Reports","0.6.5"],"$P_ec2":["^r ^N @0 @3 - Amazon Elastic Compute Cloud @ 2016-11-15",C[27]],"emscripten-sys":["Emscripten @x @6 @0 @3",C[9]],"@b_less":["A @e @0 templating item declarations.",C[3]],"zram-generator":["Systemd unit @B @0 zram swap &N.","1.0.1"],"tentacle-discovery":["p2p discovery @9 main reference bitcoin","0.2.9"],"field_@g":["Some @b @a @0 deriving enums, corresponding to @4 fields of &o.","1.1.0"],"irc-rust":["IRC Helper easing @4 $X @5 creation of IRC Messages",C[2]],"rsa_public_encrypt_pkcs1":["RSA PKCS#1 encryption @t ASN.1 DER encoded public key in ^X @3",C[2]],"thruster-context":["$8 context portion of @4 thruster &e @k",C[78]],"ted-tui":["Terminal ^D editor.","0.5.0"],"unhtml_@b":["^B @e @b @0 unhtml",C[7]],"conch-parser":["A @1 @0 @R programs $A in @4 shell $m @L.","0.1.1"],"wasmtime-lightbeam":["Integration $t Lightbeam @5 Wasmtime",C[53]],"slash-formatter":["@Q @8 @s @y to deal @7 slashes @5 backslashes in $p.","3.1.2"],"wit-schema-version":["Definition of @4 schema $4 @0 @4 &s @m @g $Q format.Meant @0 ^J usage only.",C[0]],"cargo-edit":["@Q extends Cargo to allow you to add @5 remove &c by modifying $r `Cargo.toml` $0 @t @4 @D $D. It contains `@S add`, `@S rm`, @5 `@S upgrade`.",C[7]],"tokio-postgres-rustls":["Rustls $T @0 $v-postgres",C[7]],"toml-config":["Loads @5 decodes TOML @z ^d $k",C[2]],"num-digitize":["Converts integer of $l N ^d Vec containing its digits.","0.4.2"],"rust-lzo":["A ^X @f @2 of lzo converted @t Linux's C @2 @u corrode","0.6.2"],"raw_tty":["@Q @8 can be $2 @0 generally &2 @7 a tty's mode safely, but was created originally to solve @4 problem of @u raw mode @7 /dev/tty while &3 stdin @0 @w.",C[0]],"google-surveys2":[C[828],"2.0.8+20180508"],"erguotou":["High-@C hyper @c @E","0.0.3"],"defmt":["A highly ^Z &H @k @l targets resource-constrained &N, $C $s","0.2.3"],"async-io":["Async I/O @5 timers","1.6.0"],"json-api-rocket":["Rocket @j @0 @4 &V-^S @8","0.4.1"],"ice_@F":["High $J Web $a","0.5.1"],"aw-fel":["@p @0 dealing @7 Allwinner &N in FEL mode, in ^X @3.","0.5.2"],"mockiato":["A strict, yet &E mocking @1 @0 @3 2018","0.9.5"],"memcmp":["Optimized $g comparisons @0 integer slices. Temporary solution until @f issue 16913 is resolved.","0.0.6"],"ei-sys":["Low @C @3 @6 to ei, a @1 to communicate @7 distributed Erlang.","0.8.1"],"gpu-alloc-types":["Core @g of gpu-alloc @8",C[3]],"pallet-contracts":["FRAME &v @0 WASM contracts","3.0.0"],"static-http-cache":["A local cache @0 &k ^s resources",C[3]],"pin-project-lite":["A ^O $4 of pin-^g $A @7 declarative @a.","0.2.7"],"restq":["Compacting SQL query ^d a URL suitable @0 rest ^S calls","0.6.1"],"rg3d-sound":["Sound @1 @0 games.","0.25.0"],"tokio-watchdog":["Watchdog timer @0 Tokio.",C[0]],"once-cell-regex":["@Q @8 just gives you @4 `regex` @e @t @4 `once_cell` docs!",C[5]],"gilrs":["Game Input @p @0 @3","0.8.1"],"mpris-player":["A @1 @0 $Z MPRIS2 media players &6 D-Bus","0.6.1"],"mockers_@a":[C[829],"0.9.4"],"named-binary-tag":["Format is $2 by minecraft @0 @4 various @z in $i it saves @w","0.6.0"],"ructe":["@3 Compiled Templates, ^Z $l-$M &e page templates.","0.13.4"],"anchor-attribute-error":["Anchor &U @e @0 $Z ^q @g",C[43]],"psl-codegen":["Generate &8 @3 @V @t Mozilla's Public Suffix List","0.9.4"],"multistr":["Store &l $p in @4 same heap buffer.","0.5.4"],"warp-real-ip":["Warp filter to get @4 \"real ip\" of @4 remote @c",C[3]],"drossel-journal":["$8 journal $2 by drossel to &0 to disk",C[4]],"indradb-lib":["A graph ^Q @1","2.1.0"],"xor":["CLI app @l implements basic XOR encryption/decryption","1.4.5"],"neso":["An NES emulator.","0.5.0"],"vm-memory":["Safe abstractions @0 accessing @4 VM physical $g","0.7.0"],"ansi-to-tui":["A @1 to convert ansi color coded ^D ^d tui::^D::Text $l @t tui-rs @1","0.4.1"],"once_cell":["Single assignment cells @5 lazy ^V.","1.8.0"],"unicode-segmentation":["@Q @8 @s Grapheme Cluster, Word @5 Sentence boundariesaccording to &h Standard Annex #29 rules.","1.8.0"],"libsecp256k1-gen-ecmult":["Generator @Y of const_gen @0 libsecp256k1.",C[1]],"scm":["&O SCM $B @0 $d @7 @3 Builders","0.0.3"],"qmlrs":["qmlrs - QtQuick @6 @0 @3","0.1.1"],"^f_libra_move_ir_natives":["Solana Libra move_ir_natives","0.0.0"],"struple-impl":["&n @2 @0 struple::Struple",C[0]],"dylint_^J":["Dylint internals","1.0.7"],"equihash":["$8 Equihash Proof-of-Work @Y",C[0]],"strip_bom":["Add a @d BOM striping feature @0 `str` @5 `String`.","1.0.0"],"cam-geom":["Geometric models of cameras @0 photogrammetry",C[16]],"emoji_^u":["an emoji search @5 enumeration $w @7 one @Y",C[3]],"opentelemetry":["A &q $b @5 distributed &g @k",C[72]],"oxygengine-utils":["^e ^F @0 Oxygen Engine",C[42]],"alexa_sdk":["Implements Request/Response @0 Amazon Alexa skills","0.1.5"],"maze":["Maze Generator",C[4]],"las":["Read @5 &0 point clouds stored in @4 ASPRS las $0 @G.","0.7.4"],"netaddr2":["A @3 ^9 address @R @5 arithmetic @1",C[13]],"cdrs_&w_@b":[C[830],C[2]],"$6_indextree":["Serializing indextree $V.",C[3]],"fibers_timeout_queue":["Timeout queue @n on `fibers` @8",C[0]],"cargo-project":["@p to retrieve $f about a Cargo ^g","0.2.7"],"fid-rs":["High $J FID (Fully Indexable Dictionary) @1","0.1.1"],"libp2p-relay":["Communications relaying @0 ^v","0.4.0-rc.1"],"dl":["A @X @0 D @5 L.","0.0.2"],"noisy":["A $e noise ^1 @1 $A @0 @3.","0.0.3"],"porter-stemmer":["Flexible @5 unicode &E, Porter stemmer @2",C[4]],"pkcs7":["PKCS #7 padding","1.0.0"],"$P_sms":["^r ^N @0 @3 - ^r Server Migration Service @ 2016-10-24",C[27]],"ambassador":["Trait @2 delegation via $e @a",C[5]],"capnp-gj":["$n I/O @0 Cap'n Proto",C[5]],"unreachable":["An unreachable @V optimization hint in stable @f.","1.0.0"],"bracket-algorithm-traits":["Traits required @0 @4 bracket-* $R. Adapt $r maps to @4 $3 @7 Algorithm2D, Algorithm3D @5 BaseMap.","0.8.2"],"trait-async":[C[831],"0.1.24"],"array-bytes":["array-bytes","1.4.0"],"pqcrypto":["Post-Quantum ^w $9","0.14.2"],"limonite":["&7 blog @B",C[5]],"tokio-jsonrpc":["An @2 of ^k RPC 2.0 @0 $v","0.9.1"],"raw_$6":["A @M @1","0.1.4"],"k8-obj-storage":["Kubernetes ^x objects","2.0.0"],"machina":["Manage @5 execute assembly at @I.","0.6.1"],"hdf5":[C[832],C[7]],"ormx-macros":[C[896],"0.10.4"],"linkerd2-proxy-api":["Linkerd2 Proxy @x gRPC @6 @5 @E",C[3]],"aes_frast":["An &x-to-$d lib @0 AES encryption @5 decryption, coded in ^X $M @3-lang.","0.1.5"],"amber":["A @V search @5 replace ^4","0.5.9"],"rustsec":["Client @1 @0 @4 RustSec security advisory ^Q","0.24.3"],"google-logging2_beta1":[C[833],"2.0.8+20190325"],"lrpar":["Yacc-^i @i @B","0.10.2"],"cargo-geiger-serde":["TODO: Write description",C[3]],"$6_qs":["Querystrings @0 Serde","0.8.5"],"sgx_tstd":[C[21],"1.1.1"],"fnv":["Fowler–Noll–Vo ^z @Y","1.0.7"],"accel-core":["Support @8 @0 $O GPGPU kernels @u accel",C[1]],"log-panics":["A panic hook $i logs panic &y rather than printing them","2.0.0"],"wasmer-middleware-common":["Wasmer @I $u middlewares","0.17.1"],"clingo":["@3 idiomatic @6 to @4 clingo @1","0.7.2"],"pinto":["SQL query &I","0.6.1"],"ceres-mpq":["A ^X-@f @2 of a MoPaQ archive reader @5 writer","0.1.9"],"nrf52833-hal":["HAL @0 nRF52833 $s",C[24]],"solana-vote-signer":["Solana Vote Signing Service","1.4.28"],"gstreamer-check":["@3 @6 @0 GStreamer Check @1",C[26]],"html-macro":["html @e","0.1.15"],"zoneinfo_parse":["@p @0 @R zoneinfo $z zone @z","0.1.4"],"range-alloc":["&W range ^l $2 by gfx-rs backends",C[4]],"libsecp256k1-core":["Core @y @0 ^X @3 secp256k1 @2.",C[1]],"ufmt-macros":["`μfmt` @a","0.1.1"],"zkinterface":["An @2 of zkInterface","1.3.4"],"xalloc":["Suballocators @0 external $g (e.g., Vulkan device $g)","0.2.7"],"superlu-sys":["$8 @X @s @6 to SuperLU.",C[9]],"futures-await-test":[C[834],C[1]],"bf":["An optimizing Brainfuck interpeter @5 JIT ^2","0.4.8"],"c3p0_sqlite":[C[334],"0.53.0"],"pwbox":["Modular password-@n encryption",C[2]],"multizip":["Zip 3, 4, 5 or more @3 iterators",C[0]],"rcut":["rcut is a @3 replacement @0 GNU cut @l supports UTF-8.","0.0.52"],"solicit":["A @1 @2 of ^s/2","0.4.4"],"jsonrpc-quic":["^k-RPC &6 QUIC @0 $M-authd comm","0.0.9"],"float-ord":["A total ordering @0 floating-point ^M",C[9]],"resize":["@K image resampling @1 in ^X @3.","0.7.2"],"snarkos-storage":["Storage @0 a decentralized operating @O","1.3.17"],"antidote":["Poison-free versions of @4 ^E @1 Mutex @5 RwLock @g","1.0.0"],"shadowsocks-rs":["personal port of shadowsocks in @f.","0.9.0"],"substrate-wasmtime-jit":[C[1052],C[395]],"dhall_^B_@a":["^o @0 dhall","0.5.1"],"ra_ap_profile":["TBD","0.0.79"],"libappindicator-sys":[C[835],"0.6.1"],"ewasm":["A modular $x @I @0 Ethereum 2.0.","0.2.3"],"sn_messaging":["Safe Network Messaging","37.1.1"],"ssb-crypto":["Crypto $9 $2 by Secure Scuttlebutt","0.2.3"],"atty":["A @d @m @0 querying atty","0.2.14"],"odbc-api":["Write ODBC Applications in (mostly) $M @3.",C[98]],"xargo":["$8 sysroot &F @l lets you $j @5 customize `std`","0.3.24"],"ip_^9_table":["IPv4 @5 IPv6 ^9 $I lookup table.",C[3]],"runtime-tokio":["A Tokio-@n $n @I",C[197]],"radius-parser":["&B @0 @4 RADIUS @9","0.5.0"],"zombie":["A $M way to remove any zombie child processes (unix/linux only)","0.0.4"],"piston-shaders":["Shaders @0 game &D in @3",C[2]],"dia-go":["A weird log kit","0.3.1+deprecated"],"servo-egl":["Wrapper @0 EGL",C[5]],"ipp-headers-sys":["@f-bindgen ^8 $L declarations @0 IPP (part of ipp-@r Intel IPP @6)","0.4.3"],"binoxxo":["Binoxxo is a @1 to create @5 check binoxxo puzzles.","0.5.0"],"minilp":["A $I linear $m solver @1.",C[8]],"sp-runtime":[C[836],"3.0.0"],"async-weighted-semaphore":["An @J weighted semaphore.",C[5]],"libadwaita":["@3 @6 @0 libadwaita",C[837]],"incrementalmerkletree":["@v of an Incremental Merkle Tree",C[0]],"loggy":["An opinionated @1 @0 developing @5 $S @f @P @l $d &H.",C[9]],"tessellation":["3d tessellation @1.","0.8.2"],"linux-api-math":["Low-@C @6 to libm","0.0.1"],"term":["A $o formatting @1","0.7.0"],"splay_^0":["Splay Tree @n Data Structures (map, set, heap)","0.2.10"],"gitignored":["A @3 @2 of @4 gitignore $1",C[2]],"gfx_device_dx11":["DirectX-11 $N @0 gfx-rs","0.8.2"],"selecta":["@Q is not Selecta in @3. Please see &Y://github.com/felipesere/icepick","0.0.2-nopenopenope"],"pcap":["A packet capture @x $G pcap/wpcap","0.9.0"],"dusk-bls12_381":["Fork of @4 @2 of @4 BLS12-381 pairing-&E elliptic curve construction @7 some extra tooling needed by @4 Dusk team",C[7]],"cpp_@a":["$q @e @2 @0 @4 `cpp` @8","0.5.6"],"&I_@e":["A @e to ^n &o @5 a corresponding &I","0.5.1"],"scheduled-executor":["Single @5 multi-threaded task scheduler",C[2]],"veryfast":["Fast @3 @5 other &1 @0 game &D.","0.3.1"],"syn-ext":["Human &E or editable ^h @0 syn","0.3.1"],"error-chain":["Yet another ^q boilerplate @1.","0.12.4"],"mcmf":["@Q @8 is @0 solving instances of @4 minimum cost maximum flow problem. It uses @4 ^9 simplex $1 @t @4 LEMON graph optimization @1.","2.0.0"],"alternate-future":["@K promise/future @1 @7 continuations @l don't block.","0.1.4"],"safe-api":["SAFE @x","0.15.1"],"enclose":["A convenient @e @0 cloning ^V ^d a closure.","1.1.8"],"git-commitgraph":["Read-only $X to @4 git commitgraph $0 @G","0.6.0"],"bloomchain":["Standalone blockchain bloom filter",C[3]],"dbcc":["Compiles `@w base CAN` (dbc) @z ^d @3 @V.","2.2.1"],"doc_$0":["Move $r @3 crate's documentation ^d external @z.",C[3]],"gameboy_@F":["@F @1 to be $2 @0 Gameboy emulation","0.3.3"],"pathfinder_gpu":["A @d cross-@N GPU $F @1","0.5.0"],"crypto-bigint":["Pure @3 @2 of a big integer @1 $i has been designed fromthe ground-up @0 $d in ^w @P. @W constant-$z,no_std-&E @T of modern formulas @u const generics.","0.2.11"],"inherent-pub":["Mark &P in `impl Trait @0 Type` blocks inherent to @4 $l",C[5]],"luminance-glutin":["Glutin @j @0 luminance",C[28]],"wagyu-zcash-parameters-5":[C[323],C[3]],"tracing-core":["Core $9 @0 $U-@C &g.","0.1.21"],"imag-link":["Part of @4 imag @F ^m: imag-link @D",C[12]],"substrate-wasm-builder":["Utility @0 $K WASM binaries","4.0.0"],"virgil":["A Static Site Generator","0.2.3"],"xml_sax":["A convenient XML SAX @m $i can have several @T. Current @T: xml_oxide.","0.0.3"],"sudo_pair":["sudo IO-$Y to require a live human pair","1.0.0"],"nu_$Y_query_&V":["query &V @z @7 gjson","0.39.0"],"polar-core":["Polar @F @1 @0 oso, an open source policy $a @0 authorization that’s ^b in $r $U",C[74]],"utf":["UTF-8","0.1.6"],"embedded-graphics":["Embedded ^T @1 @0 &7 hardware displays","0.7.1"],"parsley":["An @2 of Scheme","0.9.0"],"opentelemetry-http":["Helper @T @0 exchange of traces @5 &q &6 ^s","0.5.0"],"nu_$Y_@t_bson":[C[298],"0.39.0"],"hamt-rs":["A Hash Array Mapped Trie @2 @n on @4 *Ideal Hash Trees* paper by Phil Bagwell.",C[1]],"reactor-trait":["A $b of $3 to define a $u @m across reactors","1.0.0"],"cargo-skyline":["A @S &i @0 ^p @7 Skyline plugins $A in @3","2.1.0"],"tree-sitter-ruby":["Ruby grammar @0 @4 ^0-sitter @R @1",C[95]],"procps-sys":["Interface @7 procps @1 on &j",C[4]],"tcp_typed":["A @h $G @N TCP socket APIs @l leverages @4 $l @O to ensure correct usage.It's quite &x to accidentally misuse @4 Berkeley sockets or similar APIs, resulting in ECONNRESET/EPIPE/etc, @w being lost on close, @5 potential hangs @t non-exhaustive $b of edge-triggered events.This @1 aims to make it impossible to misuse in non-unsafe @V.","0.1.4"],"ink_metadata":["[ink!] Metadata $h @0 ink! smart contracts.",C[107]],"wsrpc":["WebSocket-@n RPC @U",C[3]],"fedora":["base @1 @0 &2 @7 fedora services","1.1.0"],"fastcgi":["FastCGI @1 $A in ^X @3","1.0.0"],"tetsy-libp2p-noise":[C[222],"0.29.2"],"$6_any":["Dynamic @M @5 &9 @7 @4 @G chosen at @I","0.5.0"],"egg-mode":["@p to @o @7 @4 Twitter @x",C[72]],"display_bytes":["Human-readable display of byte sequences.",C[5]],"webdriver_@c":["WebDriver @c @1","0.2.5"],"abrute":["AESCrypt Brute force attempter.","0.1.8"],"cortex-m":["Low @C $X to Cortex-M processors","0.7.3"],"solana-notifier":["Solana Notifier","1.8.1"],"source-map-mappings":["Parse @4 `mappings` $c @t a source map.","0.5.0"],"http-signatures":["An @2 of @4 ^s Signatures RFC",C[7]],"qadapt-spin":["Synchronization $9 @n on spinning.They may contain @w, are usable ^Y `std`,@5 &k initializers are available.","1.0.1"],"wasmcloud-actor-keyvalue":["Interface to @4 key-&5 contract @0 $d by wasmCloud Actors",C[8]],"discord-indexmap":["A fork of @4 popular `indexmap` @1 @l adds a few extra APIs @l are yet to beupstreamed.","1.4.0"],"notifier":["A @h $G @N event notification APIs @l can also handle high-resolution timer events, including those set (on another &d) during a `notifier.wait()` call.","0.1.3"],"libostree-sys":["*&T* Please $d @4 'ostree-@r' @8 instead",C[3]],"prosafe_exporter":["Prometheus exporter @0 NETGEAR switches supported by ProSAFE Plus $w","0.2.8"],"libsamplerate-sys":["$L @6 @0 libsamplerate",C[32]],"spirit-log":["Spirit &w @5 config fragments @0 &H","0.4.4"],"amcl_@h":["Wapper &6 Milagro Cryptographic @p ($4 3)",C[2]],"vpx":["@3 idiomatic @h to libvpx","0.3.1"],"serde-humantime":["A Serde deserializer @0 `Duration`s @u @4 `humantime` @8","0.1.1"],"etch":["Not just a ^D formatter, don't mark it down, etch it.","0.4.2"],"cssparser-macros":["$q @a @0 cssparser","0.6.0"],"try_print":["A pair non-panicking @a to print to stdout","0.0.1"],"posix-ipc":["An @x to POSIX IPC $9","0.0.3"],"@d_csv":["A @d CSV @R @2","0.0.15"],"expectest":["Crate @s matchers @5 matcher @y @0 unit $S.",C[28]],"caldyn":["Dynamic evaluation of mathematical expressions","0.4.3"],"rusted_cypher":["Send cypher queries to a neo4j ^Q","1.1.0"],"zkp":["A toolkit @0 auto-^8 @T of Schnorr proofs",C[7]],"bounded-integer":["Bounded integers","0.5.0"],"everust":["Evaluates @f @V.",C[1]],"pipe":["Synchronous Read/Write $g pipe",C[2]],"ulid":["a Universally Unique Lexicographically Sortable Identifier @2","0.4.1"],"postscript":["$8 @X @s a @i @0 PostScript fonts.",C[24]],"yt-api":["a work in progress @1 to @o asynchronously @7 @4 youtube ^S","0.3.1"],"asn1_der_@b":["@Q @8 contains a $e @e to implement `@b` @0 my `asn1_der` @8",C[4]],"symphonia-codec-pcm":["Pure @3 PCM audio decoder (a part of ^g Symphonia).",C[2]],"google-appengine1_beta5":[C[838],C[239]],"indexmap":["A ^z table @7 consistent order @5 $I iteration.The indexmap is a ^z table where @4 iteration order of @4 key-valuepairs is independent of @4 ^z ^V of @4 keys. It has @4 usualhash table $7, it preserves insertion order except afterremovals, @5 it allows lookup of its elements by either ^z table keyor numerical index. A corresponding ^z set $l is also provided.This @8 was initially published under @4 name ordermap, but it was renamed toindexmap.","1.7.0"],"prototty_$0_^x":["@v of prototty_storage::Storage backed by @z.","0.29.0"],"chinese-lunisolar-calendar":["$8 traditional Chinese Calendar, called 農曆 or 陰曆 in Chinese, is @n on @4 moon, so it's also known as Lunar Calendar.","0.1.19"],"varmint":["A @3 @2 of @4 varint codec as $2 in Google's ^c Buffers","0.1.3"],"rafx-base":[C[457],"0.0.14"],"windows_winmd_@a":["Macro &w @0 @4 windows_winmd @8","0.3.1"],"tojson_@a":["A @d syntax ^h generates default ToJson impl","0.3.4"],"rusync":["Minimalist rsync clone in @3","0.7.0"],"sds011":["SDS011 ^j",C[5]],"terraform-zap":["Script @h to perform finer terraform destroy",C[2]],"salvo_@a":["salvo ^B @a",C[15]],"fluvio":["$8 offical Fluvio ^j @0 @3","0.9.9"],"ptx-builder":["NVPTX $j ^t","0.5.3"],"bitarray":["A const generics driven bit array specialized @0 hamming distance",C[13]],"sputnikvm":[C[271],C[306]],"minicbor":["A &7 CBOR codec suitable @0 no_std environments.","0.11.3"],"is_sorted":["Is an Iterator sorted?","0.1.1"],"sequoia-sqv":["A @d OpenPGP signature verification ^U","1.0.0"],"userfaultfd-sys":["Low-@C @6 @0 userfaultfd $7 on &j.","0.3.1"],"svls":["SystemVerilog @L @U","0.1.28"],"chalk-solve":["Combines @4 chalk-$a @7 chalk-ir","0.72.0"],"trimmer":["A whitespace- @5 $g-&E template $a","0.3.6"],"libftd2xx-ffi":["@3 $L @6 to @4 FTDI D2XX drivers.","0.8.4"],"nu-engine":["Core commands @0 nushell","0.39.0"],"deltachat-provider-database":["List of providers @5 how well they work @7 Deltachat",C[1]],"has":["Introducing 'has a' relationship @0 Rust's $3.",C[0]],"cargo-prune":["Prune &m cache",C[3]],"rdedup-lib":["Data deduplication @7 ^C @5 public key encryption. - @1","3.2.0"],"rustz":["A @1 @0 functional $m in @3.","0.1.4"],"logitech-lcd-sys":["$L @6 @5 loader @0 @4 Logitech LCD ^N.","2.0.0"],"ra_ap_@i":["TBD","0.0.79"],"gl_@B_profiling_struct":["ProfilingStructGenerator @0 gl_generator",C[4]],"exonum-node":["Node of @4 Exonum blockchain @k.","1.0.0"],"mates":["A very @d commandline addressbook",C[1]],"local-channel":["A non-threadsafe multi-producer, single-consumer, @Z-aware, FIFO queue",C[4]],"async-global-executor":["A global executor built on top of @J-executor @5 @J-io","2.0.2"],"ddc-i2c":["DDC/CI monitor control &6 I2C",C[5]],"i2cdev":["@W @x @0 $M $X to &j i2c device @m.","0.5.0"],"build-probe-mpi":["Probes @4 @O @0 an installation of an MPI @1","0.1.1"],"fontdue":["A @d no_std font @i @5 rasterizer.","0.6.2"],"libpcre-sys":["&M @6 to libpcre",C[8]],"@f_hawktracer":["@3 @6 @0 hawktracer profiling @1.","0.7.0"],"tinfo":["A frontend to manipulating tmux","0.6.0"],"parking_lot":["More compact @5 ^Z @T of @4 ^E synchronization $9.","0.11.2"],"bp7":["@3 @2 of dtn bundle @9 7 draft &Y://tools.ietf.org/html/draft-ietf-dtn-bpbis-31","0.9.2"],"fanta":[C[839],C[3]],"cart-tmp-wgc":["WebGPU @F logic on gfx-hal",C[0]],"dasp_frame":["An $F @0 audio PCM DSP frames, along @7 useful conversions @5 $B.",C[16]],"awc":["Async ^s @5 WebSocket @c @1 built on @4 Actix ecosystem","3.0.0-beta.9"],"svgbobdoc":["Renders ASCII diagrams in doc comments as SVG images.",C[55]],"recap-derive":["Derives FromStr impl @0 @g $i are then deserialized @u recap","0.1.1"],"medallion":["JWT @1 @0 @f @u $6, serde_json @5 openssl","2.4.1"],"cbox":["C pointer boxing, @0 when ^p @7 ffi",C[1]],"xactor-derive":["Xactor @a","0.7.1"],"piccolog":["A custom logger @0 body-image @5 related $R","1.0.3"],"heca":["Hebrew calendar $w","1.5.0"],"a2s":["@3 @2 of Source A2S query","0.5.0"],"google-dfareporting2d3":[C[840],C[117]],"munch":["Blazing $I, zero-copy @i combinator @1 @7 an elegant @x @0 both $p @5 bytes.",C[7]],"hawk":["Hawk @v @0 @3","3.2.1"],"log-reroute":["Support to change &H target @0 @4 log @8","0.1.8"],"chacha20poly1305":["Pure @3 @2 of @4 ChaCha20Poly1305 Authenticated Encryptionwith Additional Data Cipher (RFC 8439) @7 optional architecture-specifichardware acceleration. Also contains @T of @4 XChaCha20Poly1305extended nonce variant of ChaCha20Poly1305, @5 @4 reduced-roundChaCha8Poly1305 @5 ChaCha12Poly1305 ^O variants.","0.9.0"],"tp-note":["Minimalist note taking: save @5 edit $r clipboard content as a note $0","1.13.10"],"ipp-sys-build-help":["^t @0 linking IPP &4 (part of ipp-@r Intel IPP @6)",C[4]],"orbutils":["$8 Orbital ^e",C[32]],"$P_kinesisvideo":["^r ^N @0 @3 - Amazon Kinesis Video Streams @ 2017-09-30",C[27]],"byte-slice-cast":["Safely cast bytes slices @t/to slices of built-in fundamental numeric @g","1.2.0"],"headers-ext":[C[841],"0.0.4"],"http-service-hyper":["HttpService @U @l uses Hyper as $N","0.4.1"],"tls-async":["TLS @j @0 AsyncRead/AsyncWrite @u &8-tls",C[842]],"xio_base_datatypes":["XIO base @w $k",C[7]],"wasm-encoder":["A low-@C $x encoder.",C[7]],"google-appengine1":[C[843],C[844]],"hd44780-hal":[C[845],C[5]],"typescript-definitions-ufo-patch":[C[313],C[38]],"eth-keystore":["A minimalist @1 to @o @7 encrypted ^k keystores",C[1]],"node-sys":["Raw @6 to @4 Node.js @x @0 projects @u &s-bindgen.","0.4.2"],"tokio-serial":["A serial port @2 @0 $v","5.4.1"],"enigma":["A (hopefully) growing set of ^w @y. Mostly a learning experiment @0 me @5 obviously not anywhere near useable.","0.0.2"],"rustfix":[C[1048],"0.6.0"],"arch-audit":["A $w $C pkg-audit @0 Arch &j @n on Arch Security Team @w","0.1.20"],"drone-config":["Configuration @0 Drone, an Embedded Operating System.",C[24]],"pendulum":["Hashed timer wheel @7 various runtimes","0.3.1"],"duckscript_^y":["$8 duckscript @D $D executable.","0.8.7"],"dxplr":["@3 @h $G D3D11, D3D12, DXGI, D2D @5 DWrite","0.0.25"],"chrono":["Date @5 $z @1 @0 @3","0.4.19"],"utf16-ext":["Extensions @0 &3 @5 $O utf-16",C[0]],"hson":["^k $C @G @0 HTML. Allow querying @4 @w through searching &P similar to @c-side DOM queries &P",C[38]],"hlist":["Heterogeneous list @7 $l-directed search",C[4]],"zdump":["A @3 $4 of @4 zdump $w.","1.3.2"],"bitmask":["A bitmask @B @0 enum scoped bit flags.","0.5.0"],"decimate":["@K decimal @1 in ^X @3",C[8]],"ffi_^u":["$L @E",C[26]],"async-amqp":["lapin $T @7 @J-std","1.2.0"],"css-color-parser":[C[846],C[4]],"passfd":["File descriptor passing","0.1.4"],"ohnomore":["Transformations @0 TüBa-D/Z lemmas",C[2]],"cat-rs":["cat @c @7 @f",C[847]],"selene-lib":["A @1 @0 linting Lua @V. You probably want selene instead.",C[24]],"nu-errors":["Core ^q subsystem @0 Nushell","0.39.0"],"ti154":["@p @0 $Z @5 @R TI 15.4 UART packets.","0.3.4"],"retro-pixel":["Bitmaps @g @0 getting @l retro visual.",C[9]],"dust":["Dust allows to $j &x @w driven tests in @3",C[0]],"interledger-router":["Router @0 Interledger requests",C[2]],"rcrt1":["Relocate ELF dynamic symbols","1.0.0"],"canonical-form":["Reduce graphs @5 other combinatorial $k modulo isomorphism.","0.9.4"],"timeout-readwrite":["Adds timeout capabilities to Readers @5 Writers","0.3.1"],"versionize_@b":["Implements @4 Versionize @b ^B @e.","0.1.4"],"locale":["@p @0 basic localisation. Warning: Major rewrite pending @0 0.3!",C[8]],"async-stdio":["Adapter @0 @u @J read/&0 streams in std::io contexts","0.3.0-alpha.4"],"sdoc":["Framework @0 $K custom CLIs $G shell, scripts, @5 executables","0.8.11"],"predicates-core":["An @x @0 boolean-valued predicate @y.","1.0.2"],"vorbis-encoder":["Interface @0 @4 libvorbis-encoder @1","0.1.4"],"calloop":["A callback-@n event loop","0.9.1"],"rutie":["$8 tie $t Ruby @5 @3.","0.8.3"],"bcder":["Handling of @w encoded in BER, CER, @5 DER.","0.6.0"],"amqpr-api":["A $v future @n amqp ^S @1","0.4.1"],"xhtmlchardet":["Character set detection @0 XML @5 HTML","2.1.0"],"keyed_priority_queue":["Priority queue @l @j changing priority or early remove by key","0.4.1"],"async-bincode":["&b $X to a bincode-encoded item ^L.","0.6.1"],"cargo-xbuild":["^W cross-compiles @4 sysroot $R @F, compiler_builtins, @5 alloc.","0.6.5"],"websocat":["Command-$D @c @0 &e sockets, $C netcat/curl/socat @0 ws://.","1.8.0"],"statechart":["statecharts: hierarchical, reactive state machines","0.0.8"],"actix-codec":["Codec @E @0 ^p @7 framed protocols",C[2]],"kdbush":["A very $I &k spatial index @0 2D points @n on a flat KD-^0.",C[3]],"chinese-numbers":["Convert i64 to a readable Chinese @G. e.g. 12345 is converted to 一万二千三百四十五","1.0.4"],"novault":["vaultless password ^A ^y","0.4.2"],"ascii_^u":[C[848],"0.9.3"],"blingfire":["Wrapper @0 @4 BlingFire tokenization @1","1.0.0"],"mrt-rs":["A @1 @0 @R Multi-Threaded Routing Toolkit (MRT) formatted streams.","2.0.1"],"xim-ctext":["compound ^D en/decoder",C[3]],"locale_config":["Maintains locale preferences @0 ^I @5 &d @5 initialises them byinspecting @4 @O @0 user preference.",C[1]],"chrome-devtools-rs":["Low-@C @1 @0 &2 @7 @4 Chrome Devtools ^c","0.0.0-alpha.3"],"sixel-sys":["$L @6 to libsixel","0.3.1"],"pancurses-result":["pancurses-result is a @h @0 pancurses @l aims to provide asafe @m to curses. @Q @1 aims to guarantee &d andmemory safety, whereas pancurses just @s direct C @6.","0.5.1"],"paw-raw":["Traits to implement custom Paw @T","1.0.0"],"r2d2-mongodb":["A MongoDB adaptor @0 r2d2 connection pool",C[8]],"romaji":["Romaji-Kana transliterator","0.1.1"],"pallet-scored-pool":["FRAME &v @0 scored pools","3.0.0"],"handlebars-iron":["Handlebars templating &G @0 Iron.","0.29.0"],"conrod_piston":[C[214],"0.75.0"],"audiopus_@r":["$L-Binding to Opus, dynamically or statically linked @0 ^6 @5 UNIX.",C[8]],"magic-sys":["Declarations @0 @4 `libmagic` C @1",C[55]],"tiny_&z":["Low @C ^s @U @1","0.9.0"],"ruma-signatures":["Digital signatures according to @4 Matrix specification.","0.9.0"],"gluon-salsa-macros":[C[849],"0.15.2"],"error-chain-mini-derive":["derives @0 ^q-chain-mini",C[3]],"simplelog":["A @d @5 &x-to-$d &H facility @0 Rust's log @8","0.10.2"],"kuznyechik":["Kuznyechik (GOST R 34.12-2015) block cipher","0.7.2"],"chunked_transfer":["Encoder @5 decoder @0 ^s chunked transfer coding (RFC 7230 § 4.1)","1.4.0"],"pazi":["A $I autojump ^t","0.4.1"],"selectors":["CSS Selectors matching @0 @3",C[88]],"simulacrum_user":["Functionality @l is helpful when @u mock objects created @7 Simulacrum.",C[0]],"wasm-snip":["Replace a &s @Y @7 an `unreachable`.",C[2]],"vec_2d":["@K 2d vector @0 @3",C[4]],"num-cmp":["Comparison $t differently typed ^M",C[0]],"immeta":["An image metadata @R @1",C[2]],"path-matchers":["A $b of path matchers.","1.0.2"],"tokio-tar":[C[850],C[1]],"ruru":["&M Ruby &p in @3","0.9.3"],"fluvio-service":["Provide TCP &t @h &6 fluvio @9","0.5.0"],"fnm":["Fast @5 @d Node.js $4 &F","1.27.0"],"devx-cmd":["Convenience @h &6 std::^I::Command @0 xtask $R","0.5.0"],"vec_mut_scan":["Forward scan &6 a vector @7 mutation @5 item removal",C[2]],"avahi-sys":["@H to Avahi, a @1 @0 zero-$H networking.",C[13]],"ngram":["Iterator adaptors @0 n-grams @5 k-skip-n-grams.",C[49]],"ptr":["Unique pointer","0.2.3"],"wit-parser":["&B @0 @4 $x Interface Types $Q @G",C[3]],"@f_erl_ext":["Erlang external term @G codec.",C[5]],"nrf52832-pac":["Peripheral Access Crate @0 Nordic's nrf52832 microcontroller",C[12]],"overflower":["A ^2 $Y to easily select overflow behavior @0 all integer $B of an item","0.4.6"],"crossterm_input":["A cross-@N @1 @0 &3 userinput.","0.5.0"],"ruma-events":["Serializable @g @0 @4 events in @4 Matrix specification.","0.24.6"],"limited-table":["A preallocated table @7 @4 limited size",C[0]],"actix-casbin-auth":["Casbin actix-&e $X control &G","0.4.4"],"colored_&V":["Colorize ^k, @0 printing it out on @4 @D $D","2.1.0"],"rocket_sync_db_pools":["Rocket @J ^Q pooling @j @0 sync ^Q drivers.",C[59]],"treesize":["List directory ^0, sorted by size","0.5.0"],"notnow":["A $o @n task @5 TODO ^A software.","0.2.6"],"pixset":["Generates a tileset @t a RustType ^i font","0.0.6"],"nerd_fonts":["Nerd Fonts in @f.","0.1.9"],"json-event-parser":["A ^k event @i @5 serializer","0.1.1"],"convertible":[N,"0.0.1"],"log4rs-fluentd":["Fluentd appender @0 log4rs",C[3]],"lolcat":["$8 good ol' lolcat, now @7 fearless concurrency.","1.3.2"],"rustc-demangle":["@3 ^2 symbol demangling.","0.1.21"],"cip_@f":["@Q is a Cubic Interpolation Pseudo-Particle (CIP) @2 in @3. For more $f, contact mgubolin at protonmail dot com or @4 original article in TAKEWAKI, Hrn; NISHIGUCHI, A.; YABE, T. Cubic interpolated pseudo-particle method (CIP) @0 solving hyperbolic-$l equations. Journal of computational physics, 1985, 61.2: 261-268. or TAKEWAKI, Hideaki; YABE, Takashi. $8 cubic-interpolated pseudo particle (CIP) method: $U to nonlinear @5 multi-dimensional hyperbolic equations. Journal of Computational Physics, 1987, 70.2: 355-372.","0.9.8"],"hm11":["HM-11 Bluetooth AT ^j @8",C[5]],"google-content2_sandbox-cli":[C[851],"2.0.4+20181009"],"libimagstore":[C[39],C[12]],"cretonne-codegen":[C[852],"0.13.2"],"miniquad_^D_rusttype":["glium_text fork, ^D drawing @7 miniquad @5 rusttype",C[4]],"structview":["Viewing $Q @w as high-@C @w $k, safely.","1.1.0"],"password-hash":["Traits $i describe @4 $7 of password hashing ^3,as well as a `no_std`-&E @2 of @4 PHC $c @G(a well-defined subset of @4 Modular Crypt Format a.k.a. MCF)",C[9]],"oauth1-request-derive":["A @b @e @0 `oauth1_request::Request` $y.","0.4.1"],"redis-ac":["Asynchronuos commands ^t @0 redis-rs",C[5]],"clt":["@3 @8 @0 efficiently $Z @D $D @P.","0.0.6"],"embedded-hal-spy":["An embedded_hal device hooking on another embedded_hal @2, retriving @w @t @Y calls @5 responses","0.0.5"],"qt_qml":["@H @0 QtQml C++ @1","0.5.0"],"sha2ni":["SHA-2 ^z @y","0.8.5"],"redisearch_^S":["@3 RediSearch @x $W","0.5.0"],"appendlist":["An append-only list @l preserves references to its elements","1.4.0"],"der":["Pure @3 ^b-&E @2 of @4 Distinguished Encoding Rules(DER) @0 Abstract Syntax Notation One (ASN.1) as described in ITU X.690 withfull @j @0 heapless no_std targets",C[853]],"fixed_len_str_example":["@Q a ^t @8 @0 document @4 expansion of a $e @e one,don't $d.","0.2.5"],"jsonrpc_@c_@e":["Internal ^B-@e @8 @0 `jsonrpc_client`.",C[1]],"croaring-sys-mw":[C[854],"0.4.5"],"cssparser":["@3 @2 of CSS Syntax Level 3","0.29.0"],"murmur3":["A @f @2 of Murmur3 ^z","0.5.1"],"alt_$6_&V":[C[897],"1.0.61"],"mpeg2ts-reader":["&B @0 MPEG Transport Stream @w",C[23]],"cqdb":["@3 @2 of Constant Quark Database (CQDB)","0.5.6"],"enquote":["Quotes @5 unquotes $p","1.1.0"],"pq-sys":["Auto-^8 @f @6 @0 libpq","0.4.6"],"grabinput":["Unixy lib @0 &3 @t a $0 or @t stdin",C[5]],"mit-commit-msg":["Validate @4 commit message @l a user has input","5.11.6"],"peroxide-ad":["Proc @e @0 automatic differenitation of Peroxide",C[1]],"android_sensor-sys":["@H to Android Sensor @p.","0.1.4"],"nanomsg-sys":["$8 low-@C @6 @l is $2 by @4 nanomsg @1.","0.7.2"],"lset":["Data @g describing linear sets",C[3]],"petname":["Generate human readable &L names. Usable as a @1 @5 @t @4 @D-$D.","1.1.2"],"overload":["@W a @e to simplify operator overloading.","0.1.1"],"mock-it":["Make mocking reliable",C[1]],"ether-converter":["Ether unit converter","0.1.3"],"graphlib":["Graphlib is a @d @5 powerful @f @1 @0 @4 graph @w-$V.","0.6.2"],"sn0int-std":["sn0int - stdlib",C[88]],"unicode-vo":["&h vertical orientation detection",C[0]],"cron-parser":["@p @0 @R cron expressions @7 timezone @j.","0.7.9"],"noble-transaction-payment-rpc-runtime-api":["RPC @I @x @0 transaction payment FABRIC noble","2.0.0"],"js":["Call JavaScript @t $x",C[1]],"hematite-nbt":["A full-featured @1 @0 ^p @7 Minecraft's Named Binary Tag (NBT) $0 @G, including Serde @j.","0.5.2"],"unicode-xid":["Determine whether characters have @4 XID_Startor XID_Continue properties according toUnicode Standard Annex #31.",C[8]],"elrond-codec":["Lightweight $Q serializer/deserializer, $A especially @0 Elrond smart contracts","0.8.1"],"pin-convert":["Traits @0 converting to `Pin` variants.",C[0]],"recital":["Create, parse, edit, @5 compare semantic $4 ^M.",C[1]],"atom":["A $M $F $G AtomicPtr",C[2]],"tc-chain-spec":["Tetcore chain configurations.","2.0.0"],"standback":["New ^E @1, old ^2.",C[2]],"spawner":["Tiny @h @0 `&d::spawn` $i optionally auto-joins threads on drop",C[9]],"deep_space":["A highly portable, batteries included, transaction ^1 @5 key ^A @1 @0 Cosmos blockchains","2.4.7"],"mediawiki_@i":["A strict @i @0 MediaWiki markdown.","0.4.2"],"ecs":["An Entity Component System (ECS) Framework","0.23.1"],"tetsy-libp2p-swarm":["$8 tetsy-^v swarm","0.28.0"],"wasi-tokio":[C[52],C[53]],"nom-recursive":["Extension of nom to handle left recursion",C[2]],"gsa-client":[C[377],"1.4.2"],"rust-crypto-wasm":[C[855],"0.3.1"],"new_mime_guess":["A @d @8 @0 associating MIME @g to $0 &p.","3.0.1"],"near-rpc-error-core":[C[856],C[0]],"thunks":["&b composer @0 @3.",C[0]],"udgraph":["Universal &m graphs","0.7.0"],"devp2p":["Ethereum's devp2p @9 @2 in @3.","0.4.1"],"hex-literal-impl":["Internal @2 of @4 hex-literal @8",C[8]],"gstreamer-rtsp-sys":["$L @6 to libgstrtsp-1.0",C[26]],"couch_rs_@b":[C[857],"0.8.32"],"off_blockway":["Custom @1 @0 @4 OffBlockway ^g. I wouldn't $d this if I were you :(","0.0.8"],"cordic":["Special @y @0 fixed-point ^M @u @4 CORDIC method.","0.1.5"],"sml":["@K markup @L optimized @0 loading config @z @5 schemas.","0.1.46"],"google-analyticsreporting4":["A @q @1 to @o @7 AnalyticsReporting (@9 v4)","2.0.8+20210310"],"tectonic_dep_@j":["Support @0 finding third-party &4 @u either pkg-config or vcpkg.",C[0]],"unic":["UNIC: &h @5 Internationalization Crates","0.9.0"],"servo-skia":["2D graphic @1 @0 drawing Text, Geometries, @5 Images","0.30000023.1"],"process-memory":["A @f @1 @l can read/&0 @4 $g of other processes.",C[2]],"camera_controllers":["A @1 @0 3D camera control.","0.32.0"],"dcpu16-gui":["DCPU-16 emulator GUI",C[3]],"zstd-sys":["Low-@C @6 @0 @4 zstd ^C @1.","1.6.1+zstd.1.5.0"],"soketto":["A websocket @9 @2.","0.7.0"],"hyper_$6":["Serde @j @0 Hyper @g",C[17]],"opter":["Turn a series of $p ^d options exposed as an iterator.",C[3]],"pkg-version-impl":["@v details of @4 `pkg-$4` @8. Do not $d this @8, itdoes not provide a stable @x.","0.1.1"],"sp-sandbox":[C[858],"0.9.0"],"nix-ptsname_r-shim":["Nix `ptsname_r` shim",C[3]],"jsonrpc-derive":["High @C, typed @h @0 `jsonrpc-@F`","18.0.0"],"broccoli":["broadphase collision detection ^3","2.1.1"],"futures-async-runtime-preview":[C[859],"0.2.3"],"copypasta-ext":["A clipboard @1 ^R useful &p @0 copypasta.","0.3.7"],"jmap":["JMAP @i/@B","0.0.5"],"wifilocation":["Get $r GPS location @u WiFi hotspots",C[1]],"nom-packrat":["Extension of nom to apply Packrat Parsing","0.6.0"],"clap-cargo":["Re-usable CLI flags @0 `@S` plugins","0.6.1"],"compressed_log":["Log ^C on @4 fly","0.3.9"],"rust-dense-bitset":["Efficient @5 compact bitsets @0 @3.","0.1.1"],"zip_codes":["A lookup table @0 all primary U.S. ZIP codes.",C[0]],"image-convert":["A high @C @1 @0 image identification, conversion, interlacing @5 high quality resizing.",C[16]],"solana-foundation-delegation-program-cli":["Solana Foundation Delegation Program Command-$D Utility","1.0.5"],"zellij-tile":["A &7 @c-side @1 @0 $O Zellij plugins","1.2.0"],"fts":["A @3 @1 @0 high $J directory walking @u libc fts",C[1]],"libgssapi-sys":["A low @C $W to gssapi","0.2.4"],"two-sided-vec":["Double ended vectors @0 @f, $i can grow in both @4 front @5 back",C[38]],"rand_seeder":["A universal &L &a seeder @n on SipHash.",C[8]],"webbrowser":["Open URLs in &e browsers available on a @N","0.5.5"],"luminance-windowing":["&O windowing @V @0 luminance",C[13]],"blockchain-traits":["A minimal description of a programmable blockchain.","0.4.1"],"dbus-crossroads":["Framework @0 $O D-Bus method handlers","0.5.0"],"conllx":["Readers/writers @0 @4 CoNLL-X &m @G","0.12.1"],"better-as":["Explicit $l casting",C[3]],"accepted":["A ^D editor to be ACCEPTED.",C[9]],"quine-mc_cluskey":["@3 @2 of @4 Quine-McCluskey $1 @5 Petrick's method","0.2.4"],"mongodm":["A thin ODM layer @0 mongodb","0.7.3"],"instrument":["A foundational $l @0 performable musical instruments. Converts discrete note events to a continuous signal of amplitude @5 frequency &6 N &a of voices. Useful @0 instruments such as synthesizers or samplers.",C[3]],"libvirt-sys":["&M @6 to libvirt @1","1.2.18"],"hash-db":["Trait @0 ^z-keyed databases.","0.15.2"],"gcd":["Small @3 @1 (@7 no &c) @0 calculating greatest $u divisor","2.0.2"],"ruma-events-macros":["A $e @e $2 by @4 ruma-events @8.","0.24.6"],"git-url":["A WIP @8 of @4 gitoxide ^g ^5 @R @5 @M of git-url","0.3.4"],"metrics-controller":["Metrics Controller is a ^g to collect &q @0 Mozilla IOT projects.","0.1.6"],"near-vm-runner":[C[860],C[359]],"topd":["A remote top daemon","1.3.1"],"fastly":["Fastly Compute@Edge @x",C[7]],"exponential-backoff":["A &7 @5 flexible backoff @Y","1.0.0"],"eidolon":["@W a single TUI-@n registry @0 drm-free, wine @5 steam games on linux, accessed through a rofi launch menu.","1.4.6"],"lopdf":["A @3 @1 @0 PDF document manipulation.","0.26.0"],"rhusics-ecs":[C[528],"0.7.0"],"gmp-mpfr":[C[463],"0.5.2"],"progress-streams":["Progress callbacks @0 @g $i implement Read/Write","1.1.0"],"cargo-trim":["Binary $U to cleanup $CARGO_HOME cache",C[7]],"amethyst_^u":["Amethyst ^u",C[99]],"@f_ledger":["CLI accounting ^4",C[7]],"brb_membership":["BRB Membership: Enables nodes to dynamically join @5 leave a BRB voting group","1.0.10"],"egg-mode-text":["Text @R @0 Twitter: character counting, hashtag/mention extraction","1.14.7"],"leak":["Safely leak @w @t owned @w $k",C[4]],"tm4c-hal":["&O bits of HAL @0 @4 TM4C123x/TM4C129x family of $s","0.4.1"],"msdos_$z":["Converts an MsDosDateTime (FAT $z) to a Tm &5","0.1.6"],"quote":[C[861],"1.0.10"],"clj_rub":["@3 Builder @0 Clojure","0.0.4"],"renv":["Environment variable loader","0.2.3"],"easy-csv":["Easily parse &o @t CSVs.",C[9]],"detour":["A cross-@N detour @1 $A in @3","0.8.1"],"swc_ecma_ast":["Ecmascript ast.","0.56.0"],"oasis-cbor":["@3 CBOR @M built as a thin @h $G sk-cbor.",C[5]],"async-lapin":["lapin $T @7 @J-io","1.2.0"],"libwebp":["A $W to libwebp",C[4]],"dahl-roxido":["Utility @Y when interfacing R @5 @3.","0.3.3"],"influxdb_@b":["InfluxDB Driver @0 @3 - &n",C[2]],"gfx_device_gl":[C[862],"0.16.2"],"tract-nnef":[C[94],"0.15.5"],"pwrsurge":["Dynamic, minimalistic power &F $A in @3","0.3.1"],"pinyin-order":["A @3 @1 @l helps sort a $c vector by Pinyin. @3 字符串向量按拼音排序",C[4]],"lightspeed_@F":[C[209],"0.40.1"],"prefix_num_ops":["$8 num_traits @x, but in prefix notation.","0.1.3"],"variable_size_byte_writer":["A @1 @0 $O variable-size bytes ^d io::Write traited targets.","0.1.5"],"grep-regex":["Use Rust's regex @1 @7 @4 'grep' @8.","0.1.9"],"lexers":["Tools @0 tokenizing @5 scanning","0.1.3"],"angular-units":["A @1 @0 representing, manipulating @5 converting $t angular quantities in various units through a $l-$M interace.","0.2.4"],"thincollections":["Alternative @T @0 vector, map @5 set @l are faster/smaller @0 some $d cases.","0.5.3"],"lsystems":["A @d @1 @0 ^p @7 Lindenmayer systems.",C[5]],"pact_verifier":["Pact-@3 @j @1 @l implements provider verification @y","0.11.0-beta.2"],"genetic_planner":["A @d @1 @l $d genetic $1 to resolve planning problems",C[2]],"guard":["Macro @2 of RFC 1303: a guard-let-else statement a la Swift","0.5.1"],"songbird":["An @J @3 @1 @0 @4 Discord voice @x.",C[3]],"opus":["Safe @3 @6 @0 libopus",C[5]],"bae":["A @3 ^B-@e &U @i","0.1.6"],"vigil-reporter":["Vigil Reporter @0 @3. Used in pair @7 Vigil, @4 Microservices Status Page.","1.2.0"],"rtic-monotonic":["Core abstractions of @4 Real-Time Interrupt-driven Concurrency Monotonic timers",C[59]],"keypad":["Platform-&f ^j @0 keypad matrix circuits","0.1.4"],"is_not":["A $e @e much $C #[cfg(...)] @l can be re-exported @t a @1 @n on enabled features",C[0]],"milter-callback":["Attribute @a @0 milter callback ^1","0.2.3"],"thrift_codec":["A @1 @0 $5/^P binaries specified by @4 thrift @9","0.1.1"],"intrusive-collections":["Intrusive &C @0 @3 (linked list @5 red-black ^0)","0.9.2"],"lru-disk-cache":["A LRU cache @0 @z on disk.","0.4.1"],"av-bitstream":["@K bit writer/reader",C[4]],"svgparser":["Featureful, pull-@n, zero-allocation SVG @i.","0.8.1"],"turn":["A ^X @3 @2 of TURN","0.5.0"],"$P_ses":["^r ^N @0 @3 - Amazon @K Email Service @ 2010-12-01",C[27]],"transit_model_&I":["A @8 to easily $j a transit_model::Model",C[1]],"fs-set-times":["Set filesystem timestamps","0.12.1"],"velcro":["Convenience @a @0 initializing vectors, ^z maps @5 other @3 &C.","0.5.3"],"timely_communication":["Communication layer @0 timely dataflow",C[28]],"zathura-plugin":["Idiomatic @h $G Zathura's Plugin @m",C[2]],"p256-cortex-m4":["Idiomatic, misuse-resistent @6 to P256-Cortex-M4",C[288]],"zstd":["Binding @0 @4 zstd ^C @1.","0.9.0+zstd.1.5.0"],"demoDisk":[C[61],C[62]],"comp":["Pure-@e Do notation @5 List-comprehension @0 Option, Result @5 Iterator.",C[5]],"&a_or_$c":["@W a $l $i can be deserialized to a &a or a $c.",C[3]],"torchbear":["Lua $m ^K in @3","0.11.5"],"riker-macros":["Macro @8 @0 Riker actor @k",C[3]],"conniecs-derive":["@W ^B @a @0 deriving most of @4 boilerplate in @4 `conniecs` @8",C[3]],"typedb":[C[863],"0.9.0"],"libwebp-image":["A bridge @1 @0 libwebp @5 image",C[3]],"num-bigint":[C[864],"0.4.2"],"tari_comms":["A peer-to-peer messaging @O","0.8.1"],"va_list":["@W a @f @2 of @4 'va_list' $l @0 a &7 set of ABIs. Allowing @f @T of @y $C vprintf.","0.1.3"],"q":["Soon to come - Playground.","0.0.2"],"twist":["An @2 of @4 RFC6455 websocket @9 as a $v Codec @5 a $v-proto pipeline ServerProto","0.7.1"],"llvm":["A $M @h @0 LLVM @6","0.0.1"],"unic-ucd-common":["UNIC — &h Character Database — &O Properties","0.9.0"],"polonius-engine":[C[865],C[15]],"shader_$4":["A ^t @1 @0 detecting @5 picking ^i shaders","0.7.0"],"matrix":["$8 @X @s a matrix laboratory.",C[74]],"ansi_term":[C[898],"0.12.1"],"libipld-core":[C[866],C[28]],"scron":[C[1042],"1.0.1"],"stm32ral":["Register $X layer @0 all STM32 $s","0.7.0"],"gdk":["@3 @6 @0 @4 GDK 3 @1","0.14.3"],"emacs-macros":["Proc @a @0 emacs modules",C[26]],"sp-authority-discovery":[C[867],"3.0.0"],"xxhash2":["@H to libxxhash to provide @4 xxHash $1 in @3. Also contains animplementation of @4 std::^z $3 so this can be $2 @7 @4 standardHashMap.",C[0]],"show":["A `show!` debugging @e to print expressions @7 @4 Show formatting $y, ^Y $O out `\"{}\", ` in @4 `println!` @e.","0.1.1"],"dodrio":["A $I, bump-allocated virtual DOM @1.",C[3]],"emailmessage":["Email Message @1 @0 @3",C[8]],"ckb-standalone-types":["A standalone $4 of ckb-@g",C[4]],"c2rust-bitfields-derive":["C-^i struct bitfield @b @2 $2 in @4 C2Rust ^g",C[5]],"conduit-test":["Testing @E @0 conduit-@n stacks",C[171]],"mozangle":["Mozilla’s fork of Google ANGLE, repackaged as a @3 @8","0.3.3"],"regex-macro":["A @e to ^n a lazy Regex.","0.1.1"],"xswag-base":["Basic $7 of xswag @O","0.3.1"],"offwall":["A @d, CSV-&3 OpenFlow controller dedicated to firewall bypassing","1.1.0"],"monome-rs":["Talk to monome &N","1.1.2"],"ws_^L_tungstenite":["Provide AsyncRead/AsyncWrite &6 Tungstenite WebSockets","0.6.1"],"@f_fluent":["fluentd @c @0 @f",C[1]],"pipe-logger":[C[868],"1.1.13"],"lucet-wasi-sdk":["A @3 @m to @4 wasi-sdk ^2 @5 linker","0.6.1"],"sn0int":["Semi-automatic OSINT @k @5 @X &F",C[88]],"indexed-line-reader":["Allows seeking a $0 to a specific $D",C[5]],"is_executable":["Is there an executable $0 at @4 given path?","1.0.1"],"juniper_rocket":["Juniper GraphQL $T @7 Rocket",C[7]],"ckb-async-runtime":["CKB @J @I @h.",C[302]],"askii":["TUI @n ASCII diagram editor.","0.6.0"],"ubyte":["A @d, @q, const-everything, saturating, human-&E, no_std @1 @0 byte units.",C[12]],"listenfd":["A @d @1 to work @7 listenfds passed @t @4 outside (systemd/catflap socket activation)","0.3.5"],"kryptos":["A @3 @2 of various older, insecure, ^w ciphers.","0.6.3"],"pistoncore-glutin_window":["A Piston window back-end @u @4 Glutin @1","0.69.0"],"xvii":["@p @0 @R or printing Roman numerals","0.4.1"],"blurmock":["Bluetooth mock lib @0 @3","0.1.3"],"webrtc-vad":["@3 @m @0 @4 WebRTC Voice-Activity-Detction Module",C[2]],"dacite":["Mostly $M low-@C Vulkan @1","0.7.0"],"durt":["Command $D ^4 @0 calculating @4 size of @z @5 directories","1.0.2"],"luminal-handler":["Slightly more convenient @x on top of hyper::@U::Service","0.0.5"],"git_flow":["A CLI @0 an opiniated git flow @0 monorepos on GitHub","0.0.6"],"mg":["Minimal UI @1 @n on GTK+.",C[24]],"webrtc-srtp":["A ^X @3 @2 of SRTP",C[7]],"&J_slice":["Thread-local @5 &d-$M &J slice @g, $C `&[T]` butwithout lifetimes. @Q @1 depends only on `alloc` @5 `@F`, socan be $2 in environments ^Y `std`.","0.0.4"],"bosun_emitter":["A @D $D ^4 @5 @3 @1 to emit metric @w to StackExchange's monitoring @5 alerting @O Bosun.","1.2.0"],"ic-cdk":["Canister Developer Kit @0 @4 Internet Computer.",C[9]],"wasabi_leb128":["Read @5 &0 @4 variable length LEB128 &a @G.",C[2]],"greetd_ipc":["An @2 of @4 greetd IPC @9",C[7]],"catapult":["Catapult sends you logs elsewhere",C[4]],"serde-scale-wrap":["Wrapper @0 @g ^5 `Serialize`/`Deserialize` to implement `Encode`/`Decode` automatically",C[1]],"google-urlshortener1-cli":[C[869],"2.0.4+20150519"],"pxl":["🕹 A @d @k @0 making games","0.0.9"],"spa":["$8 Solar Position Algorithm ^F (SPA) @0 @3 calculates @4 sunrise-sunset @5 azimuth @5 zenith-angle @0 specific geo-position @5 $z (UTC); @0 example @0 solar-panel-alignment or automotive.",C[3]],"system-interface":["Extensions to @4 @3 ^E @1",C[23]],"git-traverse":["A WIP @8 of @4 gitoxide ^g",C[13]],"ra_ap_ide_assists":["TBD","0.0.79"],"ackorelic":["Idiomatic @3 @6 to @4 New Relic C ^N.",C[38]],"shkeleton":["Skeleton @f ^g","0.11.3"],"usb":["@p @0 low-@C $X to USB &N via libusb",C[8]],"rrpack-prime":["RillRate Pack: Prime","0.41.0"],"color_counter":["A @8 to inspect an image @0 most frequent colors.","0.2.3"],"procure":["@3 @p @0 interfacing @7 /^B",C[4]],"bytemuck_@b":["@b ^B-@a @0 `bytemuck`","1.0.1"],"peruse":["A &7 @i combinator @1",C[1]],"shorty-conf":["shorty-conf is @4 $H bit $2 by $R integrating shorty","0.5.4"],"rexpr":[C[870],"1.0.7"],"frunk_^B_@e_&w":["&O ^J @y @0 frunk's ^B @a",C[0]],"gloo-render":["Convenience @8 @0 ^p @7 browser's requestAnimationFrame",C[0]],"hdrhist":["Small footprint hdr histogram","0.5.0"],"tracing-serde":["A compatibility layer @0 serializing trace @w @7 `$6`",C[4]],"parsec-interface":["Parsec @m @1 to communicate @u @4 wire @9","0.25.0"],"gtk3-macros":["@3 @6 @0 @4 GTK 3 @1",C[24]],"glib-itc":["GLib inter-&d communication @1","0.5.0"],"glitter":["A $M, low-@C, zero-cost OpenGL @h @1.",C[4]],"jockey":["Custom @D-$D parsers @l practically &0 themselves",C[1]],"telegram-client":["Telegram @c",C[871]],"sentry-error-chain":["Sentry $T @l allows capturing ^q-chain errors.","0.21.0"],"bincode-grpc-macro":["^B @a @0 @4 bincode-grpc @8","0.7.2"],"tracing-tracy":["Inspect &g-enabled @3 @P @7 Tracy","0.7.0"],"wright":["$8 @f @X @5 @x @0 @4 wright $m @L.",C[7]],"swc_css_^H_@a":["Internal @e @0 @4 css @V @B",C[3]],"stack-graphs":["Name $W @0 arbitrary $m languages",C[1]],"deadwiki":["dead @d personal wiki","0.1.27"],"mop-solvers":["Solvers @0 MOP","0.5.0"],"wasmer-runtime-c-api":["Wasmer C @x @1","0.17.1"],"google-youtubereporting1-cli":[C[936],C[130]],"cargo-about":["Cargo $Y @0 $E a listing of all of @4 $R @5 @4 @4 terms under $i they are licensed",C[1]],"tp-transaction-pool":[C[872],"2.0.2"],"xch-ceb":["XCH - Chemical Equation Balancer","1.1.5"],"async-session":["Async session @j @7 pluggable &G","3.0.0"],"sauron_vdom":["A @1 @0 diffing virtual dom ^0 @5 ^n patches","0.26.0"],"iconz":["A @d CLI to ^n all @4 necessary Xcode icon sizes @t one single source $0",C[8]],"libp2p-ping":[C[873],C[547]],"pwnies":["🦄🦄🦄🦄🦄🦄🦄🦄🦄🦄","0.0.14"],"cargo-wasi":[C[874],"0.1.23"],"tee":["An adapter @0 readers $i delegate reads to a writer",C[0]],"cucumber":["Cucumber $S @k @0 @3, @7 @J @j. Fully &8, no external ^7 runners or &c.",C[13]],"orgize":["A @3 @1 @0 @R orgmode @z.","0.8.4"],"gaviota-sys":["Low @C @6 @0 libgtb, a @1 @0 Gaviota tablebase probing","0.1.17"],"oxischeme":["A Scheme @2, in @f.","0.0.3"],"light-curve-feature":["Feature extractor @t noisy $z series","0.3.3"],"domafic":["A @1 @0 $K $M, high-$J, universal &e @P",C[3]],"@f_rub":["@3 Builder @0 @3","0.0.5"],"to":["A $y @0 generalized conversion to a target $l.","0.0.1"],"mongodb_cwal":["A &8 MongoDB ^j @0 those who can't wait any longer (CWAL)","0.6.7"],"gluon_vm":["$8 virtual machine @0 executing @4 gluon $m @L",C[43]],"metro_m0":["Board Support @8 @0 @4 Adafruit Metro M0",C[12]],"mimalloc-rust":["@4 best $W @0 mimalloc in @f","0.1.1"],"hlua-badtouch":["badtouch specific fork of hlua","0.4.2"],"json-query":[C[875],"0.3.1"],"wordnet_stemmer":["Wordnet stemmer","0.1.1"],"polars-core":["Core of @4 Polars DataFrame @1",C[72]],"calcver":["auto calculation of $4 @n on &z://conventionalcommits.org","0.3.1"],"gettext":["An @2 of Gettext translation @k @0 @3",C[2]],"ledger-zondax-generic":[C[876],C[7]],"blist":["A deque implemented as a hybrid linked-list-of-arrays","0.0.4"],"recursive_sync":["Recursive-permissive Mutex @2 @0 @3","0.0.2"],"fluid":["An human readable ^7 @1.","0.4.1"],"intervallum":["&W interval @5 interval set @1.","1.4.0"],"$P_rekognition":["^r ^N @0 @3 - Amazon Rekognition @ 2016-06-27",C[27]],"iced_&8":["A renderer-&f @1 @0 &8 GUIs",C[2]],"meilisearch-sdk":["@3 @h @0 @4 MeiliSearch @x. MeiliSearch is a powerful, $I, open-source, &x to $d @5 deploy search $a.",C[16]],"euler":["Mathematics @1 @0 3D computer ^T",C[2]],"gobble":["A Combinator @n @i @0 $p @l gets out of @4 way, @5 leaves $r @V looking $C a grammer","0.6.3"],"lv2rs":["@3 @1 prototype @0 @4 creation of LV2 plugins",C[9]],"atomic_@E":["Basic @E @0 $I atomics on &l platforms","0.5.0"],"reservoir":["Reservoir sampling of iterators",C[3]],"&V_dotpath":["Dotted path $X to nested ^k objects (serde_json::Value)","1.1.0"],"bee-protocol":["All @g @5 workers enabling @4 IOTA @9","0.1.1"],"fuse":["@3 @1 @0 filesystems in userspace (FUSE)","0.3.1"],"quickcheck_@J":["Runtime-&f &U @a to $d quickcheck @7 @J tests.","0.1.1"],"timeago":["Given a Duration, lossily @G it $C in 'N days ago'. Parsing it back to Duration is not supported yet.",C[1]],"$P_secretsmanager":["^r ^N @0 @3 - ^r Secrets Manager @ 2017-10-17",C[27]],"tcod":["$8 @3 @6 @0 @4 Doryen @1 (a.k.a. libtcod).",C[23]],"may_queue":["May's ^J queue @1","0.1.8"],"cpclib":["Set of &1 @5 &4 to ease demomaking on @4 Amstrad CPC @N. WIP","0.4.4"],"ntex-macros":["ntex ^B @a","0.1.3"],"appro-eq":["Approximately equal $3 @5 assertion","0.3.1"],"hash-table":["Hash Table","0.2.5"],"overflow-error":["&O overflow ^q @g","0.4.1"],"cfb":["Read/&0 Compound File Binary (structured ^x) @z","0.6.1"],"observability":["Experimental &g ideas","0.1.3"],"libhdf5-sys":["&M @6 to @4 HDF5 @1",C[3]],"souper-ir":["A @1 @0 manipulating Souper IR","2.1.0"],"tokei":["Count $r @V, quickly.","12.1.2"],"jemalloc-info":["A &7 @1 @0 exporting jemalloc allocation @w in Elixir",C[1]],"wasmer-compiler-singlepass":[C[877],"2.0.0"],"ntex-service":["ntex &t",C[5]],"type-map":[C[1008],"0.5.0"],"swc_css_visit":["Visitor @0 css","0.21.0"],"loom":["Permutation $S @0 concurrent @V","0.5.2"],"better_typeid_@b":["@b @e part of better_any","0.1.1"],"mandos":["&B/writer of @4 Mandos ^7 @G",C[17]],"tweetust":["$8 Twitter @x @h",C[13]],"emoji":["Every emoji, their metadata, @5 localized annotations",C[5]],"prometheus_wireguard_exporter":["Prometheus WireGuard Exporter","3.5.1"],"svc-authz":["An authorization @1.",C[17]],"cargo-embed":["A $w to develop software @0 ^b ARM @5 RISC-V cores.",C[16]],"pdu":["Small, $I, @5 correct L2/L3/L4 packet @i.","1.4.1"],"pcb-core":["Pink Compiler Backend: &R &f ^2 $N - Core",C[3]],"credibility":["A thin @h $G assert to @j table-driven tests","0.1.3"],"mint":["Math interoperability ^E @g","0.5.8"],"device_query":["A basic @1 @0 querying keyboard @5 mouse state on-demand ^Y a window.","0.2.8"],"tokio-udev":["Non-blocking/&b Tokio @j @0 udev device events.","0.7.0"],"frepl":["Fluence FCE REPL intended @0 $S purposes","0.7.2"],"cdshealpix":["@3 @2 of @4 HEALPix tesselation.","0.5.5"],"aur-fetch":["A libary @0 downloading @5 diffing AUR packages",C[13]],"nrf-hal-common":["@v details of @4 nRF HAL $R. Don't $d this directly, $d one of @4 specific HAL $R instead (`nrfXYZ-hal`).",C[24]],"piston2d-glium_^T":["A Glium 2D back-end @0 @4 Piston game $a","0.86.0"],"swapi":["A @3 @h @0 @4 Star Wars @x - &Y://swapi.co/. Contributors are welcome - &Y://github.com/kylesurowiec/swapi-@f",C[5]],"oqueue":["Non-interleaving multithreaded &Z queue",C[4]],"repos":["postgres repository @2.","0.1.8"],"@f_ci":["A mixin @0 $Z @D $D @P - gives an &x @m @0 argument specification @5 &u $2 by &Y://www.megam.iohttps://www.megam.io.An @2 @u rust_cli can be found at &Y://github.com/megamsys/meg.git",C[3]],"string-intern":["Another @2 of $c interning. Unique features: allows to define a $l @0 each kind of interned ^V @5 a validator @0 @4 ^V of @l $l.","0.1.7"],"yaecs":["Yet Another Entity Component System.",C[16]],"sc-informant":["Substrate informant.","0.9.0"],"erased-serde":["Type-erased Serialize @5 Serializer $3","0.3.16"],"chargrid_menu":["chargrid menus","0.3.1"],"names":["A &L name @B @7 names suitable @0 $d in containerinstances, ^g names, $U instances, etc.",C[28]],"yadf":["yet another dupes finder",C[72]],"wasi-common-lucet":["wasi-$u &r @0 Lucet","0.4.2"],"pcd-rs-derive":["&n @a @0 pcd-rs @8","0.5.1"],"shadow-rs":["A $j-$z $f stored in $r @f ^g","0.7.2"],"terminus-store":["a triple store @1","0.19.5"],"slug":["Convert a unicode $c to a slug","0.1.4"],"google-doubleclickbidmanager1":[C[878],C[112]],"slurp":["Small @h &P @0 loading @z","1.0.1"],"$P_cloudsearch":["^r ^N @0 @3 - Amazon CloudSearch @ 2013-01-01",C[27]],"borealis":["HTML5 template $a",C[0]],"wmi":["WMI @8 @0 @f.","0.9.1"],"cqrs":["An event-sourced @D-query @O","0.3.1"],"screenshot-rs":["@K @1 @l allows @0 @d method of asking @0 screenshots @t various &j/BSD desktops","0.1.5"],"avocado":[C[879],"0.6.0"],"cgi":["Create CGI programmes","0.6.0"],"rtp-rs":["&B @5 @B @0 RTP packet $V","0.6.0"],"pallet-session":["FRAME sessions &v","3.0.0"],"promising-future":["@v of Promise/Future pairs.","0.2.4"],"mango_smoothie":["A @c side @1 @0 CouchDB Mango/Cloudant Query",C[3]],"rdkafka":["@3 @h @0 librdkafka","0.27.0"],"svg_face":["Generates &L SVG faces","0.1.3"],"libbindgen":["A $W @B @0 @3","0.1.7"],"xim":["XIM @9 @i, handler",C[4]],"intrusive-containers":["A @1 of intrusive @w $k","0.2.4"],"lru-cache":[C[880],C[4]],"roff":["ROFF (man page @G) ^1 @1",C[0]],"voca_rs":["Voca_rs is a @3 @1 @0 manipulating [unicode] $p","1.14.0"],"chinese-number":["Convert primitive ^M to Chinese ^M, or parse Chinese ^M to primitive ^M.","0.6.3"],"relational_@g_procmacro":["Procmacro to help create relations $t objects","2.0.0"],"rocky":["Lite WebFramework @0 @f","0.2.3"],"win32job":["A $M @x @0 ^6' job objects.","1.0.1"],"dbkit-engine":["A columnar query execution $a","0.0.9"],"prototty_^x":["Interface to persistent ^x","0.29.0"],"actix-diesel":["Integrate Diesel ^d Actix (@5 Actix Web) cleanly @5 efficiently.",C[1]],"textwrap":["Powerful @1 @0 word wrapping, indenting, @5 dedenting $p","0.14.2"],"parity-crypto":["Crypto ^u $2 by ethstore @5 ^9.","0.9.0"],"ntex-amqp-codec":["AMQP 1.0 ^c Codec","0.7.3"],"classreader":["A @3 @1 @l reads, writes, @5 parses Java Virtula Machine class @z.",C[5]],"os_$l":["Detect @4 operating @O $l","2.3.0"],"coreaudio-sys":["@H @0 Apple's CoreAudio frameworks ^8 via @f-bindgen","0.2.8"],"pairing-plus":[C[641],C[95]],"bao":["an @2 of BLAKE3 verified streaming",C[28]],"libheif-sys":["libheif @6","1.12.0"],"textwrap-macros-impl":[C[881],"0.2.5"],"boondock":["Docker daemon @x (a fork of Graham Lee's @f-docker)",C[882]],"sentry-core":[C[883],C[88]],"fractal-dto":["DTO objects to transfer $f in @4 Fractal Global Credits @x.","0.8.3"],"cynic":["A GraphQL query &I & @w mapper @0 @3","0.15.1"],"vcd":["Read @5 &0 VCD (Value Change Dump) @z","0.6.1"],"magnetic":["Low-latency lock-free queues","2.2.0"],"tab-pty-process":["@4 tab multiplexer fork of $v-pty-^I. Interact @7 a child ^I through a pseudo-TTY, asynchronously @u Tokio",C[3]],"anchor-lang":["Solana Sealevel eDSL",C[43]],"specs_$z":["$z resource @0 specs","0.6.1"],"libusb-sys":[C[991],"0.2.3"],"libipld-cbor":[C[884],"0.12.1"],"tokio-compat":["Compatibility $t `$v` 0.2 @5 legacy versions.","0.1.6"],"range_check":["@3 @1 @7 bounds-checking @5 range &w.",C[3]],"kitchensink":["Puppet @E @0 @3.","0.4.2"],"gdnative-core":["$8 Godot game engine's gdnative @F @6.","0.9.3"],"spl-math":["Solana Program @p Math",C[0]],"async-ssh2-lite":["&b ssh2.",C[5]],"data-pile":["A @d @5 $I append-only @w store","0.6.1"],"pgx-macros":["Proc ^o @0 'pgx'",C[57]],"$6_@b_internals":[C[885],"0.26.0"],"cargo-flutter":["Tool @0 $K flutter-rs projects.","0.1.12"],"redox":["A @1 ^5 @4 bittorrent @9 @5 a few key &p.","0.0.3"],"sthash":["A very $I ^w ^z @Y @0 large @w.","0.2.11"],"nanny":["Safe &8 abstractions @0 Node.","0.0.9"],"myelin-engine":["@Q @8 contains @4 physical $a ofthe simulation, as well as @4 objects @l residewithin it","0.14.1"],"thruster-core":["$8 @F pieces of @4 thruster &e @k",C[78]],"bip_htracker":["Communication @7 bittorrent ^s trackers","0.0.0"],"cargo-build-deps":["A @S &i to $j &c, helps speed up docker builds by allowing &c to be built earlier @5 cached.",C[3]],"freetype-sys":["Low @C $W @0 FreeType font @1",C[23]],"copy_@t_str":["An ^h $y to copy a $c ^d another $c","1.0.3"],"waker-fn":["Convert closures ^d wakers","1.1.0"],"datadriven":["Rewritable table-driven $S","0.6.0"],"ptr_meta_@b":["^o @0 ptr_meta","0.1.4"],"spin":["Spin-@n synchronization $9","0.9.2"],"tracy-rs":["@3 @6 @0 @4 tracy realtime profiler",C[4]],"pueue":["A ^y ^4 @0 managing long running shell commands.","1.0.3"],"jmx":["JMX @c @1 @0 @3",C[5]],"pinboard":["A lock-free, threadsafe way to publish @w, just stick it on @4 pinboard","2.1.0"],"cw20-legacy":["Basic @2 of a CosmWasm-20 compliant token ^i @7 Columbus-4 token",C[3]],"binascii":["Useful no-std binascii $B including base64, base32 @5 base16 (hex)","0.1.4"],"color-rs":["A @1 @l @s @g @5 conversions @0 ^p @7 various color formats. Forked @t @4 unmuntained @8 color","0.6.1"],"pyo3-macros":[C[886],"0.14.5"],"frontmatter":["A Fairly Trivial Wrapper @0 yaml-@f to Extract Frontmatter @t a String Slice",C[2]],"bb":["clean @d $I ^I viewer","0.4.3"],"nonzero_ext":["Extensions @5 additional $3 @0 non-zero integer @g",C[1]],"work_tock":["A Program to track $r hours across various projects",C[5]],"pallet-timestamp":["FRAME Timestamp Module","3.0.0"],"rgs_models":["Tool @0 querying game servers. Models.","0.9.1"],"piston2d-graphics_^0":["A 2D ^T $N @0 Piston-Graphics @l stores @5 optimizes commands","0.33.0"],"awsm":[C[887],"0.0.11"],"sgx_tservice":[C[21],"1.1.0"],"parry2d-f64":["2 dimensional collision detection @1 in @3. 64-bit precision $4.","0.7.1"],"matrixmultiply":["General matrix multiplication @0 f32 @5 f64 matrices. Operates on matrices @7 general layout (they can $d arbitrary row @5 column stride). Detects @5 uses AVX or SSE2 on x86 platforms transparently @0 higher $J. Uses a microkernel strategy, so @l @4 @2 is &x to parallelize @5 optimize.Supports multithreading.","0.3.1"],"tetsy-jsonrpc-pubsub":["Tetsy Publish-Subscribe ^h @0 jsonrpc.","15.1.0"],"macroquad":["@K @5 &x to $d ^T @1","0.3.10"],"remote-trait-object":["A remote method invocation @1 @n on $y objects","0.5.0"],"shells":["Sugar-coating @0 invoking shell commands directly @t @3.",C[3]],"libp2p-floodsub":[C[888],C[547]],"msp430-atomic":["Atomic $B @0 MSP430 $s","0.1.3"],"rust-fsm-dsl":["^o @0 @f-fsm DSL","0.6.0"],"xenstore-rs":["@3 $L @6 @0 libxenstore",C[9]],"diskarbitration-sys":["@H to Disk Arbitration @0 OS X","0.0.4"],"$5_rs":["A Gecko-oriented @2 of @4 Encoding Standard","0.8.29"],"pnet_transport":["Cross-@N, transport layer networking.","0.28.0"],"lpc55-rtic":[C[955],"0.5.7"],"@f_mpi":["MPI Wrapper @0 @3","0.0.3"],"fluvio-protocol-derive":["Procedure @e to encode/decode fluvio @9",C[1]],"google-oslogin1-cli":[C[889],C[382]],"qtrac-retest":["Retest makes it @d to automate black box regression $S on ^6 @5 Unix.","4.0.10"],"cargo-workspaces":["Cargo workspace &F","0.2.25"],"assert_ne":["assert not equals",C[1]],"cite":["$8 @X @s a ^4 @0 formatting citations.",C[1]],"figment":["A $H @1 so con-free, it's unreal.","0.10.6"],"cpubars":["shows cpu utilization by @F in bars","0.5.0"],"libudev-sys":["$L @6 to libudev","0.1.4"],"scriptisto":["A @L-&f \"shebang interpreter\" @l enables you to &0 scripts in compiled languages.","0.6.14"],"$P_serverlessrepo":["^r ^N @0 @3 - AWSServerlessApplicationRepository @ 2017-09-08",C[27]],"gust":["A &7 charting @1 @0 $E d3 @5 html charts @u @3","0.1.4"],"alacritty_config_@b":["Failure resistant &9 @b",C[0]],"scrap":["Screen capture made &x.","0.5.0"],"rexif":["RExif is a &8 @3 @8, $A to extract EXIF @w @t JPEG @5 TIFF images.","0.7.3"],"naga":[C[890],"0.7.1"],"openal-rs":["&T - Use alto instead","0.3.3"],"iovec":["Portable buffer $l @0 scatter/gather I/O $B",C[3]],"native-tls":["A @h &6 a platform's &8 TLS @2","0.2.8"],"dia-semver":["For ^a Semantic Versions 2.0.0","9.0.0"],"opaque-ke":["An @2 of @4 OPAQUE password-authenticated key exchange @9","1.2.0"],"benfred-read-process-memory":[C[891],C[5]],"git-mit":["Set author @5 Co-authored trailer.","5.11.6"],"iomrascalai":["An AI @0 @4 game of Go","0.1.7"],"import_map":["An @2 of WICG Import Maps specification","0.3.3"],"url":["URL @1 @0 @3, @n on @4 WHATWG URL Standard","2.2.2"],"imgui-dx9-renderer":["DirectX 9 renderer @0 @4 imgui @8","0.7.0"],"transact":["Transact is a transaction execution @N designed to be $2 as a @1 or component when ^5 distributed ledgers, including blockchains.","0.3.12"],"exitfailure":["A basic newtype &r @0 $d @7 ? in main","0.5.1"],"unicode-ccc":["&h Canonical Combining Class detection",C[4]],"twiggy-opt":["Options @0 @4 Twiggy @V size profiler.","0.7.0"],"$o":["Unified @x &6 different TUI &4.",C[2]],"$P_dms":["^r ^N @0 @3 - ^r Database Migration Service @ 2016-01-01",C[27]],"png":["PNG ^P @5 $5 @1 in ^X @3","0.17.2"],"c-ffi":["C $L @E.","0.4.6"],"arena-tree":["An arena-@n ^0, @7 `RefCell` @0 mutability",C[1]],"libremexre":["A bunch of @E I found myself needing &6 @5 &6 again.","0.1.12"],"bitstring":["Bitstring $3 @5 @T",C[4]],"plutchik":["A typification of Robert Plutchik's Wheel of Emotions.",C[3]],"rvg":["Vector ^T $0 @G.",C[3]],"npy-derive":["^o 1.1 @2 of #[@b(Serializable)] @0 @8 npy",C[2]],"uefi-services":["Higher-@C @E @0 uefi-rs","0.9.0"],"breadx":["@v of @4 X Window System ^c","2.0.0"],"audio":["A @1 @0 ^p @7 audio buffers","0.2.0-alpha.3"],"gen-stream":["Generator-@n streams @0 @3 @5 @Z 0.3.","0.2.4"],"rw-stream-sink":["Adaptator $t Stream/Sink @5 AsyncRead/AsyncWrite",C[5]],"body-image":["Adaptive RAM/$0-backed ^s bodies.","2.2.2"],"hostfile":["A @f @8 @0 @R /etc/hosts",C[3]],"phase2":[C[892],C[8]],"mozjs_@r":["System @8 @0 @4 Mozilla SpiderMonkey JavaScript $a.","0.67.1"],"@f_icu_uloc":["&M @6 to @4 ICU4C @1 @t Unicode.uloc.h","1.0.3"],"humantime-serde":["Serde @j @0 @4 `humantime` @8","1.0.1"],"graphql-introspection-query":["GraphQL introspection query @5 response @g.",C[3]],"snowflake-rust":["'twitter' snowflakes.","0.5.6"],"borrowing_exerci":["how to understand @4 borrowing in @f","0.4.51"],"opentelemetry-semantic-conventions":["Semantic conventions @0 OpenTelemetry",C[7]],"miniserde":["Data $V @M @1 @7 several opposite design goals @t Serde.","0.1.15"],"pod":["Plain Old Data (POD) $5 @5 I/O","0.5.0"],"ophelia":["ophelia &Q $b",C[9]],"validators-options":["@Q is a @1 @0 validating @5 modeling user input @5 this @8 @s options $2 @7 @4 `alidators-@b` @8 @5 @4 `validators` @8.","0.23.1"],"etcd":["A @c @1 @0 CoreOS's etcd.","0.9.0"],"haru":["A $I, dynamically-typed general purpose scripting @L","0.29.5"],"traildb":["Binding @0 TrailDB, an ^Z ^4 @0 storing @5 querying series of events.","0.6.0"],"gstreamer-sdp":["@3 @6 @0 GStreamer Sdp @1",C[26]],"shelf":["@K key-&5 ^x",C[8]],"inferno":["@3 port of @4 FlameGraph $J profiling ^4 suite","0.10.7"],"traceroute":["@p @0 finding hosts on a path to a destination","0.1.1"],"stdio-override":["@3 @1 @0 overriding Stdin/Stdout/Stderr @7 a different File Descriptor","0.1.3"],"actix-web-opentelemetry":["OpenTelemetry $T @0 Actix Web apps","0.11.0-beta.5"],"systemd-parser":["A nom @i @0 systemd unit @z","0.1.3"],"metrics-core":["Foundational $3 @0 interoperable &q &4.","0.5.2"],"snax":["JSX-$C syntax @0 ^B @e authors",C[1]],"quote-impersonated":[C[861],C[0]],"quire":["A YAML-@n $H @R @1","0.4.1"],"slip21":["SLIP-21 @2 in @3",C[3]],"bee-common":["&O @E $2 across @4 bee @k","0.4.1"],"ingredient":["recipe ingredient @i","0.1.3"],"git-absorb":["git commit --fixup, but automatic","0.6.6"],"secstr":["A @w $l suitable @0 storing sensitive $f such as passwords @5 private keys in $g, featuring constant $z equality, mlock @5 zeroing out.",C[2]],"redox_syscall":["A @3 @1 to $X raw Redox @O calls","0.2.10"],"$P_sdb":["^r ^N @0 @3 - Amazon SimpleDB @ 2009-04-15",C[27]],"libsodium-sys-stable":["$L @6 @0 libsodium stable","1.19.19"],"cargo-mpirun":["`@S mpirun` allows you to easily $j @5 run $r MPI @P in a single @D. It emulates `@S run`, allowing you to specify a target to be built @5 run, @5 @S takes care of @4 rest.","0.1.8"],"syslog3":["Shim @1 re-exporting syslog::* @t syslog $4 3.0","3.0.0"],"dmx":["DMX512 lighting @9 @j",C[5]],"xmodem":["An @2 of @4 XMODEM $0-transfer @9.","0.1.3"],"cups-sys":["Low-@C @m to @4 CUPS printing @1.","0.1.4"],"google-ml1-cli":[C[893],C[983]],"di":["Dependency injection container.",C[4]],"ra_ap_^7_^u":["TBD","0.0.79"],"resvg":["An SVG &S @1.",C[95]],"chromiumoxide_cdp":["Contains all @4 ^8 @g @0 chromiumoxide","0.3.1"],"bitcoin-bech32":["Encodes @5 decodes Bitcoin Segregated Witness addresses in Bech32","0.12.1"],"tower-balance":["Balance load across a set of uniform services.",C[1]],"matrix-sdk-crypto":["Matrix encryption @1","0.4.1"],"opentelemetry-datadog":["Datadog exporters @5 propagators @0 OpenTelemetry",C[2]],"kuon":["Twitter Client @p $A in @3","0.0.27"],"short-crypt":["ShortCrypt is a very @d encryption @1, $i aims to encrypt any @w ^d something &L at first glance.","1.1.0"],"spirv-types":["SPIR-V @g &J $t spirv-std @5 spirv-std-@a",C[280]],"powerline-rs":["powerline-shell rewritten in @3. Inspired by powerline-go.",C[3]],"$P_dynamodb":["^r ^N @0 @3 - Amazon DynamoDB @ 2012-08-10",C[27]],"cli-table-derive":[C[894],"0.4.4"],"ilc-format-weechat":[C[164],C[3]],"afl-plugin":["LLVM instrumentation ^2 $Y @0 afl.rs","0.1.5"],"libh3":["Safe @3 @H to Uber's Hexagonal Hierarchical Spatial Index - H3","0.1.8"],"fs-tail":["tail a $0 @5 block when end of $0 is reached. When new contents are found in @4 $0, @4 loop will continue","0.1.4"],"bus_writer":["Single-reader, multi-writer & single-reader, multi-verifier; broadcasts reads to &l writeable destinations in parallel",C[4]],"fpa_lr":["fpa filter long read mapping $f to save disk space","0.5.1"],"dinghy-test":[C[895],"0.4.62"],"kairosdb":["Client @0 @4 KairosDB REST @x","0.2.20"],"rust-embed-utils":["^e @0 @f-embed","7.0.0"],"printer":["Abstraction &6 $o manipulation","0.3.1"],"openmp-sys":["Link @7 OpenMP (libgomp)","1.2.0"],"dfw":["Docker firewall @k, in @3","1.2.1"],"duktape":["Embedded JavaScript interpreter @7 a &7 footprint","0.0.2"],"group-by":["A group_by @Y","1.0.0"],"spki":["X.509 Subject Public Key Info (RFC5280) describing public keys as well as theirassociated AlgorithmIdentifiers (i.e. OIDs)","0.4.1"],"unic-normal":["UNIC — &h Normalization Forms","0.9.0"],"rand_@b":["`#[@b(Rand)]` @e (deprecated).","0.5.0"],"qapi-qmp":["QEMU Machine ^c @g",C[7]],"artifact_$6":["A &7 @1 $2 to deserializing @5 serializing @4 Artifact Deck Codes @t Valve's DotA Card Game Artifact","0.3.1"],"meio-protocol":["Basic @9 $3 of MEIO @k","0.96.0"],"macro-attr-2018":["@Q @8 @s @4 `macro_attr!` @e @l enables @4 $d of custom, @e-@n attributes @5 derivations.","1.1.1"],"swc_ecma_transforms_typescript":[C[151],"0.56.1"],"email-format":["Email message @G (@i @5 @w $V)",C[7]],"rosbag":["^e @0 &3 ROS bag @z.",C[1]],"copy_in_place":["a $M @h $G ptr::copy @0 ^Z copying within slices",C[5]],"dyn_partial_eq_@b":["@v of dyn_partial_eq","0.1.3"],"raui-html-renderer":["RAUI renderer @0 @d HTML &k webpages","0.38.2"],"wterm":["Serial port to WebSocket bridge @7 ^b &e $o",C[1]],"bee-common-derive":["&n @a @0 @4 bee-$u @8","0.1.1-alpha"],"ormx":[C[896],C[13]],"system-call":[C[456],"0.1.3"],"simd":["`simd` offers limited cross-@N $X to SIMD instructions onCPUs, as well as raw interfaces to @N-specific instructions.(To be obsoleted by @4 `std::simd` @2 RFC 2366.)","0.2.4"],"@J_ftp":[C[820],"5.0.0"],"xterm-js-rs":["@3-WASM @6 @0 @4 xterm-js Javascript @1","0.1.1"],"localnative_ssb":["localnative ssb lib","0.3.7"],"glslwatch":["A live glsl source ^0.","0.1.4"],"mio-serial":["A serial port @2 @0 mio","5.0.1"],"$6_&V":[C[897],"1.0.68"],"rustdct":["Compute Discrete Cosine Transforms (DCT) of any size in O(nlogn) $z, in ^X @3.","0.6.0"],"comrak":["A 100% CommonMark-^i GitHub Flavored Markdown @i @5 formatter","0.12.1"],"redox_hwio":["@3 Hardware MMIO @5 PIO","0.1.4"],"init-daemon":["Helper @8 to discover $i init @O is in $d",C[0]],"sourceview":["@3 @6 @0 @4 GtkSourceView 3 @1","0.9.0"],"rusp":["$8 @3 USP toolkit","0.12.1"],"kelvin":["Merkle ^0 tooklit @5 $N",C[95]],"command-macros":["^o @0 $Z std::^I::Command @7 shell-$C syntax","0.2.9"],"depgraph":["A @1 to manange @z @l depend on each other, andrebuild them as necessary, $C a makefile",C[1]],"nc":["Execute @O call directly","0.7.12"],"igc":["A $I, minimal @i @0 IGC flight recorder @z",C[8]],"mailgun_v3":["reqwest @n &e @6 @0 Mailgun's v3 ^k @x","0.11.2"],"crc-any":["To compute CRC ^V by ^R @4 length of bits, expression, reflection, an initial &5 @5 a final xor &5. It has many built-in CRC @y.","2.4.1"],"boxcars":["Rocket league replay @i","0.9.2"],"yew-components":["A $b of community-created Yew components",C[1]],"switchboard-protos":["Generated @9 buffers to @j Switchboard on Solana","0.1.58"],"faux":["A @1 to mock &o","0.1.5"],"conshash":["A @1 to do consistent hashing in @3.","0.1.4"],"mlzlog":["A $b of log4rs &1 to log $C @4 mlzlog Python @X","0.7.0"],"azure_^x_mirror":["@3 &r $G Microsoft Azure Storage REST APIs",C[0]],"picky-asn1-der":["An ASN.1-DER subset @0 $6","0.2.5"],"&V_errors":["Transforms popular $R' errors ^d ^k errors. Aimed to be $2 @7 Rocket.","0.5.4"],"hmc5883l":["@3 @1 @0 interfacing @7 HMC5883L magnetometer @u I2C on &j","1.0.2"],"gzlib":["Gardenzilla @F @1","0.2.84"],"tstr":["Type-@C $p",C[8]],"yansi-term":[C[898],C[4]],"cargo-script":["A Cargo &i designed to let people quickly @5 easily run @3 \"scripts\" $i can make $d of Cargo's @X ecosystem.","0.2.8"],"magick_@f":["Selection of @3 @6 @0 @4 ImageMagick @1.",C[23]],"google-fusiontables2-cli":[C[899],"2.0.4+20171117"],"nrf52-bin-logger":["A $Q @9 @0 UARTE &H on @4 nRF52",C[2]],"tentacle-secio":["Secio encryption @9 @0 p2p","0.5.0"],"riscv-target":["RISC-V target $c manipulation @E",C[4]],"protoc-bin-vendored":["protoc binaries compiled by Google @5 bundled in this @8.",C[348]],"merge":["Merge &l ^V ^d one",C[0]],"tindercrypt":["Data encryption @7 symmetric ^w keys or passwords/passphrases,@5 self-contained encryption metadata",C[9]],"zohohorrorshow":["A @1 @0 &2 @7 @4 Zoho Projects @x","0.7.7"],"sentry-rs":["A Sentry Client @0 @3 Lang.","2.2.0"],"bch_addr":["cash_addr @G @2 &X by bchaddrjs.",C[0]],"osc_address":["Typesafe routing of Open Sound Control message @5 $F &6 serde_osc",C[8]],"once":["@Q @8 @s an assert_has_not_been_called! @e @l panics if @4 surrounding @Y is called twice. Useful @0 initialization @y.","0.3.4"],"ansi_escape":[C[50],C[4]],"wasmtime-debug":["Debug ^u @0 WebAsssembly @V in Cranelift","0.29.0"],"table-extract":["Utility @0 extracting @w @t HTML tables",C[8]],"smoljson":["Minimal","0.1.1"],"ao-sys":["$8 @X @s @6 to ao.",C[4]],"$P_workmail":["^r ^N @0 @3 - Amazon WorkMail @ 2017-10-01",C[27]],"threatbutt":["@6 to @4 threatbutt ^S","0.0.2"],"aktors":["Driver @0 @b-aktor","0.2.7"],"metacpan_^S":["Query @4 metacpan.org @x","0.5.0"],"nano-work-server":["A dedicated work @U @0 @4 Nano cryptocurrency","0.1.7"],"rustc-ap-graphviz":["^W published $4 of @4 @X `graphviz` in @4 @f-lang/@f repository @t commit 10c2316a6bf7cf9255f991e06e82ce692e6f84d5 $8 publishing script @0 this @8 lives at: &Y://github.com/alexcrichton/&K-auto-publish","662.0.0"],"locate-locale":["A cross-@N default locale getter",C[0]],"unic-emoji-char":["UNIC — &h Emoji — Emoji Character Properties","0.9.0"],"heim-virt":["Cross-@N virtualization @O detection",C[59]],"gatekeeper":["A SOCKS proxy @2","2.2.0"],"arr_@e":["Initialize arrays @7 ease!","0.1.3"],"ethers-contract-abigen":["Code ^1 @0 $l-$M @6 to Ethereum smart contracts","0.5.4"],"superluminal-perf-sys":["Superluminal Performance C @x @6",C[4]],"nom-packrat-macros":["Helper @8 of nom-packrat","0.6.0"],"bibutils-sys":["@3 @6 @0 bibutils, a ^U @0 bibliography @G interconversion.","0.1.1"],"com-rs":["Deprecated. Use @4 `com` @8 instead.",C[5]],"pocket":["@K @6 @0 Pocket @x (&Y://getpocket.com)","0.1.3"],"collenchyma-blas":["Collenchyma @1 @0 full BLAS @j",C[3]],"ethereum-trie":[C[932],"0.5.0"],"feattle":[C[544],"0.7.0"],"^f_libra_vm_cache_map":["Libra vm cache map",C[10]],"primal-slowsieve":["A @d sieve of Eratosthenes designed @0 $S faster sieves. Youprobably want `primal-sieve`, or even just `primal` itself.",C[1]],"$P_medialive":["^r ^N @0 @3 - ^r Elemental MediaLive @ 2017-10-14",C[27]],"machinebox":["A @c ^N @0 communicating @7 machinebox boxes","0.5.0"],"tensorflux":["$8 @X @s an @m to TensorFlow.","0.8.2"],"hyper-reverse-proxy":["A @d reverse proxy, to be $2 @7 Hyper @5 Tokio.",C[2]],"tibrv-sys":["&M @6 to @4 TIBCO Rendezvous C @1.","0.6.0"],"embedded-executor":["Embedded systems-&E `Futures` executor","0.6.1"],"reqchan":["@Q is a channel @0 requesting @5 receiving @w. Each channel has only one requesting end, but it can have &l responding ends. It is useful @0 ^5 work sharing. $8 two ends of @4 channel are $n @7 respect to each other, so it is kinda nonblocking. However, if &l responding ends try to respond to @4 same request, only one will succeed; @4 rest will return errors.","0.5.8"],"lame-sys":["$L @6 to libmp3lame",C[4]],"heim-cpu":["Cross-@N CPU $f",C[59]],"wd-40":["Data Driven Testing",C[0]],"RustyEmitter":["RustyEmitter is a basic @2 of a @d emitter. $8 ^F expose a Events $y @7 @4 on, off @5 emit &P, @5 a default @2 of @l $y, called Emitter.","2.2.0"],"lapack-src":["$8 @X @s a LAPACK source of choice.",C[7]],"webrtc-data":["A ^X @3 @2 of WebRTC DataChannel @x",C[1]],"^f_libra_vm_@I_@g":["Libra vm @I @g",C[10]],"ff-zeroize":[C[624],"0.6.3"],"faker":["A @1 @0 $E fake @w such as names, addresses, @5 phone ^M.","0.0.4"],"rphtml":["A html @i $A in @f.","0.5.4"],"$6_postgres":["Easily deserialize postgres rows",C[3]],"clipboard-master":["@K $w @8 to monitor clipboard changes","3.1.2"],"libmimalloc-sys":["Sys @8 wrapping @4 mimalloc ^l","0.1.22"],"fdp-sys":["@3 $L @6 @0 libFDP","0.1.1"],"zero_sum":["An analysis $a @0 zero-sum games @7 game @T.","1.2.0"],"nbted":["Command-$D NBT editor","1.5.0"],"pbcodec":["An $n encoder/decoder @0 ^c Buffers","0.0.8"],"getters-by-type":["&n @e @0 adding a getter method @0 each $l in @4 struct.","0.2.6"],"snmalloc-sys":["@f raw @6 of snmalloc.","0.2.28"],"demo-hack-impl":[C[900],"0.0.5"],"rasciigraph":["Utility @Y to plot ascii graphs","0.1.1"],"tp-staking":[C[901],"2.0.2"],"wasm-run":[C[902],"0.9.0"],"liquidfun":["@3 @6 @0 LiquidFun.",C[7]],"graceful":["Gracefully shutdown","0.1.1"],"mimalloc-sys":["@3 $L @6 to mimalloc","0.1.6"],"tunneler-core":["@W @4 Core $7 @0 @4 Tunneler software",C[28]],"redbpf":["eBPF $j @5 @I @1","2.0.2"],"cooks":["Squad of cooks ready to cook $r @w.","0.0.3"],"crdt_rs":["A @1 to work @7 Conflict-free replicated @w @g (CRDT) in @3",C[4]],"spmc_buffer":["An ^h of triple buffering @0 &l-consumer scenarios, useful @0 sharing frequently updated @w $t threads","0.5.1"],"os_socketaddr":["A $l @0 ^a @N-&8 socket addresses (struct sockaddr)",C[3]],"sgx_serialize":[C[21],"1.1.1"],"cervine":["A slightly more flexible Cow; roughly to T: Borrow as alloc::borrow::Cow is to B: ToOwned","0.0.6"],"dds-rs":["Decodes DirectDraw Surface @z","0.7.0"],"opentelemetry-tide":["OpenTelemetry $T @0 Tide",C[16]],"rafx-framework":[C[457],"0.0.14"],"evdev-sys":["Raw @6 to libevdevHigh @C @3 @6 are available in @4 `evdev` @8","0.2.3"],"caniuse-serde":["A more modern wrapping @0 @R @5 querying @4 caniuse.com ^k ^Q @u Serde 1.0","0.0.6"],"gmime":["@H @0 gmime-3.0",C[0]],"chargrid_graphical":["Graphical chargrid context","0.7.2"],"prototty":["Wrapper @8 @0 frontend-independent prototty $R","0.29.0"],"redlock-rs":["[DEPRECTAED] Use redlock instead",C[5]],"neptune-triton":["GPU @2 of neptune-^i Poseidon hashing.","2.1.0"],"screenshot":["Get a bitmap image of any display.","0.0.7"],"cargo-open":["A third-party @S ^h to allow you to open a dependent @8 in $r $EDITOR",C[2]],"extendhash":["@3 Hash Extender","1.0.9"],"string-interner":["Efficient $c interner @7 minimal $g footprintand $I $X to @4 underlying $p.",C[15]],"nu_$Y_to_sqlite":["A converter $Y to @4 SQLite @G @0 Nushell","0.39.0"],"table-test":["Improve table $S in @3",C[5]],"ethereum-trie-memory":["Rocksdb adaptor @0 trie.","0.5.0"],"numext-fixed-uint-core":[C[903],"0.1.6"],"cargo-add":["Add &c to $r Cargo.toml @t @4 @D $D (deprecated in favor of @S-edit).",C[3]],"basic-pathfinding":["Tile-@n A* pathfinding in @3","0.2.8"],"esp32":["Peripheral $X @8 @0 @4 ESP32",C[16]],"fakeit":["Fake @w @B @1 @7 130+ @y","1.1.1"],"async-graphql-parser":["GraphQL query @i @0 @J-graphql","2.10.6"],"$P_ecs":["^r ^N @0 @3 - Amazon EC2 Container Service @ 2014-11-13",C[27]],"typedopts":["Type aware @D $D @i","1.1.2"],"dqcsim":["DQCsim: Delft Quantum Classical Simulator","0.4.1"],"gstreamer-audio-sys":["$L @6 to libgstaudio-1.0",C[26]],"nanbox":["NaN boxing @2",C[3]],"bounded-vec-deque":["A double-ended queue|ringbuffer @7 an upper bound on its length.","0.1.1"],"imdb-index":["A @1 @0 indexing @5 searching IMDb @u $f retrieval.","0.1.3"],"gbm":["libgbm @6 @0 @f","0.7.0"],"@F_io":["@Q is a copy of libstd::io @7 all @4 parts @l don't work in @F removed.Most importantly, it @s @4 Read @5 Write traits.This @8 is (mostly) automatically ^8 @t @4 @f git source. Theversion of @4 source @l corresponds to $r ^2 $4 will beselected automatically by @4 $j script.","0.1.20210325"],"libipld-json":["ipld &V codec",C[28]],"shade_runner":["Allows @I hot loading of shaders @0 vulkano",C[1]],"&t_discovery":["Discover other instances of $r $U on @4 local ^9.",C[1]],"rawpointer":["Extra &P @0 raw pointers @5 `NonNull`.For example `.post_inc()` @5 `.pre_dec()` (c.f. `ptr++` @5 `--ptr`),`offset` @5 `add` @0 `NonNull`, @5 @4 @Y `ptrdistance`.",C[5]],"ndarray":["An n-dimensional array @0 general elements @5 @0 numerics. Lightweight array views @5 slicing; views @j chunking @5 splitting.",C[99]],"wayland-server":["@H to @4 ^E C @2 of @4 wayland @9, @U side.",C[98]],"puppetfile":["Puppetfile @i",C[8]],"tracerr":["Custom compile $z captured ^q &g",C[3]],"comdlg32-sys":["Contains @Y $h @0 @4 ^6 @x @1 comdlg32. See winapi @0 @g @5 constants.",C[3]],"simple-stream":["@W various $K blocks, abstractions, @5 @g @0 streams.",C[12]],"openaq-client":["Unofficial OpenAQ @x Client","0.0.5"],"^f":[C[58],"0.18.0-pre1"],"swc_ecma_transforms_optimization":[C[151],"0.60.1"],"ffxiv_@g":["Useful @g @0 FFXIV-related projects","1.5.0"],"rust-analyzer":["TBD","0.0.1"],"point-derive":["Proc @e to help @7 struct to ts point conversion","0.1.4"],"quasi_@a":[C[693],"0.32.0"],"piston-shaders_graphics2d":[C[904],C[2]],"primal-sieve":["A high $J prime sieve.","0.3.1"],"souvlaki":["A cross-@N media key @5 metadata ^a @1.","0.4.3"],"galvanize":["Pure @3 CDB @1.","0.0.1"],"web-bundler":["Manages @4 $K of $x single page app frontends @t a build.rs script so @l they can easily be ^b ^d @3 @x projects","0.1.4"],"hpke-rs":["HPKE @v @u Evercrypt","0.0.11"],"queue-file":["queue-$0 is a lightning-$I, transactional, $0-@n FIFO","1.1.0"],"deno-x86_64-pc-windows-msvc":[C[539],C[88]],"rawsql":["A @f @1 @0 reusing SQL",C[0]],"google-safebrowsing4-cli":[C[905],C[63]],"google-container1-cli":[C[906],"2.0.4+20210314"],"window":["Minimal @3 @V @0 $Z a window, automatically choosing a $N window &F @5 ^T @x.","0.5.0"],"line-wrap":["Efficiently insert $D separators","0.1.1"],"oasis-borsh-derive":[C[226],"0.2.10"],"tcmalloc":[C[907],C[1]],"lightning":["A Bitcoin Lightning @1 in Rust.Does most of @4 hard work, ^Y implying a specific @I, requiring clients implement basic ^9 logic, chain interactions @5 disk storage.Still missing tons of ^q-^a. See GitHub issues @0 suggested projects if you want to contribute. Don't have to bother telling you not to $d this @0 anything serious, because you'd have to $j a @c $G it to even try.","0.0.102"],"html5ever_^7_util":["High-$J browser-grade HTML5 @i − ^7 util",C[0]],"@d_ml":["Functions required @0 @w analysis @5 machine learning tasks",C[9]],"mpw-rs":["Master Password is an $1 $2 to ^n uniquepasswords @0 websites, email accounts, or anything else @n only on easilyreproducible input.","2.4.3"],"jsonrpc-ws-server":["WebSockets @U @0 ^k-RPC","18.0.0"],"redis-module":["A toolkit @0 $K Redis modules in @3",C[88]],"io_^u":[C[50],"0.2.12"],"warp10":["Warp10 @c @0 @f","2.0.0"],"jsonrpc-macros-plus":[C[915],"7.1.4"],"rustc-ap-rustc_@a":["^W published $4 of @4 @X `rustc_macros` in @4 @f-lang/@f repository @t commit 9a27044f42ace9eb652781b53f598e25d4e7e918 $8 publishing script @0 this @8 lives at: &Y://github.com/alexcrichton/&K-auto-publish",C[215]],"clang-ast":["Data $k @0 &u Clang's `-ast-dump=&V` @G","0.1.6"],"tungstenite":["Lightweight ^L-@n WebSocket @2",C[23]],"crontab":["A ^O crontab @i.",C[3]],"dbus":["@H to D-Bus, $i is a bus commonly $2 on &j @0 inter-^I communication.","0.9.5"],"light-curve-common":["&O &1 @0 light-curve-* packages","0.1.1"],"pg_@J":["&b, HA (master-master) PostgreSQL ^j on top of libpq","0.8.6"],"tc-peerset":[C[908],"2.0.0"],"bitvector":["BitVector @2 in @3","0.1.5"],"tokenizers":["@W an @2 of today's most $2 tokenizers,@7 a focus on performances @5 versatility.",C[16]],"rle_vec":["A vector $C struct @l stores @w as runs of identical ^V. Useful @0 storing sparse @w.","0.4.1"],"qiniu-download":["Qiniu Resource (Cloud) Download ^N @0 @3.","1.0.11"],"noble-contracts-proc-macro":["$q @a $2 in noble_contracts",C[0]],"cov-mark":["Manual coverage marks.",C[909]],"wasm-bindgen-test-macro":["Internal $S @e @0 &s-bindgen","0.3.28"],"dxf":["A @f @8 @0 &3 @5 $O DXF @5 DXB CAD @z.","0.5.0"],"hyper_sardine":[C[990],"0.2.3"],"proj5":["Pure @3, $l-$M alternative to PROJ.4","0.1.7"],"fluvio-package-index":["Fluvio Package Index","0.5.0"],"torch-sys":["Low-@C $L @6 @0 @4 PyTorch C++ ^S (libtorch).","0.6.1"],"minilzo-sys":["$L @6 to minilzo",C[0]],"eff-wordlist":["@3 @8 packaging EFF wordlist","1.0.2"],"itoap":["Even faster @y @0 printing integers @7 decimal @G","1.0.1"],"com-impl":["^W implement Win32 COM interfaces @t @3, along @7 some usefulhelper @g @0 getting it done.","0.1.1"],"voile-util":["^e extracted @t Voile language's $l-checker",C[8]],"httpd-util":["A set of @E @0 $K ^s microservices","0.1.6"],"brev":["&w @0 quick @5 dirty scripting",C[3]],"ic-cdk-macros":["Canister Developer Kit @a.",C[9]],"epsilonz_algebra":["Abstract Algebra in @3. (NOTE: this @8 is merging @7 &Y://github.com/bjz/algebra)","0.0.1"],"derive-diff":["$q @e to @b Diff @2","0.2.5"],"FPS":["Flow &u @O (under construction).","0.0.3"],"vgmdb-rust":["Package moved to vgmdb",C[5]],"clang-sys-linkage":[C[910],"1.0.0"],"gstreamer-net":["@3 @6 @0 GStreamer Net @1",C[26]],"vecio":["Vector IO, scatter/gather, writev, readv",C[0]],"unic-langid-impl":[C[29],"0.9.0"],"async-raft":["An @J @2 of @4 Raft distributed &A @9.","0.6.1"],"^7_@1":["^7",C[60]],"kolmogorov_smirnov":["@v of @4 Kolmogorov-Smirnov statistical ^7 as a @3 @1.","1.1.0"],"scrypt":["Scrypt password-@n key derivation @Y",C[7]],"git-historian":["Git Historian allows you to collect arbitrary @w about a $0 at each pointin its Git history.Think of it as \"git log --follow\" @0 every $0 in a repo, all at once.",C[2]],"gluesql":["GlueSQL - Open source SQL ^Q $a fully $A in @3 @7 ^X functional execution layer, easily swappable ^x @5 &e assembly @j!",C[7]],"unicode-bidi":["@v of @4 &h Bidirectional Algorithm","0.3.7"],"aabb-quadtree":["A quadtree @l maps bounding-boxes to elements",C[3]],"nestools":["A set of @3 &1 $2 to help make NES games, mostly $2 @0 tile compiling","1.3.1"],"impl_ops":[C[911],"0.1.1"],"influxdb":["InfluxDB Driver @0 @3",C[2]],"cpu-affinity":["Cross-Platform CPU affinity","0.4.4"],"fluence-identity":["identity",C[1]],"tokio-stdin-stdout":["Thread- @5 future::sync::mpsc-@n AsyncRead/AsyncWrite stdin/stdout @7 little buffering","0.1.5"],"derive-error":["&n @e @0 Error @u @a 1.1","0.0.5"],"impl-serde":["Serde @M @j @0 uint @5 fixed ^z.","0.3.1"],"$6_ini":["^6 INI $0 {de,}@M",C[3]],"qt_@B_$u":[C[912],"0.2.3"],"pest":[C[913],"2.1.3"],"libp2p-mplex":[C[914],C[172]],"munkres":["Kuhn-Munkres (aka Hungarian) $1 @0 solving @4 Assignment Problem in O(n^3)","0.5.2"],"stash":["An amortized `O(1)` table @0 cases where you don't need to choose @4 keys @5 want something faster than a HashTable.","0.1.4"],"deno_url":["URL @x @2 @0 Deno",C[88]],"quad-rand":["Pseudo &L @2 @7 std atomics.",C[5]],"ext4":["Read $f @t EXT4 filesystem images","0.9.0"],"spinlock":["&T!Use @8 `spin` instead.A @d spinlock.It may contain @w,is usable ^Y stdand there is a &k initializer available.",C[4]],"libxid":["Package xid is a globally unique id @B @1. It's a @3 port of &Y://github.com/rs/xid","0.1.5"],"librespot-core":["$8 @F $7 provided by librespot","0.3.1"],"gstreamer":["@3 @6 @0 GStreamer","0.17.4"],"containerof":["^o @5 $3 facilitating @4 $d of intrusive $k in @3.",C[8]],"ptrplus":["Additional funtionality @0 pointer @g","1.1.0"],"git-build-version":["Allows &x inclusion of @4 git repository $4 in $r ^g",C[4]],"jsonrpc-macros":[C[915],"10.1.0"],"vfio-bindings":["@3 $L @6 to vfio ^8 @u bindgen.",C[3]],"ffsvm":["A libSVM ^i @j vector machine, but up to 10x faster, @0 games or VR.",C[7]],"aom-sys":["$L @6 to aom",C[1]],"numeric_literals":["Easily cope @7 numeric literals in ^G @3 @V",C[3]],"m3u":["A @8 @0 &3 @5 $O `.m3u` @z - @4 de facto ^E @0 multimedia playlists.","1.0.0"],"aqueue":["$I speed &d $M @J execute queue.","1.1.3"],"opentelemetry-jaeger":["Jaeger exporter @0 OpenTelemetry",C[23]],"rustyard":["A Shunting Yard @2 @5 calculator. @Q @8 is able to calculate basic math expressions passed to it as $p @5 return a 64-bit floating point return &5.","0.6.0"],"symbolic":["A @1 to symbolicate @5 ^I stack traces @t &8 @P,minidumps, Unreal Engine 4, minified JavaScripts or ProGuard optimized Android apps.","8.3.2"],"format-bytes-macros":["^o @0 @4 @G-bytes @8",C[1]],"chunky":["Abstract ^x of heterogeneously-sized entity-&C","0.3.7"],"$6_xml":["xml @j @0 @f-$6","0.9.1"],"norad":["Read @5 &0 Unified Font Object @z.","0.6.0"],"cargo-bundle":["Wrap @f executables in OS-specific app bundles","0.5.0"],"google-serviceregistryalpha":[C[916],"2.0.8+20160401"],"unsegen_pager":["An unsegen widget @0 viewing @z @7 additional features",C[1]],"lazy-socket":["Low @C Raw Socket @x. WIP",C[1]],"lru":["A LRU cache @2","0.7.0"],"physx-macros":["Utility @a $2 internally by @4 physx @8","0.1.1"],"mediasoup-sys":["$L @6 to C++ libmediasoup-worker","0.2.5"],"generic-octree":["@K ^G @2 of a linear Octree","0.5.2"],"clap-permission-flag":["Drop permissions of a CLI @u structopt",C[3]],"battery":["Cross-@N $f about @4 notebook batteries","0.7.8"],"ff":[C[624],C[16]],"nats":["A @3 NATS @c","0.15.2"],"cargo-src":["Semantic @V navigation @0 @3","0.1.8"],"marine-macro-impl":["@v of @4 `#[marine]` @e","0.6.14"],"matrust":["A @d @5 &7 ^G matrix lib","0.0.6"],"kubie":["A more powerful alternative to kubectx @5 kubens.","0.14.1"],"pre":["Compile-$z assistance @0 ^p @7 unsafe @V.",C[5]],"ref-cast":["Safely cast &T to &U where @4 struct U contains a single field of $l T.","1.0.6"],"mqtt311":[C[917],C[3]],"google-discovery1-cli":[C[918],"2.0.4+20200806"],"nixpkgs-fmt":["Nix @V formatter @0 nixpkgs","1.2.0"],"libimagnotification":[C[39],"0.9.3"],"bytecheck":[C[919],"0.6.5"],"psyche":["Psyche AI Toolset","0.2.19"],"encode_unicode":["UTF-8 @5 UTF-16 character @g, iterators @5 related &P @0 char, u8 @5 u16.","0.3.6"],"edit":["Open a $0 in @4 default ^D editor","0.1.3"],"^D_unit":[C[920],C[32]],"pqcrypto-kyber":["Post-Quantum Key-Encapsulation Mechanism kyber","0.7.3"],"huelib":["@3 @6 @0 @4 Philips Hue @x","0.13.2"],"bellman":[C[710],C[17]],"frame-support":[C[921],"3.0.0"],"laminar":["A @d semi-reliable UDP @9 @0 multiplayer games","0.5.0"],"try_or_wrap":["Macro @0 simplified ^a of &l ^q conditions in a single function.Like try!, but can aggregate more than one enum ^d a @h.","0.0.5"],"linfa-kernel":["Kernel &P @0 non-linear ^3","0.5.0"],"$6_schema":[C[922],"0.0.1"],"diesel_^H_syntex":["Allows $d of `diesel_codegen` @7 `syntex`","0.9.0"],"cargo-spellcheck":["Checks all doc comments @0 spelling mistakes","0.9.0-rc1"],"tgff":["$8 @1 @s a @i @0 @4 TGFF (Task Graphs For Free) @G.",C[32]],"rustkell":["Rustkell is haskell $C @y in @f.",C[8]],"benv":["Load env @z @0 an $U ^Y @4 &m","0.1.3"],"lw":["Log-Watcher $w - replacement @0: `tail -F /some/path/*` - @l uses Kqueue to watch @0 new @z as well…","0.6.7"],"tc_^y_@c":["An @2 of @4 testcontainers `Docker` $y @l uses @4 Docker CLI to issue @4 necessary commands to @4 docker daemon.",C[5]],"libp2p-core":[C[802],C[172]],"darksky":["An unofficial @3 @h @0 @4 darksky.net @x.","0.8.1"],"graphannis-malloc_size_of":["@Q is a fork of @4 `malloc_size_of` @8, $i is part of @4 Servo codebase, to make it available to @4 graphANNIS corpus search @1 as &m.","1.1.0"],"symbol-map":["Memory-^Z mapping @t ^V to integer identifiers (AKA a lexicon or symbol table), @7 options @0 $I bidirectional lookup","1.0.2"],"click_@5_load":["Click @5 Load v2 @2",C[0]],"gitweb":["Open @4 current remote repository in $r browser","0.3.3"],"leetcode_^7":[C[923],C[4]],"termsize":["Retrieves $o size","0.1.6"],"google-mirror1":[C[924],"2.0.8+20190424"],"hyper-old-types":["^s @g @t hyper 0.11.x",C[16]],"xenstore-sys":["@3 @6 @0 Xenstore","0.1.1"],"aliri_base64":["Wrappers @l make debugging @5 @u byte arrays a bit nicer","0.1.4"],"smolscale":["A global, auto-scaling, preemptive scheduler","0.3.16"],"matmath":["Matrix @5 Vector Math @7 ^G $l elements","1.4.1"],"tokio-serde":["Send @5 receive Serde encodable @g &6 @4 ^9 @u Tokio.This @1 is $2 as a $K block @0 @M @G specificlibraries.",C[7]],"$c_telephone":["@K networking abstractions, desgined @0 games","0.0.3"],"username":[C[925],C[3]],"fluence-fork-libp2p-yamux":[C[926],"0.30.2"],"pwasm-utils":[C[927],"0.18.2"],"wordcrab":["A @D-$D ^4 @0 counting lines, words @5 characters in documents.",C[28]],"opentype":["$8 @X @s a @i @0 OpenType fonts.",C[95]],"bevy_@b":["@W @b @T @0 Bevy Engine","0.5.0"],"computus":["Computus Easter calculation in @3","1.0.0"],"pistoncore-sdl2_window":["A SDL2 back-end @0 @4 Piston game $a","0.67.0"],"try_future":["Convenient short-hand @0 returning early @t `@Z`-@n @y","0.1.3"],"internet-checksum":["RFC 1071 checksum computation (@4 \"internet checksum\")",C[3]],"csv":["Fast CSV @R @7 @j @0 $6.","1.1.6"],"ogg_metadata":["Metadata @i @0 various Ogg codecs","0.4.1"],"csfml-graphics-sys":["@H to csfml-^T","0.6.0"],"google-pubsub1_beta2-cli":[C[928],C[200]],"kayrx":["$8 Kayrx Framework",C[43]],"uvc":["Safe @5 ergonomic @h $G libuvc, allowing capture of webcam streams",C[3]],"tql_@a":["Compile-$z ORM (@a)",C[0]],"redox_uefi_std":["UEFI ^E @1","0.1.5"],"inline_tweak":["Tweak ^V directly @t @4 source @V","1.0.8"],"atsamd21g":["Peripheral $X @x @0 ATSAMD21G $s (^8 @u svd2rust)",C[16]],"wasm-game-lib":["[&T] A &x-to-$d @5 $I game @1 @0 Wasm.","0.6.0"],"bytebuffer-rs":["A bytebuffer @0 networking @5 $Q protocols","0.3.1"],"bgapi":["@p @0 $Z @5 @R BGAPI packets.","0.0.10"],"tower-retry":["Retry failed requests.",C[1]],"jamkit":["A &7 game &D @1.","0.3.1"],"ammonia":["HTML Sanitization","3.1.2"],"ole32-sys":["Contains @Y $h @0 @4 ^6 @x @1 ole32. See winapi @0 @g @5 constants.",C[3]],"unic-char":["UNIC — &h Character Tools","0.9.0"],"loc":["Count lines of @V (cloc) $I.","0.5.0"],"templatify":["A $I template to $c @e.","0.2.3"],"hummingbird":["An unofficial @3 @h @0 @4 Hummingbird.me @x.","0.1.3"],"orion":["Usable, &x @5 $M ^X-@3 &Q",C[72]],"$5_rs_io":["Streaming transcoding @0 encoding_rs","0.1.7"],"nccl":["Minimal $H $0 @G @5 @1.","1.0.0"],"sgx_$j_^t":[C[21],"0.1.3"],"switch-hal":["HAL @5 basic @T @0 input @5 &Z switches (buttons, switches, leds, transistors)",C[2]],"webcomponent":["A @1 @0 $Z &e components","0.6.2"],"inkling":["Limited @2 of @4 Ink markup @L.","0.12.5"],"philipshue":[C[929],C[9]],"emuman":["Utility @0 managing emulator ROM @z.","1.13.2"],"postgres_@a":["A set of @j @a @0 @f-postgres",C[49]],"kinder":["Kinder is a &7 @8 $i adds an algebraic $V to $u @3 &o @5 emulates higher order @g","0.1.3"],"adler":["A @d clean-room @2 of @4 Adler-32 checksum","1.0.2"],"mavlink":["Implements @4 MAVLink @w interchange @G @0 UAVs.",C[13]],"wasmly":["programatically $j a &e assembly ^F",C[3]],"tokio-file":["&b $0 I/O @0 Tokio","0.6.0"],"cw20-base":["Basic @2 of a CosmWasm-20 compliant token",C[12]],"dahl-salso":["$8 SALSO $1 is an ^Z greedy search procedure to obtain a clustering estimate @n on a partition loss @Y. $8 $1 is implemented @0 many loss @y, including @4 Binder loss @5 a generalization of @4 variation of $f loss, both of $i allow @0 unequal weights on @4 two @g of clustering mistakes. Efficient @T are also provided @0 Monte Carlo estimation of @4 posterior expected loss of a given clustering estimate. SALSO was first presented at @4 workshop 'Bayesian Nonparametric Inference: Dependence Structures @5 their Applications' in Oaxaca, Mexico on December 6, 2017.","0.6.1"],"hexfloat":["Syntax ^h to create floating point literals @t hexadecimal $p","0.1.3"],"azure_@F_mirror":[C[930],C[0]],"timely_&H":["&O timely &H infrastructure",C[28]],"starts-ends-with-caseless":["@Q @8 @s @4 `StartsWithCaseless` $y @5 @4 `EndsWithCaseless` $y to extend @g $i implement `AsRef` in order to do `starts_with` @5 `ends_with` case-insensitively.","0.6.4"],"zr":["quick, @d zsh @X &F","1.0.0"],"libimagentrydatetime":[C[39],C[12]],"data-encoding-macro-internal":["Internal @1 @0 @w-$5-@e",C[32]],"exonum_profiler":["A profiling / flamegraph @1.",C[4]],"sim2h_@U":["A simulation of lib3h - @U executable",C[18]],"cart-tmp-gmem":[C[931],C[0]],"$P_@F":["^r ^N @0 @3 - Core",C[27]],"anchor-attribute-interface":["Attribute @0 defining a ^U @m $y",C[43]],"moz_cbor":["@p to $d CBOR (&Y://tools.ietf.org/html/rfc7049) in @3",C[4]],"nordselect":["Select @4 ideal NordVPN @U","1.4.3"],"$P_pi":["^r ^N @0 @3 - ^r Performance Insights @ 2018-02-27",C[27]],"abnf_to_pest":["A tiny @8 @l helps convert ABNF grammars to pest","0.5.0"],"$P_mq":["^r ^N @0 @3 - AmazonMQ @ 2017-11-27",C[27]],"unicode_categories":["Query &h category membership @0 chars","0.1.1"],"sc-consensus-aura":["Aura &A $1 @0 substrate","0.9.0"],"rustfst":["@p @0 constructing, combining, optimizing, @5 searching weighted finite-state transducers (FSTs).","0.9.0"],"stal":["Set algebra solver @0 Redis",C[4]],"charsets":["An enum representing all charset names commonly $2.",C[3]],"requests":["@3 ^s @c @x styled after awesome Python requests - [WORK IN PROGRESS]","0.0.30"],"iai":["One-shot benchmarking @1","0.1.1"],"relm-derive-common":["&O @b @2 internally $2 by relm $R",C[72]],"blstrs":["High $J @2 of BLS12 381","0.4.1"],"repl":["&W REPL $y","0.7.1"],"kerberos-parser":["&B @0 @4 Kerberos @9","0.7.0"],"ordermap":["A ^z table @7 consistent order @5 $I iteration. NOTE: @Q @8 was renamed to indexmap. Please $d it under its new name.","0.4.2"],"piet-test":["^e @0 $S @4 piet 2D ^T $F.","0.0.12"],"dia-files":["For finding @z...","0.12.1"],"cli-proxy":["^y proxy @U","0.3.5"],"@o":[C[106],"0.3.6"],"sorted-json":["a @f &V serializer @l sorts keys",C[0]],"p256-cortex-m4-sys":["Low-@C @6 to P256-Cortex-M4",C[657]],"metar":["A zero-&m METAR @R @1 in ^X @3","0.5.0"],"cronparse":["Crontab @z @i","0.5.1"],"etcommon-trie":[C[932],C[2]],"github-rs":["Pure @3 @6 to @4 Github @x","0.7.0"],"confsolve":["Command $D ^4 @0 resolving Dropbox/Wuala conflicts",C[1]],"foreign-types":["A @k @0 @3 &r &6 C APIs","0.5.0"],"easy-plugin-plugins":["Compiler plugins $2 internally by @4 &x-$Y @8.","0.9.1"],"instant":["A partial replacement @0 std::$z::Instant @l works on WASM too.","0.1.12"],"raftlog_protobuf":["Encoders @5 decoders of @4 ^c-Buffers &y @0 @4 constituents defined in `raftlog` @8",C[1]],"simplemad_@r":["libmad 0.15.1b @6 @0 @3","0.5.0"],"tugger-licensing":["Functionality related to software licensing","0.5.0"],"avr-std-stub":["Contains @d @T of required @L items @l `libstd` normally defines on other targets","1.0.3"],"$P_connect":["^r ^N @0 @3 - Amazon Connect Service @ 2017-08-08",C[27]],"normpath":["More reliable path manipulation","0.3.1"],"syntex_syntax2":[C[965],"0.0.2"],"two_three":["A two-three (2-3) ^0 @2 in @3. Includes a map @5 set @m","0.0.6"],"cargo-toml2":["`Cargo.toml` @5 `.@S/config` @R stuff","1.3.2"],"feattle-ui":[C[544],"0.7.0"],"xxhash":["$8 xxHash hashing $1","0.0.8"],"bita":["Differential $0 synchronization &6 &z(s).","0.9.0"],"coroutine":["Coroutine @p in @3",C[7]],"ion":["parse @5 ^I ion @z","0.8.8"],"google-logging2-cli":[C[933],C[34]],"heaparray":["Flexible @j @0 dynamically-sized @g, @u heap-allocated array of &o","0.5.1"],"xz2":["@3 @6 to liblzma ^R Read/Write streams as well as low-levelin-$g $5/^P.","0.1.6"],"actix-http-test":[C[934],C[225]],"macho":["Mach-O @i in @f","0.4.1"],"radix":["Convert any {u8, u16, u32, u64, u128, usize} to another radix","0.6.0"],"pwninit":["automate starting $Q exploit challenges","3.0.2"],"postgres":["A &8, synchronous PostgreSQL @c","0.19.2"],"linux_raw_input_rs":["@K @1 to grab raw input @t keyboard in linux systems","0.1.6"],"easy-ml":["Matrix @5 linear algebra @1 aimed at being &x to $d","1.7.0"],"defaultmap":["@W a HashMap @7 an automatic default @0 missing keys.","0.5.0"],"copystr":["&str @7 `Copy` semantics.","0.0.5"],"drone-stm32-map-pieces-3":[C[46],C[24]],"font8x8":["8x8 monochrome bitmap font @0 &S.","0.3.1"],"fractalide":["Fractalide, a Flow-@n $m ^K in @3",C[5]],"webview2":["@3 @6 @0 WebView2","0.1.4"],"adsb":["ADS-B/Mode-S @i",C[1]],"beau_collector":["Collect up all errors ^d a single ^q",C[5]],"gotham_restful_@b":["&n @a @0 gotham_restful","0.4.3"],"label-macros":["Label @y @5 iterate &6 them.","0.6.0"],"goldenfile":["@K goldenfile $S @1","1.1.0"],"openxr-sys":["OpenXR $L @6","0.9.0"],"@S":["Cargo, a @X &F @0 @3.","0.57.0"],"^I_viewer":["A ^I viewer GUI","0.4.9"],"rucaja":["@3 Calls Java - via JNI","0.4.5"],"eng-wasm":[C[935],"0.1.7"],"mobi":["A @1 @0 ^a .mobi @G @z","0.5.1"],"structconf":["Combine clap @5 @f-ini ^d a single $e @e",C[2]],"futf":["Handling fragments of UTF-8","0.1.4"],"gdl-parser":["A @i @0 GDL (game description @L)","0.0.8"],"device_^0":["Reads @5 parses &j device ^0 images","1.1.0"],"google-youtubereporting1":[C[936],C[65]],"lbfgs":["A @3 @2 of @4 L-BFGS $1",C[5]],"error-context":["Methods @5 @g @l help @7 adding additional context $f to ^q @g",C[4]],"old-http":["Obsolete ^s @1","0.1.1-pre"],"clap-nested":["Convenient `clap` @0 CLI apps @7 multi-@C subcommands.",C[2]],"menoh":["Binding @0 Menoh.",C[8]],"httpmock-macros":["an ^s mock @U @1 @0 $r tests",C[2]],"^D_lines":["Information about lines of ^D in a $c.",C[1]],"markup5ever":["&O @V @0 xml5ever @5 html5ever",C[12]],"$l_^z":["Generate a ^z @0 a @3 type.The primary $d-case @0 this @8 is @0 detecting differences in messagetypes $t versions of a crate.The `TypeHash` $y is implemented @0 most built-in @g @5 a @b macrois provided, @0 ^5 it @0 $r own @g.",C[1]],"google-spectrum1_explorer":[C[937],"2.0.8+20170306"],"nettle-src":["Source of Nettle @5 logic to $j it.","3.5.1-2"],"varint":["A @3 @2 of Google Protobuf's Variable-Length Integers","0.9.0"],"ytdl":["youtube download ^y &0 in @f.","0.1.5"],"x11cap":["Screen capture @7 X11 in @3","0.4.1"],"wireless":["@p @0 dealing @7 wireless (i.e. GSM, UMTS @5 LTE) cell identities.",C[8]],"sonic-server":["Fast, ^O @5 schema-less search $N.","1.3.0"],"pico-sys":["@H to @4 PicoHTTPParser.","0.0.1"],"mcpat-sys":["$8 @X @s @6 to McPAT.",C[7]],"async-fs":["Async filesystem $9","1.5.0"],"colosseum":["A variety of arena allocators @0 @3, including &d-$M arenas.",C[8]],"whisper":["Whisper $z series $0 @j",C[38]],"guzuta":["Custom repository &F @0 ArchLinux pacman",C[2]],"crdt":["Conflict-free Replicated Data Types @0 @3","0.5.0"],"fxsm-derive":[C[938],C[1]],"url-crawler":["Use crusty instead","0.3.1"],"asm6502":["A basic 6502 assembler.",C[4]],"&s_svg_^T":["A @3 @1 @0 &S SVG Graphics @7 WASM","1.0.4"],"competitive-hpp":["Competitive Programming @p @0 AtCoder @7 @3","0.10.23"],"cortex-m-log":["Logging facilities @0 Cortex-M processors","0.7.0"],"sbr":["Recommender models.",C[2]],"^B":["&T: $d @4 procinfo @8.","0.1.4"],"mdbook":["Creates a book @t markdown @z","0.4.13"],"lelet":["golang $C task executor","1.2.18"],"self_encryption":["Self encrypting @z (convergent encryption plus obfuscation)","0.27.0"],"googl":["A @d @m to @4 Google URL Shortener @x.",C[0]],"mio":["Lightweight non-blocking IO","0.7.14"],"testbench":["Testing @5 benchmarking &1 @0 concurrent @3 @V",C[7]],"gstreamer-sys":["$L @6 to libgstreamer-1.0","0.17.3"],"fixedstep":["@K @e to create a fixed timestep loop @0 a game",C[1]],"git-checks":[C[939],"4.1.0"],"packedvec":["Store vectors of integers efficiently","1.2.4"],"holochain_conductor_&s":["holochain &s",C[18]],"ipfs-embed":["&7 embeddable ipfs @2","0.22.4"],"backoff-futures":["A retry @5 backoff mechanism @0 `std::future::Future`.&T: see `backoff::future`.",C[9]],"meealgi":["A selective @2 of Jean Meeus' astronomical ^3.","0.0.6"],"sixtyfps-rendering-backend-default":["Helper @8 to pick @4 default &S $N @0 SixtyFPS","0.1.4"],"python_mixin":["Deprecated in favour of `external_mixin`. Use Python to ^n yourRust, right in $r @3.","0.0.2"],"rgb":["`struct RGB/RGBA/etc.` @0 sharing pixels $t $R + convenience &P @0 color manipulation.Allows no-copy high-@C interoperability. Also adds $u convenience &P @5 implements ^E @3 $3 to make `RGB`/`RGBA` pixels @5 slices first-class @3 objects.","0.8.28"],"nfd":[C[940],"0.0.4"],"heliometer":["A basic Brainfuck interpreter","0.5.10"],"sozuctl":["@D $D $U to configure a sozu instance",C[15]],"amq-protocol-codegen":["AMQP specifications - ^H",C[304]],"$6_closure":["Serializable @5 debuggable closures.This @1 @s @a @l wrap closures to make them serializable @5 debuggable.",C[9]],"ugli-derive":["Universal OpenGL Interface (@b @a)","0.7.0-alpha.0"],"snarkos-profiler":["Profiler @0 a decentralized operating @O","1.3.17"],"geocoding":["Geocoding @1 @0 @3","0.3.1"],"add-one":["Adds one to a &a","1.0.0"],"ignite":["ignite serves @4 role as a \"batteries included\" addon to stdlib ^R useful stuff @5 higher @C @y along @7 abstractions.","0.1.6"],"vssapi-sys":["$L @6 to vssapi. @Q @8 is a placeholder @0 @4 future. If you are interested in this @1 feel free to get in touch @7 me: &z://www.rustaceans.org/retep998","0.0.1"],"vapoursynth-sys":["@3 @6 @0 vapoursynth @5 vsscript.",C[1]],"linkcheck":["A @1 @0 extracting @5 validating links.",C[2]],"mersenne_twister":["Mersenne Twister pseudorandom &a @B","1.1.1"],"bitmaptrie":["Bitmapped vector trie (mutable, not persistent). Word-size path-cached indexing ^d essentially a sparse vector. Requires @f-nightly.","2.0.0"],"cplex-sys":["Low @C @6 to @4 Cplex C-@x","0.7.0"],"rahashmap":["Fork of ^E @1 HashMap @7 additional $7.","0.2.14"],"libflo":["@W all of @4 components of libflo.",C[4]],"$6_str":["A $6 @h @l stores $l @u Display @5 FromStr.",C[0]],"noble-identity":["FABRIC identity ^A noble","2.0.0"],"noble-im-online":["FABRIC's I'm online noble","2.0.0"],"swc_node_base":[C[1043],"0.5.1"],"pulldown-cmark-to-cmark":["Convert pulldown-cmark Events back to @4 $c they were parsed @t","6.0.4"],"const_fn":["An &U @0 &x ^1 of const @y @7 conditional compilations.","0.4.8"],"pretty_toa":["Fast convert (@u itoa/dtoa) ^M to $p @7 thousands separators","1.0.0"],"test-project":["Test ^g to play $G @7 release ^A","2.3.0"],"$6_@7_@a":["^B-@e @1 @0 serde_with","1.5.1"],"oscpad":["OSC 'control panel' @U @7 &J-state &e controls","0.2.3"],"ethereum-block":[C[941],C[2]],"tectonic_geturl":["A ^G @m @0 ^s GETs @5 byte-range requests, @7 pluggable backends.",C[1]],"palette_@b":["^W implement $3 @t @4 palette @8.","0.6.0"],"gio-2-0-sys":["Import @8 @0 Gio","0.46.4"],"jmespatch":[C[942],C[1]],"windows_quote":[C[773],C[74]],"jsonrpc-http-server-plus":[C[943],"7.1.0"],"mime2ext":["Given a mimetype, suggest a $0 ^h","0.1.50"],"recless":["A @3 @2 of @4 recursive least squares $1 @7 exponential forgetting",C[1]],"roa":["@J &e @k &X by koajs, ^O but powerful.","0.5.3"],"runner":["Utility @0 running @3 snippets","0.5.0"],"lewton":["Pure @3 vorbis decoder","0.10.2"],"again":["&s-^i retry util @0 std @1 @Z",C[4]],"x509-signature":["Low-@C X.509 @R @5 signature verification @1","0.5.0"],"ink_^x":["[ink!] Data $k to organize @5 manipulate ink! contract ^x.",C[107]],"blake-hash":["BLAKE ^z @y",C[2]],"$6_url_params":["URL parameters @M",C[5]],"radium":["Portable interfaces @0 maybe-atomic @g","0.6.2"],"btoi":["Parse integers directly @t ASCII byte slices","0.4.2"],"cupid":["&M $X to @4 x86 @5 x86_64 CPUID instruction","0.6.1"],"muldiv":["@W a $y @0 numeric @g to perform combined multiplication anddivision @7 overflow protection","1.0.0"],"dwm-status":["Displays @O $f @0 dwm status bar.","1.7.2"],"pretty-hash":["Output $Q buffers as a nice, shortened hex $c.","0.4.1"],"lzma-sys":["Raw @6 to liblzma $i contains an @2 of LZMA @5 xz streamencoding/decoding.High @C @3 @6 are available in @4 `xz2` @8.","0.1.17"],"big-bytes":["Converts a &a to @4 largest possible &l of @4 byte unit","1.0.0"],"google-geocode":["An @x @c @0 @4 Google Geocoding @x","0.1.5"],"@d_logger":["A logger @l prints all &y @7 a readable &Z @G","1.13.0"],"tk-bufstream":["A buffered ^L backed by contiguous buffers (netbuf) @0 $v",C[1]],"git_lab_^y":["A custom git @D @0 &2 @7 a GitLab @U",C[26]],"throttled_bitcoin_rpc":["Throttled Bitcoin RPC @x @c @0 @3.","0.2.3"],"gazetta-render-ext":["A &k site @B @k. Extra render @V.",C[1]],"cowrc":["A set of copy-on-&0 smart pointers.","0.0.4"],"juno":["A ^t @f @1 @0 @4 juno microservices @k","0.1.5-beta"],"sparkly":["A pretty-printing @1 @n on Wadler's \"A Prettier Printer\" @7 @j @0 ANSI styling.","0.1.5"],"aurum-numeric":["Numeric $3",C[3]],"deser-hjson":["a Hjson deserializer @0 Serde","1.0.2"],"radix-heap":["Fast monotone priority queues",C[2]],"argmin_@F":["Mathematical optimization in ^X @3 (@F $7)","0.2.5"],"nrf52840-hal":["HAL @0 nRF52840 $s",C[24]],"tugger-apple-bundle":["Interfact @7 Apple bundle $9",C[2]],"advtools":["A prelude to reduce boilerplate of 'Advent of Code' $C challenges.","0.6.0"],"sdl2":["SDL2 @6 @0 @3","0.35.1"],"c_linked_list":["^e @0 ^a NULL-terminated C linked lists","1.1.1"],"rustc-ap-rustc_expand":["^W published $4 of @4 @X `rustc_expand` in @4 @f-lang/@f repository @t commit 9a27044f42ace9eb652781b53f598e25d4e7e918 $8 publishing script @0 this @8 lives at: &Y://github.com/alexcrichton/&K-auto-publish",C[215]],"cpu-monitor":["A @1 to get cpu usage &6 a given duration","0.1.1"],"dkregistry":["A ^X-@3 $n @1 @0 Docker Registry @x","0.5.0"],"tss-esapi":["@3-&8 @h $G TSS 2.0 Enhanced System @x","7.0.0-alpha.1"],"xcur":["@p @0 @R XCursor @z","0.1.3"],"jsonxf":["A $I ^k pretty-printer @5 minimizer.","1.1.1"],"nsqueue":[C[944],"0.1.5"],"rusterize":["A 3D renderer built @t per-pixel $X.","0.3.8"],"gluon_check":["$8 typechecker @0 @4 gluon $m @L",C[43]],"cargo-authors":["A &i @0 @S @l lists all @4 authors of all @4 dependenciesof @4 @8 in $r current ^p directory.Simply install, then navigate to @4 directory of a @8 @5 run `@S authors`","0.5.1"],"cascade":["Dart-$C cascade @e @0 @3","1.0.0"],"ascon":["A @2 of ASCON authenticated encryption.","0.1.4"],"nalgebra-glm":["A computer-^T oriented @x @0 nalgebra, &X by @4 C++ GLM @1.",C[23]],"bitpattern":["bitwise pattern matching @5 extracting",C[0]],"nom-varint":["Parse varints ($2 by Celeste, Minecraft, @5 ^c buffers) @u nom.",C[2]],"rocket-etagged-raw-response":["@Q @8 @s a response struct $2 @0 responding raw @w @7 **Etag** cache.",C[13]],"optional_struct":["Crate defining a @e @l will ^n, @t a $V, another $V @7 only Option fields",C[3]],"tvdb":["@x @h to &z://thetvdb.com (open ^Q @0 TV episode @w)","0.6.0"],"flann":["@H @0 @4 FLANN @1",C[0]],"private-box":["A direct port of &Y://github.com/auditdrivencrypto/private-box","0.6.0"],"ghost_actor":["A @d, ergonomic, idiomatic, @e @0 $E @4 boilerplate to $d @f @Z tasks in a concurrent actor style.","0.4.0-alpha.5"],"crates-index":["@p @0 retrieving @5 &2 @7 @4 crates.io index","0.18.1"],"$P_servicecatalog":["^r ^N @0 @3 - ^r Service Catalog @ 2015-12-10",C[27]],"table":["A specialized map @0 storing ^V of varying @g.",C[2]],"tm4c123x":["Peripheral $X @x @0 TI TM4C123x $s","0.9.0"],"assembly":["@p @0 @z/resources @0 LU related software","0.7.0-beta.0"],"test-env-log":["A replacement of @4 #[^7] &U @l initializes &H @5/ortracing infrastructure before running tests.","0.2.7"],"theban_db":["Using interval trees to create a @d interval ^Q","0.7.0"],"tauri-utils":["^e @0 Tauri",C[96]],"gitx":["git subcommands","0.0.4"],"charname":["Incredibly @d @1 @l just gives you @4 &h name @0 a character.",C[5]],"solana-storage-proto":["Solana Storage Protobuf Definitions","1.8.1"],"reqwest-middleware":["Wrapper $G reqwest to allow @0 @c &G chains.",C[4]],"tls-api-rustls":["TLS @x @2 &6 rustls @8","0.7.0"],"keccak-hash":["`keccak-^z` is a set of $w @y to facilitate ^p @7 Keccak hashes (256/512 bits long).",C[7]],"google-tpu1_alpha1":[C[945],"2.0.8+20210217"],"pallet-indices":["FRAME indices ^A &v","3.0.0"],"mildew":["@3 &w",C[4]],"^f_libra_failure_ext":["Libra failure ext",C[10]],"probe-rs-target":["Target description schema @0 probe-rs.",C[16]],"tectonic_$a_bibtex":["$8 `bibtex` ^U as a reusable @8.","0.1.3"],"commands":["A @D @O @0 @3. @Q @s a general @D @O $i can be $2 in a variety of environments, including GUI @P @5 @D $D @E. @Q is &X by elements of @4 Lisp Machine, @4 &O Lisp Interface Manager (CLIM), router @D $D interfaces, @5 @4 TOPS-20 @D $D among other things.","0.0.5"],"foundationdb":["High @C @c @6 @0 FoundationDB.","0.5.0"],"ptp":["Picture Transfer ^c ^j","0.5.0"],"lexpr-macros":["Internal @8 ^5 @a exposed by @4 `lexpr` @8",C[5]],"cc":["A $j-$z &m @0 Cargo $j scripts to assist in invoking @4 nativeC ^2 to compile &8 C @V ^d a &k archive to be linked ^d Rustcode.","1.0.71"],"rendezvous_^z":["An @2 of Rendezvous hashing $1",C[1]],"egli":["EGL Interface","0.5.0"],"roblox_install":["Get @4 install directory of Roblox in @V","1.0.0"],"chickenize":["Chickenize everything","0.3.3"],"unic-idna":["UNIC — &h IDNA Compatibility Processing","0.9.0"],"smartcore":["$8 most advanced machine learning @1 in @f.",C[3]],"deflate":["A DEFLATE, zlib @5 gzip encoder $A in @f.","0.9.1"],"conjure-serde":["Serde Serializer @5 Deserializer &r @0 Conjure","0.7.4"],"vec4":["vec4",C[5]],"coreutils_jwt":["Json Web Token &t.","0.5.1"],"generic-tests":["$q @e to define tests @5 benchmarks generically",C[4]],"worley-noise":["Worley noise @2","3.7.0"],"diesel_geometry":["Adds @j @0 geometric @g @5 @y to Diesel.","1.4.0"],"redfa":["Regular expression derivatives @0 $Z DFAs.","0.0.2"],"sse-actix-web":["SSE @0 actix-&e","0.8.1"],"ruma-api":["An $F @0 Matrix @x endpoints.","0.18.5"],"thruster-async-await":["An @J await shim @0 @4 thruster &e @k",C[78]],"hyper-staticfile":["Static $0 serving @0 Hyper 0.14",C[7]],"bxcan":["STM32 bxCAN peripheral ^j","0.6.0"],"saphir-cookie":["Crate @0 @R ^s cookie headers @5 managing a cookie jar. Supports signedand private (encrypted + signed) jars.","0.13.2"],"alert-after":["Get a desktop notification after a @D finishes executing","1.5.1"],"egg":["An @2 of egraphs","0.6.0"],"reproto-ast":["$k @0 @4 reproto AST","0.3.36"],"winrt_gen":["Code ^1 @0 @4 winrt @8","0.7.2"],"mlx9061x":["Platform-&f @3 ^j @0 @4 MLX90614 @5 MLX90615 non-contact infrared thermometers.",C[3]],"libimagentrycategory":[C[39],C[12]],"bolt-proto-derive":["$q @a @0 bolt-proto.","0.5.2"],"@Z_retrying":["Runtime &f retry @0 @Z.","0.1.1"],"kipa":["Distributed Key to IP Address (KIPA) query ^9","0.2.10"],"thrift":["@3 @6 @0 @4 Apache Thrift RPC @O",C[23]],"enclave-example":["Example secure enclave $A in @3","0.1.4"],"m3u8-rs":["A @1 @0 @R m3u8 @z (Apple's ^s Live Streaming (HLS) @9).","2.1.0"],"geozero-core":[C[946],"0.6.2"],"nash-protocol":["state ^A @5 cryptography @0 &2 @7 nash exchange @9","0.1.34"],"warc":["A @3 @1 @0 &3 @5 $O WARC @z.",C[5]],"moore-svlog-syntax":["$8 SystemVerilog @i @2 of @4 moore ^2 @k.","0.12.1"],"dtb":["Device ^0 blob manipulation",C[3]],"bcrypt-sys":["$L @6 to bcrypt. @Q @8 is a placeholder @0 @4 future. If you are interested in this @1 feel free to get in touch @7 me: &z://www.rustaceans.org/retep998","0.0.1"],"exonum-explorer":["Blockchain explorer ^u @0 @4 Exonum @k","1.0.0"],"simple-error":["A @d ^q $l backed by a $c","0.2.3"],"u2f":["@3 FIDO U2F @p",C[3]],"gpsd_proto":["$8 gpsd_proto ^F contains @g @5 @y to connect to gpsd to get GPS coordinates @5 satellite $f.","0.7.0"],"swindon":["An ^s edge (frontend) @U @7 smart websockets @j","0.7.8"],"google-resourceviews1_beta2-cli":[C[947],C[948]],"dbui-database":["Database $X @5 schema introspection @0 dbui","0.0.64"],"rpick":["Helps you pick items @t a list by various ^3. Example uses: pick a restaurant you haven't been to in a while, or an album to listen to.","0.8.6"],"nativeshell":["NativeShell @3 @X",C[38]],"egaku2d":[C[949],"0.5.4"],"libfaster-sys":["@H @0 FASTER",C[16]],"&Y":["Host These Things Please - a basic &z @U @0 hosting a folder $I @5 simply","1.12.1"],"proclist":["Cross-@N @1 to retrieve OS processes $f.","0.9.2"],"merkle":["Merkle ^0 @2 @7 @j @0 ^1 of inclusion proofs.","1.11.0"],"len-trait":["Len $y @0 collectons.","0.6.1"],"celeste":["Crate @0 formats @t @4 2018 game Celeste.","2.0.1"],"google-sqladmin1_beta4":[C[950],"2.0.8+20210321"],"mtproxy":["MTProto Proxy Server","0.0.2"],"half":["Half-precision floating point f16 @5 bf16 @g @0 @3 ^5 @4 IEEE 754-2008 ^E binary16 @5 bfloat16 @g.","1.8.2"],"rustc-ap-rustc_fs_util":["^W published $4 of @4 @X `rustc_fs_util` in @4 @f-lang/@f repository @t commit 9a27044f42ace9eb652781b53f598e25d4e7e918 $8 publishing script @0 this @8 lives at: &Y://github.com/alexcrichton/&K-auto-publish",C[215]],"smpl_jwt":["Very @d JWT ^1 lib.","0.6.1"],"kafka-proxy":["Takes in ^s Posts, @5 sends them to a Kafka Server.","1.0.0"],"certitude":["Certificate validation logic @0 OS X @5 ^6.","1.1.0"],"iron_inspect":["Inspect @4 result of Iron",C[5]],"atelier_assembler":["Implements @4 Smithy model assembler pattern, to merge @z ^d a single in-$g Model.","0.1.4"],"disque":["A @c @1 @0 Disque message broker",C[8]],"ophir":["A @1 @0 communicating @7 Ophir power meters","0.2.5"],"fractal-api":["Fractal Global Credits @x @c @1","0.9.39"],"merkle-generator":["^n a merkle ^0 @n on incoming @w",C[3]],"bevy_audio":["@W audio $7 @0 Bevy Engine","0.5.0"],"h2n5":["^s 2 N5: Serve N5 datasets &6 ^s as tiled image stacks","0.1.7"],"tugger":["Package @5 distribute @P",C[28]],"modular-bitfield-msb":["Allows to easily define bitfield @g @7 modular $K blocks. MSB-first $4.","0.11.2"],"toml-test":["Verify @3 TOML parsers","0.3.1"],"allegro_audio-sys":["Allegro 5 audio addon @3 $W","0.0.41"],"structural":["Field accessor $3,@5 emulation of structural @g.","0.4.3"],"svgdom":["[&T] @p to represent an SVG as a DOM.",C[43]],"ukhasnet-parser":["A @i @0 @4 UKHASnet @9",C[2]],"rawslice":["Reimplementation of @4 slice iterators, @7 extra features. For examplecreation @t raw pointers @5 start, end pointer accessors.","0.1.1"],"ark-ed-on-bn254":["A Twisted Edwards curve defined &6 @4 scalar field of @4 BN254 curve",C[1]],"libimagtodo":[C[39],C[12]],"littlefs2-sys":["Low-@C @6 to littlefs","0.1.6"],"cargo-graph":["Cargo &i @0 $K GraphViz DOT @z of &m graphs","0.3.1"],"bb8-memcached":["@J connection pool @0 memcached, @n on bb8 @5 memcache-@J",C[2]],"iota-crypto":["$8 canonical source of ^w ground-truth @0 all IOTA @3 projects","0.7.0"],"tempdir":["A @1 @0 managing a temporary directory @5 deleting all contents when it'sdropped.","0.3.7"],"vulkano_^D":["Render ^D @7 @4 DejaVu font @u @4 Vulkano @1.",C[23]],"failure-tools":["Various &1 to be $2 in conjunction @7 @4 'failure' @8.","4.0.5"],"gstreamer-pbutils-sys":["$L @6 to libgstpbutils-1.0",C[26]],"usp10-sys":["$L @6 to usp10. @Q @8 is a placeholder @0 @4 future. If you are interested in this @1 feel free to get in touch @7 me: &z://www.rustaceans.org/retep998","0.0.1"],"frame-support-procedural":[C[951],"3.0.0"],"cryptoauthlib-sys":["^W ^8 @3 @6 @0 CryptoAuthentication @p calls.",C[5]],"bluez-async":["An @J @h $G @4 D-Bus @m of BlueZ (@4 &j Bluetooth daemon), supporting GATT @c (central) $7.","0.5.0"],"fractran_@a":["A ^2 $Y @l converts Fractran @V ^d @3 at compiletime, letting $r Fractran programs be optimised by LLVM to super-fastnative @V.","0.1.5"],"content-blocker":["A @1 @0 @R Safari-style content blocking lists @5 dynamically evaluating @4 rules against against requests.","0.2.3"],"modifier":["Fluid chaining APIs @0 both mutable ownership @g.",C[0]],"luminance-front":["luminance re-exported @7 a $N picked at compile-$z",C[2]],"sgx_ucrypto":[C[21],"1.1.1"],"minihttpse":["a mini &z response @i lib in @f","0.1.6"],"valora":["A brush @0 generative fine art.","0.2.12"],"enum_extract":["Helper @a @0 extracting single enum variants of an enum","0.1.1"],"grpcio-sys":[C[952],"0.9.1+1.38.0"],"typed-builder":["Compile-$z $l-checked &I @b","0.9.1"],"bloodhound":["Fuzzy $0 finder.","0.5.4"],"dmidecode":["Decode SMBIOS/DMI $f ^d accessible @w $k","0.7.0"],"run-or-raise":["Utility @0 launching @P or focusing their windows","0.3.3"],"range":["A @1 @0 range addressing","1.0.0"],"divisors":["A blazing $I @1 to find all divisors of a natural &a.",C[5]],"tokio-lock":["Access an object @t a single Tokio task","1.1.0"],"input-sys":["Bindgen ^8 unsafe libinput @h","1.16.0"],"rocket-lenient-json":["A `rocket_contrib::Json` copy $i removes @4 `Content-Type` check","0.3.1"],"embed_js_$u":["@v detail of embed_js @5 embed_js_build, do not $d directly.",C[1]],"webmanifest":["Create a manifest.webmanifest $0","1.1.1"],"lambda_@I_@c":["Client ^N @0 ^r Lambda's @I APIs",C[8]],"habitica_@f_@c":["Unnoficial Habitica Api @3 Client","0.1.5"],"opencv-binding-generator":["Binding @B @0 opencv @8","0.32.0"],"wasmparser":["A @d event-driven @1 @0 @R $x $Q @z.","0.81.0"],"subrpcer":["subrpcer","0.4.1"],"tetcore-bip39":["Converting BIP39 entropy to valid Tetcore (sr25519) SecretKeys","0.4.2"],"enso-prelude":["An augmented ^E @1 in @4 vein of Haskell's prelude.","0.2.6"],"arrayfire":["ArrayFire is a high $J software @1 @0 parallel computing @7 an &x-to-$d @x. Its array @n @Y set makes parallel $m @d. ArrayFire's &l backends (CUDA, OpenCL @5 &8 CPU) make it @N independent @5 highly portable. A few lines of @V in ArrayFire can replace dozens of lines of parallel computing @V, saving you valuable $z @5 lowering &D costs. @Q @8 @s @3 @6 @0 ArrayFire @1.","3.8.0"],"halo2":["[BETA] Fast proof-carrying @w @2 @7 no trusted setup","0.1.0-beta.1"],"lindera-dictionary":["A morphological dictionary loader.",C[7]],"caseless":["&h caseless matching",C[5]],"yatt":["Yet Another Task Tracker","0.9.0"],"executors":["A $b of high-$J task executors.","0.9.0"],"fern_@a":["Deprecated @8 $i $2 to accompany @4 `fern` (`fern` has been independent since $4 0.2).","0.1.8"],"$d":["","0.0.0"],"stm32wl":["Device @j $R @0 STM32WL &N",C[24]],"uhttp_uri":["Zero-allocation @i @0 ^s URIs","0.5.1"],"google-dfareporting2d8":[C[953],C[954]],"ilc-format-energymech":[C[164],C[3]],"anterofit":["Wrap REST APIs @7 @3 $3 @u @a",C[3]],"beehave":["A @d @1 @0 defining @5 evaluating a hierarchical state machine (behaviour ^0).","0.0.4"],"accept-language":["Parse @5 compare Accept-&R header $p","2.0.0"],"twang":["@p @0 ^X @3 advanced audio synthesis.","0.7.0"],"gitoxide":["A @D-$D $U @0 &2 @7 git repositories",C[13]],"provider":["A content provider @0 'flow' &1","0.34.7"],"swipl-info":["Helper @8 @0 retrieving $f about @4 installed $4 of SWI-Prolog","0.3.1"],"call-trace-macro":["@W @4 $e @a @0 @4 `call-trace` @8.",C[2]],"libmaj":["A @1 to create installers @5 updaters.","0.1.6"],"l337-redis":["l337 &F @0 redis","0.9.0"],"cortex-m-rtic":[C[955],C[956]],"aquamarine-vm":["Fluence Aquamarine VM","0.7.0"],"custom_^q":["Define custom errors ^Y boilerplate @u @4 custom_error! @e.","1.9.2"],"trigger":["Yet another GitHub/GitLab Webhook listener","1.1.2"],"glam":["A @d @5 $I 3D math @1 @0 games @5 ^T",C[95]],"unic-ucd-age":["UNIC — &h Character Database — Age","0.9.0"],"chainbuf":["Fast chained buffers",C[0]],"openat":["A @h $G openat, symlinkat, @5 similar @O calls","0.1.21"],"nickel_cors":["CORS Middleware @0 nickel.rs","0.3.3"],"unwind-sys":["$L @6 to libunwind",C[4]],"fluence-sdk-wit":["Webassembly @m-@g @B","0.6.1"],"rayon-futures":["(deprecated) Futures $T ^d Rayon","0.1.1"],"fortanix-sgx-tools":["Tools @0 $K @5 running enclaves @0 @4 Fortanix SGX ABI.This contains `ftxsgx-runner` to run ^G `x86_64-fortanix-unknown-sgx`enclaves, as well as `ftxsgx-elf2sgxs`, $i is $2 in @4 $j ^I forthe `x86_64-fortanix-unknown-sgx` target.","0.4.3"],"tugger-code-signing":["Cross-@N @V signing $7",C[2]],"credui-sys":["$L @6 to credui. @Q @8 is a placeholder @0 @4 future. If you are interested in this @1 feel free to get in touch @7 me: &z://www.rustaceans.org/retep998","0.0.1"],"porteurbars":["portable git hosted ^g template","0.1.5"],"libpulse-binding":["A @3 @L $W @0 @4 PulseAudio libpulse @1.","2.25.0"],"tetsy-jsonrpc-client-transports":[C[957],"15.1.0"],"&e_logger":["A logger @0 &H in &e-browsers",C[3]],"ddc-macos":["DDC/CI monitor control on MacOS",C[3]],"pueue-lib":["$8 &J @1 to work @7 @4 Pueue @c @5 daemon.","0.18.1"],"deno_typescript":["To compile TypeScript to a snapshot during build.rs","0.49.0"],"rfc7239":["&B @0 rfc7239 formatted Forwarded headers",C[0]],"solana-cli-output":[C[58],"1.8.1"],"linux-api-sys":["Preliminary @6 to kernel/sys.c","0.0.1"],"tdigest":["T-Digest $1 in @3",C[8]],"claxon":["A FLAC ^P @1","0.4.3"],"qlog":["qlog @w model @0 QUIC @5 ^s/3","0.5.0"],"hyper-srv":["A @h $G Hyper's connector @7 ability to preresolve SRV DNS records.",C[2]],"eccles":["An Entity Component System in @3 focusing on speed @5 user-friendliness","0.2.3"],"@f_icu_utext":["&M @6 to @4 ICU4C @1 @t Unicode.utext.h","1.0.3"],"sheep":["Modular @5 ^O spritesheet packing @1",C[1]],"jwks-client":["@p to validate JWT tokens @u ^k Web Key Set (JWKS)",C[3]],"alcoholic_jwt":["@p @0 validation of RS256 JWTs","1.0.1"],"pew":["A benchmarking @1 @0 @3 @n on @A/benchmark","0.2.3"],"progressive":["A @f @1 @0 showing progress of iterators @5 loops",C[0]],"mcfly":["McFly replaces $r default ctrl-r shell history search @7 an intelligent search $a @l takes ^d account $r ^p directory @5 @4 context of recently executed commands. McFly's suggestions are prioritized in real $z @7 a &7 neural ^9.","0.5.9"],"demonstrate":["Declarative $S @k","0.4.5"],"madgwick":["Madgwick's orientation filter","0.1.1"],"bitutils":["Bitfield @e @5 @E","3.0.1"],"evm-gasometer":[C[958],"0.31.0"],"vf-rs":["A set of classes ^8 @t @4 ValueFlows RDF schema","0.3.16"],"kvdb-web":["A key-&5 ^Q @0 $d in browsers","0.9.0"],"opaque-debug":["Macro @0 opaque Debug $y @2",C[1]],"basic-cookies":["Low-@C RFC 6265 combatible cookie ^a @1 @0 @3.","0.1.4"],"gpx":["@3 read/&0 @j @0 GPS Exchange Format (GPX)","0.8.5"],"pgen":["Passphrase Generator","1.1.3"],"google-spanner1":["A @q @1 to @o @7 Spanner (@9 v1)","1.0.12+20190613"],"candid":["Candid is an @m description @L (IDL) @0 &2 @7 canisters running on @4 Internet Computer.","0.7.8"],"uikit":["@3 @h @0 iOS's UIKit @k.","0.0.2"],"wasmer-types-near":[C[959],"2.0.1"],"&K_$4":["A @1 @0 querying @4 $4 of a installed &K ^2",C[2]],"diesel":["A $M, extensible ORM @5 Query Builder @0 PostgreSQL, SQLite, @5 MySQL","1.4.8"],"iban_validate":["A &7 @8 to verify IBAN account ^M.","4.0.0"],"solana-account-decoder":["Solana account decoder","1.8.1"],"task-hookrs":["Crate to work @7 taskwarrior exported ^k","0.7.0"],"egl":[C[960],"0.2.7"],"cretonne-native":["Support @0 targeting @4 host @7 Cretonne","0.13.2"],"quiche":["🥧 Savoury @2 of @4 QUIC transport @9 @5 ^s/3",C[13]],"solana-version":["Solana Version","1.8.1"],"kcp":["Reliable-UDP @p @0 @3","0.4.10"],"noframe":["Game &D @k @u @8 ggez.","0.0.8"],"carol-test":["A @8 I $d to ^7 publishing","1.1.1"],"xmc4100":["XMC4100 Cortex-M peripheral $X @1",C[2]],"syntex_errors":[C[1049],"0.59.1"],"lsio":["lsio is @4 @1 @0 lsio @D $D $w @5 s3lsio. $8 @1 applies a @d $F on a &a ofgood &4 plus adds a &a of it's own. Heavy dev beware!","0.1.18"],"gst":["Generalised Search Tree","0.1.3"],"ipsec-parser":["&B @0 @4 IKEv2 @9","0.7.0"],"eventio":["A $b of event I/O processors @0 event-&u @P.","0.6.1"],"minions":["DISCONTINUED. @Q @8 was renamed. $8 &D of this @V is under @4 acto-rs @8.","0.2.9"],"timerfd":["A @f @m to @4 &j kernel's timerfd @x","1.2.0"],"tao":["Cross-@N window &F @1.","0.5.2"],"swf-parser":["SWF @i",C[15]],"sdnotify":["Notify &t &F about start-up completion @5 other daemon status changes",C[3]],"expo-server-sdk":["Server side @1 @0 ^p @7 Expo @u @3. Includes a @c to send push notifications to users of $r mobile app @u @4 Expo push notification services.",C[0]],"bip_util":["^e @0 @4 Bittorrent Infrastructure Project","0.5.0"],"positioned-io-preview":[C[961],"0.3.3"],"ncollide2d":["2 @5 3-dimensional collision detection @1 in @3. Will be superseded by @4 parry2d @8.","0.32.0"],"ckb-sentry-log":[C[1027],"0.21.0"],"$P_ce":["^r ^N @0 @3 - ^r Cost Explorer Service @ 2017-10-25",C[27]],"google-slides1":[C[962],C[963]],"tower-limit":["Limit maximum request rate to a `Service`.","0.3.1"],"plugger-ruby":["Ruby @6 to Plugger",C[1]],"rasn-snmp":["Data @g @0 ^a @4 @K Network Management ^c",C[2]],"fluence_sdk":["@3 ^N @0 $O @P @0 Fluence","0.0.6"],"crabquery":["JQuery $C HTML query @1","0.1.8"],"display-interface-spi":["&W SPI @2 @0 display interfaces","0.4.1"],"nbchan":["Highly optimized non-blocking communication channels","0.1.3"],"defmt-rtt":["Transmit defmt log &y &6 @4 RTT (Real-Time Transfer) @9",C[3]],"parameterized":["$q @e $i brings a compact parameterized $S @2 to @3 (&X by JUnit @ParameterizedTest)","0.3.1"],"elba":["elba is a @X &F @0 Idris",C[1]],"just":["🤖 Just a @D runner","0.10.2"],"drone-stm32-map-pieces-10":[C[46],C[24]],"lifx-core":["Low-@C control of LIFX bulbs on $r LAN",C[3]],"ncollide_pipeline":["&T: USE ncollide2d OR ncollide3D INSTEAD. 2 @5 3-dimensional collision detection @1 in @3: ^F describing @4 collision detection pipeline (broad phase/narrow phase) of ncollide.","0.13.2"],"grpc_etcd":["etcd @f-grpc ^S","0.1.4"],"channel-async":["Async/Stream Extensions @0 crossbeam-channel","0.3.0-deprecated"],"wapc":["An $a-pluggable $x Host Runtime ^5 @4 waPC Standard",C[12]],"rendy-descriptor":["Rendy's descriptor ^l","0.5.1"],"ritz_impl":["Proc @e @2 @0 @4 `ritz` @8",C[0]],"tree-sitter-typescript":["Typescript grammar @0 @4 ^0-sitter @R @1",C[42]],"ip":["@W @4 IpAddr enum, $i can represent either an IPv4 or an IPv6 address.Do not $d this @8! As of @3 1.7.0, @4 `std::net::IpAddr` is stabilized - @5 should be preferred.","1.1.1"],"hdrhistogram-c":["Binding to HdrHistogram_c @1","0.1.17"],"thinker":["Merged @7 &Y://crates.io/$R/reql","0.0.2"],"$P_^H":["Code ^1 @1 @0 Rusoto.",C[7]],"rupantor":["A Bengali Phonetic &B $i is very flexible @5 supports Avro Phonetic",C[1]],"serde-name":["Extract @4 Serde name of &o @5 enums",C[3]],"tiny":["An IRC @c","0.5.0"],"serialize_deserialize_u8_i32":["A @3 @1 @l safely converts, back @5 forward, $t u8 @5 i32","0.1.34"],"video-metadata":["Video metadata @i",C[4]],"wasm-bindgen-cli":["Command $D @m of @4 `#[wasm_bindgen]` &U @5 ^g. For moreinformation see &Y://github.com/rustwasm/&s-bindgen.","0.2.78"],"azul":["Azul GUI is a free, functional, reactive GUI @k @0 rapid &D of desktop @P $A in @3 @5 C, @u @4 Mozilla WebRender &S $a.","1.0.0-alpha4"],"imperium":["A ^y @0 @4 Imperium @k @0 roblox","0.9.7"],"bitreader":["BitReader helps &3 individual bits @t a slice of bytes.You can read \"unusual\" ^M of bits @t @4 byte slice, @0 example 13 bitsat once. $8 reader internally keeps track of position within @4 buffer.","0.3.4"],"unicase_$6":["$6 Serialization @5 Deserialization @0 UniCase @8",C[0]],"trust-dns-native-tls":["Trust-DNS is a $M @5 secure DNS @1. @Q is an ^h @0 @4 Trust-DNS @c to $d &8-tls @0 TLS.",C[41]],"wolfram_alpha":["A @1 ^R @3 @6 @0 @4 Wolfram|Alpha @x",C[2]],"google-drive3-cli":[C[964],C[200]],"imgui":["High-@C @3 @6 to dear imgui",C[7]],"defmac":["A @e to define lambda-$C @a inline.",C[5]],"$S_logger":["Supports $O tests to verify `log` @8 calls","0.1.1"],"libzfs":["@3 @h $G libzfs-@r","0.6.16"],"tokio-stdin":["Read @t stdin as a Tokio ^L",C[4]],"amplify_num":["Amplifying numeric @g: big-sized @5 bit-sized integers",C[8]],"garando_syntax":[C[965],C[0]],"winapi-i686-pc-windows-gnu":["Import &4 @0 @4 i686-pc-windows-gnu target. Please don't $d this @8 directly, depend on winapi instead.",C[2]],"hotswap":["Easy @V swapping in running executables","0.6.0"],"blossom":["@v of @4 Blossom $1 to get a maximum matching in an undirected graph",C[2]],"toolbox":["@K &1 @0 daily $d","0.2.8"],"cp_^S":["Check Point @x @1",C[2]],"mcp23017":["A @f ^j @0 @4 MCP23017 (16-Bit I2C I/O Expander @7 Serial Interface)","1.0.0"],"solv":["Microsoft Visual Studio solution validator","0.3.6"],"retain_mut":["Provide retain_mut method @l has @4 same $7 as retain but gives mutable borrow to @4 predicate.","0.1.4"],"mkl_link":["@p @0 linking @7 MKL.",C[4]],"max170xx":["Platform-&f @3 ^j @0 @4 MAX170xx 1-cell/2-cell fuel-gauge systems @7 ModelGauge @0 lithium-ion (Li+) batteries.Compatible @7 MAX17043, MAX17044, MAX17048 MAX17049, MAX17058 @5 MAX17059.",C[0]],"windows":["@3 @0 ^6","0.21.1"],"typed_index_$b":[C[966],"2.1.0"],"git-hash":["Borrowed @5 owned git ^z digests $2 to identify git objects",C[7]],"rusty_gl":["Safe thin @h @0 OpenGL @u @4 gl-rs @8","0.1.7"],"void":["$8 uninhabited void $l @0 $d in statically impossible cases.","1.0.2"],"spirv":[C[967],"0.2.0+1.5.4"],"snarkvm-polycommit":[C[1040],"0.7.9"],"handlers":["A @e @0 $E systems of event handlers",C[13]],"newton":["A Newtonian physics simulator $A in @3.","0.5.1"],"electrs-librocksdb-sys":["&M @6 to librocksdb (electrs fork)","6.11.4-e2"],"common-path":["Finds @4 $u prefix $t a set of paths","1.0.0"],"rust-gm-paillier":["A quick @2 of GM @5 Paillier &Q systems",C[0]],"signal-hook-mio":["MIO @j @0 signal-hook",C[5]],"psyche-core":["Core ^F @0 Psyche AI Toolset","0.2.19"],"rsc_osrm":["@f @h @0 osrm, folk @t TehGoat/rs_osrm","0.1.23"],"bigml":["Unofficial BigML @c @6","0.7.0"],"rtlsdr_mt":["High-@C, multithreading @m to RTL-SDR","2.1.0"],"easy-shortcuts":["&x ^t @E @0 short @D-$D programs",C[1]],"ucd-trie":["A trie @0 storing &h codepoint sets @5 maps.","0.1.3"],"libbpf-sys":["@3 @6 to libbpf @t @4 &j kernel","0.5.0-1"],"prototty_$u":["Definition of $u ui elements @5 views @0 $d @7 prototty.","0.25.0"],"sxd-xpath":["A @3 XML XPath @1","0.4.2"],"rustc-ap-rustc_serialize":["^W published $4 of @4 @X `rustc_serialize` in @4 @f-lang/@f repository @t commit 9a27044f42ace9eb652781b53f598e25d4e7e918 $8 publishing script @0 this @8 lives at: &Y://github.com/alexcrichton/&K-auto-publish",C[215]],"stm32f0xx-hal":["Peripheral $X @x @0 STM32F0 series $s","0.17.1"],"poolcache":["A hybrid object pool @5 LFU cache @l permits cached object reuse. Useful @0 avoiding allocations","0.1.1"],"resp":["RESP(REdis Serialization ^c) Serialization @0 @3.","1.0.2"],"google-dfareporting2d6":[C[968],C[329]],"structure-macro-impl":["$q @e @8 @0 @4 $V @8.",C[4]],"urlshortener":["A very @d url shortener @c @1","3.0.0"],"tokio-utun":["Utun @6 @0 Tokio",C[5]],"email-address-parser":["An RFC 5322, @5 RFC 6532 compliant email address @i.","2.0.0-rc1"],"partial":["Optional monad @7 fake variant.",C[2]],"keepass-diff":["@Q CLI-^4 reads two Keepass (.kdbx) @z @5 prints their differences.","1.1.1"],"tink-proto":["^c buffer message $h @0 @3 port of Google's Tink cryptography @1",C[8]],"cvss":["&O Vulnerability Scoring System @i/serializer","1.0.2"],"multiboot":["@p to $X multiboot $k.","0.7.0"],"buddy-alloc":["Buddy-alloc is a $g ^l @0 no-std @3, $2 @0 ^b environments.","0.4.1"],"grafen":["Create graphene @5 other substrates @0 $d in molecular dynamics simulations.","0.9.1"],"sentry-release-parser":["A @i @0 @4 sentry release name @G","1.3.0"],"libsamplerate":["A ^X C2Rust transpiled $4 of libsamplerate.",C[0]],"futures01":["An @2 of @Z @5 streams featuring zero allocations,composability, @5 iterator-$C interfaces.Note @l this @8 tracks permanently to @4 0.1 branch ofthe `@Z` @8.","0.1.31"],"generic-matrix":["Manipulations @5 @w @g @l represent 2d matrix.",C[0]],"serdebug":["$6-@n replacement @0 #[@b(Debug)]","1.0.5"],"w5500-ll":["Low @C ^j @0 @4 Wiznet W5500 internet offload chip.",C[7]],"quad-gl":["Statefull immediate mode &S libarary on top of miniquad.Inspired by opengl1, rlgl @5 sokol-gl.","0.2.13"],"rspec":["Write Rspec-$C tests @7 stable @f","1.0.0"],"didcomm-rs":["DIDComm messaging v2 specifications @2: &Y://identity.foundation/didcomm-messaging/spec/","0.6.1"],"swc_ecma_transforms_react":[C[151],"0.55.1"],"openssl-verify":["Hostname verification @0 OpenSSL",C[3]],"tugger-binary-analysis":["Inspect @N binaries",C[2]],"leaky-bucket":["Futures-aware rate limiter @2.",C[16]],"html-minifier":["@Q @1 can help you ^n @5 minify $r HTML @V at @4 same $z. It also supports to minify JS @5 CSS in `