Merge pull request #93 from fitzgen/rename-directories

Rename directories to remove "wasm-bindgen-" prefix in sub-crates
This commit is contained in:
Alex Crichton 2018-03-29 17:29:47 +02:00 committed by GitHub
commit 79ef5979f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
22 changed files with 7 additions and 7 deletions

View File

@ -17,14 +17,14 @@ test = false
doctest = false doctest = false
[dependencies] [dependencies]
wasm-bindgen-macro = { path = "crates/wasm-bindgen-macro", version = "0.1" } wasm-bindgen-macro = { path = "crates/macro", version = "0.1" }
[dev-dependencies] [dev-dependencies]
test-support = { path = "crates/test-support" } test-support = { path = "crates/test-support" }
[workspace] [workspace]
members = [ members = [
"crates/wasm-bindgen-cli", "crates/cli",
"examples/hello_world", "examples/hello_world",
"examples/smorgasboard", "examples/smorgasboard",
"examples/console_log", "examples/console_log",

View File

@ -14,5 +14,5 @@ Shared support for the wasm-bindgen-cli package, an internal dependency
base64 = "0.9" base64 = "0.9"
parity-wasm = "0.27" parity-wasm = "0.27"
serde_json = "1.0" serde_json = "1.0"
wasm-bindgen-shared = { path = "../wasm-bindgen-shared", version = '0.1' } wasm-bindgen-shared = { path = "../shared", version = '0.1' }
wasm-gc-api = "0.1" wasm-gc-api = "0.1"

View File

@ -17,8 +17,8 @@ docopt = "0.8"
parity-wasm = "0.27" parity-wasm = "0.27"
serde = "1.0" serde = "1.0"
serde_derive = "1.0" serde_derive = "1.0"
wasm-bindgen-cli-support = { path = "../wasm-bindgen-cli-support", version = "0.1.1" } wasm-bindgen-cli-support = { path = "../cli-support", version = "0.1.1" }
wasm-bindgen-shared = { path = "../wasm-bindgen-shared", version = "0.1" } wasm-bindgen-shared = { path = "../shared", version = "0.1" }
[[bin]] [[bin]]
name = "wasm-bindgen" name = "wasm-bindgen"

View File

@ -18,4 +18,4 @@ syn = { version = '0.12', features = ['full'] }
quote = '0.4' quote = '0.4'
proc-macro2 = { version = "0.2", features = ["nightly"] } proc-macro2 = { version = "0.2", features = ["nightly"] }
serde_json = "1" serde_json = "1"
wasm-bindgen-shared = { path = "../wasm-bindgen-shared", version = "0.1.0" } wasm-bindgen-shared = { path = "../shared", version = "0.1.0" }

View File

@ -4,4 +4,4 @@ version = "0.1.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"] authors = ["Alex Crichton <alex@alexcrichton.com>"]
[dependencies] [dependencies]
wasm-bindgen-cli-support = { path = "../wasm-bindgen-cli-support" } wasm-bindgen-cli-support = { path = "../cli-support" }