diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b939435..7cf822ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,346 @@ # Changelog +## 🌅 0.6.0 + +- ### ✨ Features + + - **Add three build profiles and infrastructure for their toml config - [fitzgen], [issue/153] [issue/160] [pull/440]** + + When originally conceived, `wasm-pack` was exclusively a packaging and publishing tool, which naively assumed + that the crate author would simply run `wasm-pack` when they were ready to publish a wasm package. As a result, + `wasm-pack` always ran `cargo build` in `--release` mode. Since then, `wasm-pack` has grown into an integrated build + tool used at all stages of development, from idea conception to publishing, and as such has developed new needs. + + In previous releases, we've supported a flag called `--debug` which will run `cargo build` in `dev` mode, which + trades faster compilation speed for a lack of optimizations. We've renamed this flag to `--dev` to match `cargo` + and added an additional flag, representing a third, intermediary, build profile, called `--profiling` which + is useful for investigating performance issues. You can see all three flags and their uses in the table below: + + | Profile | Debug Assertions | Debug Info | Optimizations | Notes | + |---------------|------------------|------------|---------------|---------------------------------------| + | `--dev` | Yes | Yes | No | Useful for development and debugging. | + | `--profiling` | No | Yes | Yes | Useful when profiling and investigating performance issues. | + | `--release` | No | No | Yes | Useful for shipping to production. | + + The meaning of these flags will evolve as the platform grows, and always be tied to the behavior of these flags + in `cargo`. You can learn more about these in the [`cargo profile` documentation]. + + This PR also introduces a way to configure `wasm-pack` in your `Cargo.toml` file that we intend to use much more + in the future. As a largely convention-based tool, `wasm-pack` will never require that you configure it manually, + however, as our community and their projects mature alongside the tool, it became clear that allowing folks the + ability to drop down and configure things was something we needed to do to meet their needs. + + Currently, you can only configure things related to the above-mentioned build profiles. To learn more, + [check out the documentation][profile-config-docs]. It leverages the `package.metadata.wasm-pack` key in your + `Carol.toml`, and looks like this: + + ```toml + # Cargo.toml + + [package.metadata.wasm-pack.profile.dev.wasm-bindgen] + # Should we enable wasm-bindgen's debug assertions in its generated JS glue? + debug-js-glue = true + # Should wasm-bindgen demangle the symbols in the "name" custom section? + demangle-name-section = true + # Should we emit the DWARF debug info custom sections? + dwarf-debug-info = false + ``` + + As always- there are defaults for you to use, but if you love to configure (or have a project that requires it), + get excited, as your options have grown now and will continue to! + + [profile-config-docs]: https://rustwasm.github.io/wasm-pack/book/cargo-toml-configuration.html + [`cargo profile` documentation]: https://doc.rust-lang.org/cargo/reference/manifest.html#the-profile-sections + [issue/153]: https://github.com/rustwasm/wasm-pack/issues/153 + [issue/160]: https://github.com/rustwasm/wasm-pack/issues/160 + [pull/440]: https://github.com/rustwasm/wasm-pack/pull/440 + + - **DEPRECATION: Rename `--debug` to `--dev` to match `cargo` - [fitzgen], [pull/439]** + + See the discussion of the build profiles feature above. This is a strict renaming of the previous `--debug` flag, + which will now warn as deprecated. + + [pull/439]: https://github.com/rustwasm/wasm-pack/pull/439 + + - **Add an option to pass an arbitrary set of arguments to `cargo build` - [torkve], [issue/455] [pull/461]** + + As an integrated build tool, `wasm-pack` orchestrates many secondary command line tools to build your package + in a single command. Notably, one of these tools is `cargo`. `cargo` has a wide array of features and flags, and + we couldn't reasonably expect to implement them all as first class features of `wasm-pack`. As a result, we've + created the option to allow users to pass an arbitrary number of additional flags to `wasm-pack` by appending them + to the `wasm-pack build` command, after passing `--`. For example: + + ``` + wasm-pack build examples/js-hello-world --mode no-install -- -Z offline + ``` + + In the above example, the flag `-Z offline` will be passed to `cargo build`. This feature is documented + [here][cargo opts docs]. + + [cargo opts docs]: https://rustwasm.github.io/wasm-pack/book/commands/build.html#extra-options + [torkve]: https://github.com/torkve + [issue/455]: https://github.com/rustwasm/wasm-pack/issues/455 + [pull/461]: https://github.com/rustwasm/wasm-pack/pull/461 + + + - **Pre-build before wasm-pack publish - [csmoe], [issue/438] [pull/444]** + + Previously, if you ran `wasm-pack publish` before you had successfully run `wasm-pack build`, + you'd receive an error that a package could not be found- because there would be no `pkg` or + out-directory containing a `package.json`. + + In this situation, you would hope that `wasm-pack` would build your package for you when you + ran `wasm-pack publish`. This is slightly complicated by the fact that not everyone wants to + build their package to the default target or to a directory named `pkg`. + + To solve this, running `wasm-pack publish` before a successful build will give you an interactive + prompt to build your package- allowing you to specify your out directory as well as the target you'd + like to build to. Check it out in the gif below: + + ![pre-build publish workflow](https://user-images.githubusercontent.com/35686186/50500909-5984fe80-0a8f-11e9-9de6-43d1423b2969.gif) + + [issue/438]: https://github.com/rustwasm/wasm-pack/issues/438 + [pull/444]: https://github.com/rustwasm/wasm-pack/pull/444 + + - **Generate self-.gitignore as part of pkg folder - [RReverser], [pull/453]** + + Since `wasm-pack` was first published, the `pkg` directory was intended to be treated as a + build artifact, and as such should never be published to version control. This was + never enforced by any assets generated by `wasm-pack`, however. + + Now, when building your package, `wasm-pack` will also generate a `.gitignore` file so that the + `pkg`, or out-directory, will be ignored. + + If you use another version control tool, you'll need to still create or edit your own ignore file- + pull requests to support other version control tools are welcome! + + If you require editing of the generated `package.json` or add additonal assets to your package + before publishing, you'll want to remove the `.gitignore` file and commit to version control. We + intend to have a solution that makes this workflow significantly easier in upcoming releases! + + [RReverser]: https://github.com/RReverser + [pull/453]: https://github.com/rustwasm/wasm-pack/pull/453 + + - **Support cargo workspaces - [fitzgen], [issue/252] [issue/305] [pull/430]** + + Workspaces are a well-liked and used feature of cargo that allow you to build multiple crates + in a single cargo project. Because of how `wasm-pack` handled paths for `target` and out-directories, + we did not support cargo workspaces out of the box. Now they should work well and the feature is + well guarded by tests! + + [issue/252]: https://github.com/rustwasm/wasm-pack/issues/252 + [issue/305]: https://github.com/rustwasm/wasm-pack/issues/305 + [pull/430]: https://github.com/rustwasm/wasm-pack/pull/430 + + - **Use a global cache for all downloaded binaries - [alexcrichton], [pull/426]** + + `wasm-pack` is an integrated build tool that orchestrates several other command line tools to build + your wasm project for you. How `wasm-pack` does this has evolved significantly since it's early versions. + In the last version, a `bin` directory was created to house the tool binaries that `wasm-pack` needed to + build our project, but this had several limitations. Firstly, it created a `bin` directory in your project's + root, which could be confusing. Secondly, it meant that sharing these tools across multiple projects was + not possible. We did this because it gaves us the fine-grained control over the version of these tools that + you used. + + Now, `wasm-pack` will not generate a `bin` directory, but rather will use a global cache. We retain the + fine-grained control over the versions of these tools that are used, but allow multiple projects that use + the same tools at the same versions to share the already installed asset. Your global cache will generally + be in your user's home directory- we use the [`dirs` crate] to determine where to place this global cache. + This is not currently customizable but is something we intend to look into doing! + + This feature ensures that `wasm-pack` users are downloading a minimal number of binaries from the network, + which, for `wasm-pack` users with multiple projects, should speed up build times. + + [`dirs` crate]: https://docs.rs/dirs/1.0.4/dirs/fn.cache_dir.html + [pull/426]: https://github.com/rustwasm/wasm-pack/pull/426 + +- ### 🤕 Fixes + + - **Fix `pack`, `login`, and `publish` for Windows users - [danwilhelm], [issue/277] [pull/489]** + + Rust's behavior for spawning processes on some Windows targets introduced an interesting case where + Rust would fail unless the command was explicitly spawned with a prepended `cmd /c`. This failure + of `wasm-pack` was well noticed by our community - and thanks to the efforts of `danwilhelm` is now + fixed! You can read more on the background of this issue in [rust-lang/rust issue/44542]. + + [rust-lang/rust issue/44542]: https://github.com/rust-lang/rust/pull/44542 + [issue/277]: https://github.com/rustwasm/wasm-pack/issues/277 + [pull/489]: https://github.com/rustwasm/wasm-pack/pull/489 + + - **Validate `--target` argument - [csmoe], [issue/483] [pull/484]** + + For a few releases now, `wasm-pack` has supported allowing users to specifying the target module system + they'd like their package built for- `browser`, `nodejs`, and `no-modules`. We did not however, validate + this input, and so if a user made even a slight mistake, e.g. `node`, `wasm-pack` would not catch the + error and would build your project using the default, `browser`. This is of course, surprising, and + unpleasant behavior and so now we'll error out with a message containing the supported target names. + + [issue/483]: https://github.com/rustwasm/wasm-pack/issues/483 + [pull/484]: https://github.com/rustwasm/wasm-pack/pull/484 + + - **Fix login - [danwilhelm], [issue/486] [pull/487]** + + [danwilhelm]: https://github.com/danwilhelm + [issue/486]: https://github.com/rustwasm/wasm-pack/issues/486 + [pull/487]: https://github.com/rustwasm/wasm-pack/pull/487 + + - **Eliminate unecessary escaping in build success terminal output - [huangjj27], [issue/390] [pull/396]** + + Previously, on some systems, a successful `wasm-pack build` would print a unfortunate looking string: + + ``` + | :-) Your wasm pkg is ready to publish at "\\\\?\\C:\\Users\\Ferris\\tmp\\wasm-bug\\pkg". + ``` + + We've updated this to make sure the path to your project is well-formed, and most importantly, + human-readable. + + [issue/390]: https://github.com/rustwasm/wasm-pack/issues/390 + [pull/396]: https://github.com/rustwasm/wasm-pack/pull/396 + + - **Copy license file(s) to out directory - [mstallmo], [issue/407] [pull/411]** + + Since `wasm-pack` was first published, we've copied over your `Cargo.toml` license definition over to + your `package.json`. However, we overlooked copying the actual `LICENSE` files over! Now we do! + + [issue/407]: https://github.com/rustwasm/wasm-pack/issues/407 + [pull/411]: https://github.com/rustwasm/wasm-pack/pull/411 + + - **Don't require cdylib crate-type for testing - [alexcrichton], [pull/442]** + + `wasm-pack` was unecssarily checking `Cargo.toml` for the `cdylib` crate type during calls to `wasm-pack test`. + The `cdylib` output isn't necessary for the `wasm-pack test` stage because `wasm-bindgen` isn't being run over + a wasm file during testing. This check is now removed! + + [pull/442]: https://github.com/rustwasm/wasm-pack/pull/442 + + - **Fix wasm-bindgen if lib is renamed via `lib.name` - [alexcrichton], [issue/339] [pull/435]** + + In some circumstances, a library author may wish to specify a `name` in the `[package]` portion of their + `Cargo.toml`, as well as a different `name` in the `[lib]` portion, e.g.: + + ```toml + [package] + name = "hello-wasm" + + [lib] + name = "wasm-lib" + ``` + + This would cause the `wasm-bindgen` build stage of `wasm-pack` to error out because `wasm-pack` would attempt + to run `wasm-bindgen-cli` on a path using the `[package]` name, which wouldn't exist (because it would be using + the `[lib]` name). Now it works- thanks to more usage of [`cargo_metadata`] in `wasm-pack` internals! + + [`cargo_metadata`]: https://crates.io/crates/cargo_metadata + [issue/339]: https://github.com/rustwasm/wasm-pack/issues/339 + [pull/435]: https://github.com/rustwasm/wasm-pack/pull/435 + + - **Print standard error only once for failing commands - [fitzgen], [issue/422] [pull/424]** + + Previously, `wasm-pack` may have printed `stderr` twice in some circumstances. This was both confusing and not + a pleasant experience, so now we've ensued that `wasm-pack` prints `stderr` exactly once! (It's hard enough to have + errors, you don't want `wasm-pack` rubbing it in, right?) + + [issue/422]: https://github.com/rustwasm/wasm-pack/issues/422 + [pull/424]: https://github.com/rustwasm/wasm-pack/pull/424 + + - **Add no-modules to --target flag's help text - [fitzgen], [issue/416] [pull/417]** + + This is an interesting one! `fitzgen` very reasonably filed an issue asking to add `wasm-bindgen`'s + `--target no-modules` feature to `wasm-pack`. This was confusing as this feature was indeed already implemented, + and documented- BUT, notably missing from the `wasm-pack --help` text. We've fixed that now- and it was an omission + so glaring we definitely considered it a bug! + + [issue/416]: https://github.com/rustwasm/wasm-pack/issues/416 + [pull/417]: https://github.com/rustwasm/wasm-pack/pull/417 + +- ### 🛠️ Maintenance + + - **Replace `slog` with `log` - [alexcrichton], [issue/425] [pull/434]** + + For internal maintenance reasons, as well as several end-user ones, we've migrated away from the `slog` family + of crates, and are now using the `log` crate plus `env_logger`. Now, `wasm-pack` won't create a `wasm-pack.log`. + Additionally, enabling logging will now be done through `RUST_LOG=wasm_pack` instead of `-v` flags. + + [issue/425]: https://github.com/rustwasm/wasm-pack/issues/425 + [pull/434]: https://github.com/rustwasm/wasm-pack/pull/434 + + - **Move binary installation to its own crate - [drager], [issue/384] [pull/415]** + + In `wasm-pack 0.5.0`, we move away from `cargo install`ing many of the tools that `wasm-pack` orchestrates. Because + we used `cargo install`, this required an end user to sit through the compilation of each tool, which was a + prohibitively long time. We moved, instead, to building, and then installing, binaries of the tools. This sped up + build times dramatically! + + This pattern has been very beneficial to `wasm-pack` and is potentially something that could be beneficial to other + projects! As a result, we've refactored it out into a crate and have published it as it's own crate, [`binary-install`]. + + [`binary-install`]: https://crates.io/crates/binary-install + [drager]: https://github.com/drager + [issue/384]: https://github.com/rustwasm/wasm-pack/issues/384 + [pull/415]: https://github.com/rustwasm/wasm-pack/pull/415 + + - **Replace internal `Error` with `failure::Error` - [alexcrichton], [pull/436]** + + The story of error message handling in `wasm-pack` has not been the prettiest. We originally were manually implementing + errors, adding the [`failure` crate] at one point, but not fully updating the entire codebase. With this PR, we are + nearly completely handling errors with `failure`, bringing the code into a much more maintainable and + pleasant-to-work-on place. + + [`failure` crate]: https://crates.io/crates/failure + [pull/436]: https://github.com/rustwasm/wasm-pack/pull/436 + + - **Update `mdbook` version used by Travis - [fitzgen], [pull/433]** + + [pull/433]: https://github.com/rustwasm/wasm-pack/pull/433 + + - **Read the `Cargo.toml` file only once - [fitzgen], [issue/25] [pull/431]** + + This is a very fun one since it fixes one of the original issues filed by `ag_dubs` at the very beginning of `wasm-pack` + development. In a rush to implement a POC tool, `ag_dubs` noted for posterity that the `Cargo.toml` was being read + multiple times (twice), when it did not need to be. Thanks to `fitzgen` now it's read only once! A minor performance + improvement in the scheme of things, but a nice one :) + + [issue/25]: https://github.com/rustwasm/wasm-pack/issues/25 + [pull/431]: https://github.com/rustwasm/wasm-pack/pull/431 + + - **Use `name` field for Travis CI jobs - [fitzgen], [pull/432]** + + [pull/432]: https://github.com/rustwasm/wasm-pack/pull/432 + + - **Add a test for build command - [huangjj27], [pull/408]** + + [huangjj27]: https://github.com/huangjj27 + [pull/408]: https://github.com/rustwasm/wasm-pack/pull/408 + + - **Test paths on Windows - [xmclark], [issue/380] [pull/389]** + + [xmclark]: https://github.com/xmclark + [issue/380]: https://github.com/rustwasm/wasm-pack/issues/380 + [pull/389]: https://github.com/rustwasm/wasm-pack/pull/389 + + - **Fix typo in test function name for copying the README - [mstallmo], [pull/412]** + + [pull/412]: https://github.com/rustwasm/wasm-pack/pull/412 + +- ### 📖 Documentation + + - **Complete template deep dive docs - [danwilhelm], [issue/345] [issue/346] [pull/490]** + + In a rush to publish a release, `ag_dubs` left some "Coming soon!" comments on most pages + of the "Template Deep Dive" docs. These docs help walk new users through the boilerplate + that using the `wasm-pack` template generates for you. Thanks so much to `danwilhem` for + picking this up and doing an excellent job! + + [issue/345]: https://github.com/rustwasm/wasm-pack/issues/345 + [issue/346]: https://github.com/rustwasm/wasm-pack/issues/346 + [pull/490]: https://github.com/rustwasm/wasm-pack/pull/490 + + - **Minor docs updates - [fitzgen], [issue/473] [pull/485]** + + [issue/473]: https://github.com/rustwasm/wasm-pack/issues/473 + [pull/485]: https://github.com/rustwasm/wasm-pack/pull/485 + ## 🌄 0.5.1 - ### 🤕 Fixes diff --git a/Cargo.lock b/Cargo.lock index 5d89ca73..001ef1e4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -41,7 +41,7 @@ name = "atty" version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -59,7 +59,7 @@ dependencies = [ "autocfg 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-demangle 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -70,7 +70,7 @@ version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -117,7 +117,7 @@ version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bzip2-sys 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -126,7 +126,7 @@ version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -138,7 +138,7 @@ dependencies = [ "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.84 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.84 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.34 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -172,7 +172,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -183,7 +183,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -203,7 +203,7 @@ dependencies = [ "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "clicolors-control 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "termios 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -213,14 +213,14 @@ dependencies = [ [[package]] name = "console" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "clicolors-control 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "encode_unicode 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "termios 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -256,7 +256,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "curl-sys 0.4.16 (registry+https://github.com/rust-lang/crates.io-index)", "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)", "schannel 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", @@ -270,7 +270,7 @@ version = "0.4.16" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)", "openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", @@ -283,7 +283,7 @@ name = "dialoguer" version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "console 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "console 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "tempfile 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -293,7 +293,7 @@ name = "dirs" version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "redox_users 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -338,7 +338,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.24 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.25 (registry+https://github.com/rust-lang/crates.io-index)", "synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -348,7 +348,7 @@ version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.50 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -358,7 +358,7 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crc32fast 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "miniz-sys 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "miniz_oxide_c_api 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -437,7 +437,7 @@ name = "indicatif" version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "console 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "console 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "regex 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", @@ -469,7 +469,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "libc" -version = "0.2.46" +version = "0.2.47" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -488,7 +488,7 @@ version = "1.0.25" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -516,7 +516,7 @@ version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -526,7 +526,7 @@ version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -544,7 +544,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)", "crc 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "miniz_oxide 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -562,7 +562,7 @@ dependencies = [ "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -585,7 +585,7 @@ version = "0.9.40" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "openssl-src 111.1.0+1.1.1a (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -630,7 +630,7 @@ name = "parking_lot_core" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)", @@ -642,7 +642,7 @@ name = "parking_lot_core" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)", @@ -686,7 +686,7 @@ version = "0.3.22" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -696,7 +696,7 @@ version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -709,7 +709,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -720,7 +720,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "autocfg 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -776,7 +776,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -950,7 +950,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.24 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.25 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -963,7 +963,7 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.34" +version = "1.0.35" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -990,7 +990,7 @@ version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.50 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1027,12 +1027,12 @@ dependencies = [ "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.24 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.25 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "syn" -version = "0.15.24" +version = "0.15.25" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1047,7 +1047,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.24 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.25 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1057,7 +1057,7 @@ version = "0.4.20" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "filetime 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.50 (registry+https://github.com/rust-lang/crates.io-index)", "xattr 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1077,7 +1077,7 @@ version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.3.22 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.50 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1089,7 +1089,7 @@ version = "3.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.50 (registry+https://github.com/rust-lang/crates.io-index)", "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1117,7 +1117,7 @@ name = "termion" version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.50 (registry+https://github.com/rust-lang/crates.io-index)", "redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1127,7 +1127,7 @@ name = "termios" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1151,7 +1151,7 @@ name = "time" version = "0.1.42" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.50 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1238,7 +1238,7 @@ dependencies = [ [[package]] name = "wasm-pack" -version = "0.5.1" +version = "0.6.0" dependencies = [ "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "binary-install 0.0.1", @@ -1259,7 +1259,7 @@ dependencies = [ "serde 1.0.84 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.84 (registry+https://github.com/rust-lang/crates.io-index)", "serde_ignored 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.34 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)", "siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "structopt 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1275,7 +1275,7 @@ version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1337,7 +1337,7 @@ name = "xattr" version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1376,7 +1376,7 @@ dependencies = [ "checksum clicolors-control 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "73abfd4c73d003a674ce5d2933fca6ce6c42480ea84a5ffe0a2dc39ed56300f9" "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" "checksum console 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ecd48adf136733979b49e15bc3b4c43cc0d3c85ece7bd08e6daa414c6fcb13e6" -"checksum console 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4ceeb6d030ed175896450ad583a39e67a77b8b2ab8802c2aae594112adc783a2" +"checksum console 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ecc3753530b959618f617b0cd6494526008d98687f1af5d8f9fa83fa9cdbb594" "checksum constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8ff012e225ce166d4422e0e78419d901719760f62ae2b7969ca6b564d1b54a9e" "checksum crc 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d663548de7f5cca343f1e0a48d14dcfb0e9eb4e079ec58883b7251539fa10aeb" "checksum crc32fast 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e91d5240c6975ef33aeb5f148f35275c25eda8e8a5f95abe421978b05b8bf192" @@ -1405,7 +1405,7 @@ dependencies = [ "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" "checksum lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73" "checksum lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a374c89b9db55895453a74c1e38861d9deec0b01b405a82516e9d5de4820dea1" -"checksum libc 0.2.46 (registry+https://github.com/rust-lang/crates.io-index)" = "023a4cd09b2ff695f9734c1934145a315594b7986398496841c7031a5a1bbdbd" +"checksum libc 0.2.47 (registry+https://github.com/rust-lang/crates.io-index)" = "48450664a984b25d5b479554c29cc04e3150c97aa4c01da5604a2d4ed9151476" "checksum libflate 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)" = "bff3ac7d6f23730d3b533c35ed75eef638167634476a499feef16c428d74b57b" "checksum libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)" = "2eb5e43362e38e2bca2fd5f5134c4d4564a23a5c28e9b95411652021a8675ebe" "checksum lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c" @@ -1463,7 +1463,7 @@ dependencies = [ "checksum serde 1.0.84 (registry+https://github.com/rust-lang/crates.io-index)" = "0e732ed5a5592c17d961555e3b552985baf98d50ce418b7b655f31f6ba7eb1b7" "checksum serde_derive 1.0.84 (registry+https://github.com/rust-lang/crates.io-index)" = "b4d6115a3ca25c224e409185325afc16a0d5aaaabc15c42b09587d6f1ba39a5b" "checksum serde_ignored 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "190e9765dcedb56be63b6e0993a006c7e3b071a016a304736e4a315dc01fb142" -"checksum serde_json 1.0.34 (registry+https://github.com/rust-lang/crates.io-index)" = "bdf540260cfee6da923831f4776ddc495ada940c30117977c70f1313a6130545" +"checksum serde_json 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)" = "dfb1277d4d0563e4593e0b8b5d23d744d277b55d2bc0bf1c38d0d8a6589d38aa" "checksum siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0b8de496cf83d4ed58b6be86c3a275b8602f6ffe98d3024a869e124147a9a3ac" "checksum smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "b73ea3738b47563803ef814925e69be00799a8c07420be8b996f8e98fb2336db" "checksum socket2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "c4d11a52082057d87cb5caa31ad812f4504b97ab44732cd8359df2e9ff9f48e7" @@ -1472,7 +1472,7 @@ dependencies = [ "checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" "checksum structopt 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "670ad348dc73012fcf78c71f06f9d942232cdd4c859d4b6975e27836c3efc0c3" "checksum structopt-derive 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "ef98172b1a00b0bec738508d3726540edcbd186d50dfd326f2b1febbb3559f04" -"checksum syn 0.15.24 (registry+https://github.com/rust-lang/crates.io-index)" = "734ecc29cd36e8123850d9bf21dfd62ef8300aaa8f879aabaa899721808be37c" +"checksum syn 0.15.25 (registry+https://github.com/rust-lang/crates.io-index)" = "71b7693d9626935a362a3d1d4e59380800a919ebfa478d77a4f49e2a6d2c3ad5" "checksum synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73687139bf99285483c96ac0add482c3776528beac1d97d444f6e91f203a2015" "checksum tar 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)" = "a303ba60a099fcd2aaa646b14d2724591a96a75283e4b7ed3d1a1658909d9ae2" "checksum tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8" diff --git a/Cargo.toml b/Cargo.toml index e2daa4dd..14bdf5b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "wasm-pack" -description = "pack up the wasm and publish it to npm!" -version = "0.5.1" +description = "📦✨ your favorite rust -> wasm workflow tool!" +version = "0.6.0" authors = ["Ashley Williams "] repository = "https://github.com/ashleygwilliams/wasm-pack.git" license = "MIT/Apache-2.0"