Jonathan Kelley 3 лет назад
Родитель
Сommit
3f68be79ae
2 измененных файлов с 11 добавлено и 11 удалено
  1. 10 10
      README.md
  2. 1 1
      packages/core/src/lib.rs

+ 10 - 10
README.md

@@ -7,38 +7,38 @@
 
 
 <div align="center">
 <div align="center">
   <!-- Crates version -->
   <!-- Crates version -->
-  <a href="https://crates.io/crates/async-imap">
-    <img src="https://img.shields.io/crates/v/async-imap.svg?style=flat-square"
+  <a href="https://crates.io/crates/dioxus">
+    <img src="https://img.shields.io/crates/v/dioxus.svg?style=flat-square"
     alt="Crates.io version" />
     alt="Crates.io version" />
   </a>
   </a>
   <!-- Downloads -->
   <!-- Downloads -->
-  <a href="https://crates.io/crates/async-imap">
-    <img src="https://img.shields.io/crates/d/async-imap.svg?style=flat-square"
+  <a href="https://crates.io/crates/dioxus">
+    <img src="https://img.shields.io/crates/d/dioxus.svg?style=flat-square"
       alt="Download" />
       alt="Download" />
   </a>
   </a>
   <!-- docs.rs docs -->
   <!-- docs.rs docs -->
-  <a href="https://docs.rs/async-imap">
+  <a href="https://docs.rs/dioxus">
     <img src="https://img.shields.io/badge/docs-latest-blue.svg?style=flat-square"
     <img src="https://img.shields.io/badge/docs-latest-blue.svg?style=flat-square"
       alt="docs.rs docs" />
       alt="docs.rs docs" />
   </a>
   </a>
   <!-- CI -->
   <!-- CI -->
-  <a href="https://github.com/async-email/async-imap/actions">
-    <img src="https://github.com/async-email/async-imap/workflows/CI/badge.svg"
+  <a href="https://github.com/async-email/dioxus/actions">
+    <img src="https://github.com/async-email/dioxus/workflows/CI/badge.svg"
       alt="CI status" />
       alt="CI status" />
   </a>
   </a>
 </div>
 </div>
 
 
 <div align="center">
 <div align="center">
   <h3>
   <h3>
-    <a href="https://docs.rs/async-imap">
+    <a href="https://docs.rs/dioxus">
       API Docs
       API Docs
     </a>
     </a>
     <span> | </span>
     <span> | </span>
-    <a href="https://docs.rs/async-imap">
+    <a href="https://docs.rs/dioxus">
       Website
       Website
     </a>
     </a>
     <span> | </span>
     <span> | </span>
-    <a href="https://docs.rs/async-imap">
+    <a href="https://docs.rs/dioxus">
       Examples
       Examples
     </a>
     </a>
   </h3>
   </h3>

+ 1 - 1
packages/core/src/lib.rs

@@ -4,7 +4,7 @@
 /*
 /*
 Navigating this crate:
 Navigating this crate:
 - virtual_dom: the primary entrypoint for the crate
 - virtual_dom: the primary entrypoint for the crate
-- scheduler: the core interior logic called by virtual_dom
+- scheduler: the core interior logic called by the [`VirtualDom`]
 - nodes: the definition of VNodes, listeners, etc.
 - nodes: the definition of VNodes, listeners, etc.
 - diff: the stackmachine-based diffing algorithm
 - diff: the stackmachine-based diffing algorithm
 - hooks: foundational hooks that require crate-private APIs
 - hooks: foundational hooks that require crate-private APIs