From 6d63a537cac8d81a0e24b9befddb4413e5640b38 Mon Sep 17 00:00:00 2001 From: Ashley Williams Date: Tue, 15 Jan 2019 13:07:54 -0500 Subject: [PATCH] feat(binstall): leverage workspaces --- .gitignore | 1 - Cargo.toml | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 6c61922..6ecdd21 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,3 @@ wasm-pack.log /build-installer docs/book docs/installer -binary-install/Cargo.lock diff --git a/Cargo.toml b/Cargo.toml index e2daa4d..d2f67ba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,6 +9,11 @@ readme = "README.md" categories = ["wasm"] documentation = "https://rustwasm.github.io/wasm-pack/" +[workspace] +members = [ + "./binary-install", +] + [dependencies] atty = "0.2.11" cargo_metadata = "0.6.0"