mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
wip: documentation and badges
This commit is contained in:
parent
1a6b238829
commit
3f68be79ae
2 changed files with 11 additions and 11 deletions
20
README.md
20
README.md
|
@ -7,38 +7,38 @@
|
|||
|
||||
<div align="center">
|
||||
<!-- 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" />
|
||||
</a>
|
||||
<!-- 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" />
|
||||
</a>
|
||||
<!-- 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"
|
||||
alt="docs.rs docs" />
|
||||
</a>
|
||||
<!-- 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" />
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div align="center">
|
||||
<h3>
|
||||
<a href="https://docs.rs/async-imap">
|
||||
<a href="https://docs.rs/dioxus">
|
||||
API Docs
|
||||
</a>
|
||||
<span> | </span>
|
||||
<a href="https://docs.rs/async-imap">
|
||||
<a href="https://docs.rs/dioxus">
|
||||
Website
|
||||
</a>
|
||||
<span> | </span>
|
||||
<a href="https://docs.rs/async-imap">
|
||||
<a href="https://docs.rs/dioxus">
|
||||
Examples
|
||||
</a>
|
||||
</h3>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
/*
|
||||
Navigating this 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.
|
||||
- diff: the stackmachine-based diffing algorithm
|
||||
- hooks: foundational hooks that require crate-private APIs
|
||||
|
|
Loading…
Reference in a new issue