mirror of
https://github.com/actix/actix-web.git
synced 2024-12-22 16:16:40 +00:00
Merge pull request #1442 from JohnTitor/workspace-doc
Deploy all the workspace crates' docs
This commit is contained in:
commit
ebc2e67015
2 changed files with 9 additions and 3 deletions
2
.github/workflows/upload-doc.yml
vendored
2
.github/workflows/upload-doc.yml
vendored
|
@ -24,7 +24,7 @@ jobs:
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: doc
|
command: doc
|
||||||
args: --no-deps --all-features
|
args: --no-deps --workspace --all-features
|
||||||
|
|
||||||
- name: Tweak HTML
|
- name: Tweak HTML
|
||||||
run: echo "<meta http-equiv=refresh content=0;url=os_balloon/index.html>" > target/doc/index.html
|
run: echo "<meta http-equiv=refresh content=0;url=os_balloon/index.html>" > target/doc/index.html
|
||||||
|
|
|
@ -39,6 +39,12 @@ Actix web is a simple, pragmatic and extremely fast web framework for Rust.
|
||||||
* Includes an asynchronous [HTTP client](https://actix.rs/actix-web/actix_web/client/index.html)
|
* Includes an asynchronous [HTTP client](https://actix.rs/actix-web/actix_web/client/index.html)
|
||||||
* Supports [Actix actor framework](https://github.com/actix/actix)
|
* Supports [Actix actor framework](https://github.com/actix/actix)
|
||||||
|
|
||||||
|
## Docs
|
||||||
|
|
||||||
|
* [API documentation (master)](https://actix.rs/actix-web/actix_web)
|
||||||
|
* [API documentation (docs.rs)](https://docs.rs/actix-web)
|
||||||
|
* [User guide](https://actix.rs)
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
Dependencies:
|
Dependencies:
|
||||||
|
@ -74,7 +80,7 @@ async fn main() -> std::io::Result<()> {
|
||||||
* [Stateful](https://github.com/actix/examples/tree/master/state/)
|
* [Stateful](https://github.com/actix/examples/tree/master/state/)
|
||||||
* [Multipart streams](https://github.com/actix/examples/tree/master/multipart/)
|
* [Multipart streams](https://github.com/actix/examples/tree/master/multipart/)
|
||||||
* [Simple websocket](https://github.com/actix/examples/tree/master/websocket/)
|
* [Simple websocket](https://github.com/actix/examples/tree/master/websocket/)
|
||||||
* [Tera](https://github.com/actix/examples/tree/master/template_tera/) /
|
* [Tera](https://github.com/actix/examples/tree/master/template_tera/)
|
||||||
* [Askama](https://github.com/actix/examples/tree/master/template_askama/) templates
|
* [Askama](https://github.com/actix/examples/tree/master/template_askama/) templates
|
||||||
* [Diesel integration](https://github.com/actix/examples/tree/master/diesel/)
|
* [Diesel integration](https://github.com/actix/examples/tree/master/diesel/)
|
||||||
* [r2d2](https://github.com/actix/examples/tree/master/r2d2/)
|
* [r2d2](https://github.com/actix/examples/tree/master/r2d2/)
|
||||||
|
|
Loading…
Reference in a new issue