From 588cdd47f9fb46274d7006e88e80f0fde021067d Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 26 Feb 2020 16:13:50 -0800 Subject: [PATCH] Add dependency versions and a README.md (#1004) * Add a version to a path dependeency for publishing on crates.io. * Add a README.md for wasmtime-profiling. * Add versions to the wasmtime-profiling dependencies. --- crates/api/Cargo.toml | 2 +- crates/jit/Cargo.toml | 2 +- crates/profiling/README.md | 2 ++ crates/runtime/Cargo.toml | 2 +- crates/wasi-common/wig/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) create mode 100644 crates/profiling/README.md diff --git a/crates/api/Cargo.toml b/crates/api/Cargo.toml index 652930c0e3..b4adb27975 100644 --- a/crates/api/Cargo.toml +++ b/crates/api/Cargo.toml @@ -12,7 +12,7 @@ edition = "2018" wasmtime-runtime = { path = "../runtime", version = "0.12.0" } wasmtime-environ = { path = "../environ", version = "0.12.0" } wasmtime-jit = { path = "../jit", version = "0.12.0" } -wasmtime-profiling = { path = "../profiling" } +wasmtime-profiling = { path = "../profiling", version = "0.12.0" } wasmparser = "0.51.2" target-lexicon = { version = "0.10.0", default-features = false } anyhow = "1.0.19" diff --git a/crates/jit/Cargo.toml b/crates/jit/Cargo.toml index d5cf297834..f7c50e66f2 100644 --- a/crates/jit/Cargo.toml +++ b/crates/jit/Cargo.toml @@ -19,7 +19,7 @@ cranelift-frontend = "0.59.0" wasmtime-environ = { path = "../environ", version = "0.12.0" } wasmtime-runtime = { path = "../runtime", version = "0.12.0" } wasmtime-debug = { path = "../debug", version = "0.12.0" } -wasmtime-profiling = { path = "../profiling" } +wasmtime-profiling = { path = "../profiling", version = "0.12.0" } region = "2.0.0" thiserror = "1.0.4" target-lexicon = { version = "0.10.0", default-features = false } diff --git a/crates/profiling/README.md b/crates/profiling/README.md new file mode 100644 index 0000000000..e1a4c5020c --- /dev/null +++ b/crates/profiling/README.md @@ -0,0 +1,2 @@ +This is the `wasmtime-profiling` crate, which contains runtime performance +profiling support for Wasmtime. diff --git a/crates/runtime/Cargo.toml b/crates/runtime/Cargo.toml index f4842e2b4d..6a40360d28 100644 --- a/crates/runtime/Cargo.toml +++ b/crates/runtime/Cargo.toml @@ -11,7 +11,7 @@ readme = "README.md" edition = "2018" [dependencies] -wasmtime-profiling = { path = "../profiling" } +wasmtime-profiling = { path = "../profiling", version = "0.12.0" } wasmtime-environ = { path = "../environ", version = "0.12.0" } region = "2.0.0" libc = { version = "0.2.60", default-features = false } diff --git a/crates/wasi-common/wig/Cargo.toml b/crates/wasi-common/wig/Cargo.toml index cdd136d723..a46335ba24 100644 --- a/crates/wasi-common/wig/Cargo.toml +++ b/crates/wasi-common/wig/Cargo.toml @@ -17,7 +17,7 @@ proc-macro = true quote = "1.0.2" proc-macro2 = "1.0.6" heck = "0.3.1" -witx = { path = "WASI/tools/witx" } +witx = { path = "WASI/tools/witx", version = "0.8.0" } [badges] maintenance = { status = "actively-developed" }