Skip to content

Commit a6631ab

Browse files
committed
more preparations for publishing
1 parent 5844809 commit a6631ab

File tree

8 files changed

+12
-8
lines changed

8 files changed

+12
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A web UI framework where Futures are components.
66

77
Async UI is...
88
* **Easy**; if you know what Futures are and how to join them, you know 90% of Async UI already.
9-
* **Just async Rust**; we leverage established patterns and primitives, avoiding DSL macros.
9+
* **Just async Rust**; no DSL or opaque runtime - leverage existing Async Rust patterns and ecosystem.
1010
* **Flexible**; you get direct access to the entire Web API (through [web_sys](https://docs.rs/web-sys/latest/web_sys/)).
1111

1212
[See hosted demos](https://wishawa.github.io/async_ui/demos/index.html)

async_ui_web/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ edition = "2021"
55
description = "Async UI for the Browser"
66
license = "MPL-2.0"
77
repository = "https://github.com/wishawa/async_ui"
8+
categories = ["gui", "wasm", "web-programming", "asynchronous"]
9+
keywords = ["gui", "wasm", "web-programming", "asynchronous"]
10+
documentation = "https://docs.rs/async_ui_web"
811

912
[lib]
1013
crate-type = ["cdylib", "rlib"]

async_ui_web/README.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

async_ui_web/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../README.md

async_ui_web/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/*!
22
# Async UI Web: Web UI with Async Rust
33
4+
See the [guide book](https://wishawa.github.io/async_ui/book/) to get started!
5+
46
*/
57

68
pub mod components;

async_ui_web_core/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ description = "Async UI for the Browser"
66
license = "MPL-2.0"
77
repository = "https://github.com/wishawa/async_ui"
88

9-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
10-
119
[dependencies]
1210
pin-project = "1.0"
1311
scoped-tls-hkt = "0.1.2"

async_ui_web_html/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
name = "async_ui_web_html"
33
version = "0.2.0"
44
edition = "2021"
5-
6-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
5+
description = "Async UI for the Browser"
6+
license = "MPL-2.0"
7+
repository = "https://github.com/wishawa/async_ui"
78

89
[dependencies]
910
async_ui_web_core = { version = "0.2.0", path = "../async_ui_web_core/" }

async_ui_web_macros/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "async_ui_web_macros"
33
version = "0.2.0"
44
edition = "2021"
5+
description = "for internal use only"
56
license = "MPL-2.0"
67
repository = "https://github.com/wishawa/async_ui"
78

x-bow/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "x-bow"
33
version = "0.2.0"
44
edition = "2021"
5+
description = "Precise State Management Library"
56
license = "MPL-2.0"
67
repository = "https://github.com/wishawa/async_ui"
78

0 commit comments

Comments
 (0)