Skip to content
This repository was archived by the owner on Mar 2, 2021. It is now read-only.

Commit 31d627f

Browse files
authored
Merge pull request #12 from fitzgen/re-export-bumpalo
Re-export bumpalo, since it is a public dependency anyways
2 parents d3a735f + 9659420 commit 31d627f

File tree

8 files changed

+8
-9
lines changed

8 files changed

+8
-9
lines changed

Cargo.lock

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/counter/crate/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ crate-type = ["cdylib", "rlib"]
1010
[features]
1111

1212
[dependencies]
13-
bumpalo = "1.0.2"
1413
dodrio = { path = "../../.." }
1514
wasm-bindgen = "0.2"
1615
console_error_panic_hook = "0.1.1"

examples/counter/crate/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use bumpalo::Bump;
1+
use dodrio::bumpalo::{self, Bump};
22
use dodrio::{Attribute, Node, Render};
33
use wasm_bindgen::prelude::*;
44
use wasm_bindgen::JsCast;

examples/hello-world/crate/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ crate-type = ["cdylib", "rlib"]
1010
[features]
1111

1212
[dependencies]
13-
bumpalo = "1.0.2"
1413
dodrio = { path = "../../.." }
1514
wasm-bindgen = "0.2"
1615
console_error_panic_hook = "0.1.1"

examples/hello-world/crate/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use bumpalo::Bump;
1+
use dodrio::bumpalo::Bump;
22
use dodrio::{Node, Render};
33
use wasm_bindgen::prelude::*;
44

examples/input-form/crate/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ crate-type = ["cdylib", "rlib"]
1010
[features]
1111

1212
[dependencies]
13-
bumpalo = "1.0.2"
1413
dodrio = { path = "../../.." }
1514
wasm-bindgen = "0.2"
1615
console_error_panic_hook = "0.1.1"

examples/input-form/crate/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use bumpalo::Bump;
1+
use dodrio::bumpalo::{self, Bump};
22
use dodrio::{Attribute, Node, Render};
33
use wasm_bindgen::prelude::*;
44
use wasm_bindgen::JsCast;

src/lib.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
//! TODO
2+
3+
// Re-export the `bumpalo` crate.
4+
pub use bumpalo;
5+
16
use bumpalo::Bump;
27

38
// Only `pub` so that the wasm-bindgen bindings work.

0 commit comments

Comments
 (0)