diff --git a/Cargo.toml b/Cargo.toml index bdc9e780..9608e66d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,6 +6,9 @@ license = "MIT/Apache-2.0" name = "gloo" readme = "README.md" version = "0.1.0" +repository = "https://github.com/rustwasm/gloo" +homepage = "https://github.com/rustwasm/gloo" +categories = ["api-bindings", "wasm"] [dependencies] gloo-timers = { version = "0.1.0", path = "crates/timers" } diff --git a/crates/console-timer/Cargo.toml b/crates/console-timer/Cargo.toml index 99e0ce96..e32a9668 100644 --- a/crates/console-timer/Cargo.toml +++ b/crates/console-timer/Cargo.toml @@ -1,8 +1,14 @@ [package] name = "gloo-console-timer" +description = "Convenience crate for working with JavaScript timers" version = "0.1.0" authors = ["Rust and WebAssembly Working Group"] edition = "2018" +license = "MIT/Apache-2.0" +readme = "README.md" +repository = "https://github.com/rustwasm/gloo/tree/master/crates/console-timer" +homepage = "https://github.com/rustwasm/gloo" +categories = ["api-bindings", "development-tools::profiling", "wasm"] [dependencies.web-sys] version = "0.3.17" diff --git a/crates/events/Cargo.toml b/crates/events/Cargo.toml index 038714fd..c851053b 100644 --- a/crates/events/Cargo.toml +++ b/crates/events/Cargo.toml @@ -1,8 +1,14 @@ [package] name = "gloo-events" -version = "0.1.0" +description = "Convenience crate for working with DOM event listeners" +version = "0.1.1" authors = ["Rust and WebAssembly Working Group"] edition = "2018" +license = "MIT/Apache-2.0" +readme = "README.md" +repository = "https://github.com/rustwasm/gloo/tree/master/crates/events" +homepage = "https://github.com/rustwasm/gloo" +categories = ["api-bindings", "asynchronous", "web-programming", "wasm"] [dependencies] wasm-bindgen = "0.2.43" diff --git a/crates/events/README.md b/crates/events/README.md index 3a3f3833..0a855487 100644 --- a/crates/events/README.md +++ b/crates/events/README.md @@ -20,6 +20,6 @@ Built with 🦀🕸 by The Rust and WebAssembly Working Group -Using event listeners with [`web-sys`](https://crates.io/crates/web-sys) is hard! This crate provides an [`EventListener`](struct.EventListener.html) type which makes it easy! +Using event listeners with [`web-sys`](https://crates.io/crates/web-sys) is hard! This crate provides an [`EventListener`](https://docs.rs/gloo-events/0.1.0/gloo_events/struct.EventListener.html) type which makes it easy! -See the documentation for [`EventListener`](struct.EventListener.html) for more information. +See the documentation for [`EventListener`](https://docs.rs/gloo-events/0.1.0/gloo_events/struct.EventListener.html) for more information. diff --git a/crates/timers/Cargo.toml b/crates/timers/Cargo.toml index 1c940c0d..24e0a6d2 100644 --- a/crates/timers/Cargo.toml +++ b/crates/timers/Cargo.toml @@ -1,8 +1,14 @@ [package] name = "gloo-timers" +description = "Convenience crate for working with JavaScript timers" version = "0.1.0" authors = ["Rust and WebAssembly Working Group"] edition = "2018" +license = "MIT/Apache-2.0" +readme = "README.md" +repository = "https://github.com/rustwasm/gloo/tree/master/crates/timers" +homepage = "https://github.com/rustwasm/gloo" +categories = ["api-bindings", "asynchronous", "wasm"] [dependencies] wasm-bindgen = "0.2.43"