Skip to content

Commit

Permalink
Merge pull request rustwasm#95 from Pauan/master
Browse files Browse the repository at this point in the history
Adding/fixing various metadata for the crates
  • Loading branch information
Pauan authored Sep 14, 2019
2 parents 1078ca3 + a183d70 commit b35b89f
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 3 deletions.
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
6 changes: 6 additions & 0 deletions crates/console-timer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
8 changes: 7 additions & 1 deletion crates/events/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions crates/events/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
<sub>Built with 🦀🕸 by <a href="https://rustwasm.github.io/">The Rust and WebAssembly Working Group</a></sub>
</div>

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.
6 changes: 6 additions & 0 deletions crates/timers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit b35b89f

Please sign in to comment.