Skip to content

Commit

Permalink
Re-export gloo-utils from gloo (#159)
Browse files Browse the repository at this point in the history
* Re-export gloo-utils from gloo

* Update contributing instructions

`--all` argument to `cargo fmt` is not necessary, see
rust-lang/rustfmt#3911
  • Loading branch information
jplatte authored Oct 26, 2021
1 parent d7b72ec commit 53c6425
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ cargo test -p my-particular-crate
To (re)format the Gloo source code, run:

```
$ cargo fmt --all
$ cargo fmt
```

### Updating `README.md`s
Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ gloo-dialogs = { version = "0.1.0", path = "crates/dialogs" }
gloo-storage = { version = "0.2.0", path = "crates/storage" }
gloo-render = { version = "0.1.0", path = "crates/render" }
gloo-console = { version = "0.2.0", path = "crates/console" }
gloo-utils = { version = "0.1.0", path = "crates/utils" }

[features]
default = []
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ pub use gloo_file as file;
pub use gloo_render as render;
pub use gloo_storage as storage;
pub use gloo_timers as timers;
pub use gloo_utils as utils;

0 comments on commit 53c6425

Please sign in to comment.