Skip to content

Commit 53c6425

Browse files
authored
Re-export gloo-utils from gloo (#159)
* Re-export gloo-utils from gloo * Update contributing instructions `--all` argument to `cargo fmt` is not necessary, see rust-lang/rustfmt#3911
1 parent d7b72ec commit 53c6425

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ cargo test -p my-particular-crate
100100
To (re)format the Gloo source code, run:
101101

102102
```
103-
$ cargo fmt --all
103+
$ cargo fmt
104104
```
105105

106106
### Updating `README.md`s

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ gloo-dialogs = { version = "0.1.0", path = "crates/dialogs" }
1818
gloo-storage = { version = "0.2.0", path = "crates/storage" }
1919
gloo-render = { version = "0.1.0", path = "crates/render" }
2020
gloo-console = { version = "0.2.0", path = "crates/console" }
21+
gloo-utils = { version = "0.1.0", path = "crates/utils" }
2122

2223
[features]
2324
default = []

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ pub use gloo_file as file;
1111
pub use gloo_render as render;
1212
pub use gloo_storage as storage;
1313
pub use gloo_timers as timers;
14+
pub use gloo_utils as utils;

0 commit comments

Comments
 (0)