diff --git a/crates/rune-cli/Cargo.toml b/crates/rune-cli/Cargo.toml index 38fc8b5bb..7294b9163 100644 --- a/crates/rune-cli/Cargo.toml +++ b/crates/rune-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-cli" -version = "0.12.1" +version = "0.12.2" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.63" @@ -23,8 +23,8 @@ codespan-reporting = "0.11.1" anyhow = { version = "1.0.49", features = ["std"] } structopt = { version = "0.3.25", default-features = false, features = ["wrap_help", "suggestions", "color"] } -rune = { version = "0.12.1", path = "../rune", features = ["workspace"] } -rune-modules = { version = "0.12.1", path = "../rune-modules", features = ["full", "experiments", "capture-io"] } +rune = { version = "0.12.2", path = "../rune", features = ["workspace"] } +rune-modules = { version = "0.12.2", path = "../rune-modules", features = ["full", "experiments", "capture-io"] } [build-dependencies] anyhow = "1.0.49" diff --git a/crates/rune-languageserver/Cargo.toml b/crates/rune-languageserver/Cargo.toml index 9c0a2a8fd..31f4e3a42 100644 --- a/crates/rune-languageserver/Cargo.toml +++ b/crates/rune-languageserver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-languageserver" -version = "0.12.1" +version = "0.12.2" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.63" @@ -27,8 +27,8 @@ tracing-appender = "0.2.2" tracing-subscriber = "0.3.15" ropey = "1.5.0" -rune = {version = "0.12.1", path = "../rune"} -rune-modules = {version = "0.12.1", path = "../rune-modules", features = ["full", "experiments"]} +rune = { version = "0.12.2", path = "../rune" } +rune-modules = { version = "0.12.2", path = "../rune-modules", features = ["full", "experiments"] } [build-dependencies] anyhow = "1.0.60" diff --git a/crates/rune-macros/Cargo.toml b/crates/rune-macros/Cargo.toml index 33a79e713..b48419945 100644 --- a/crates/rune-macros/Cargo.toml +++ b/crates/rune-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-macros" -version = "0.12.1" +version = "0.12.2" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.63" @@ -19,7 +19,7 @@ quote = "1.0.10" proc-macro2 = { version = "1.0.32", features = ["span-locations"] } [dev-dependencies] -rune = {version = "0.12.1", path = "../rune"} +rune = { version = "0.12.2", path = "../rune" } [lib] proc-macro = true diff --git a/crates/rune-modules/Cargo.toml b/crates/rune-modules/Cargo.toml index 01f7dfd14..c793e3f06 100644 --- a/crates/rune-modules/Cargo.toml +++ b/crates/rune-modules/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-modules" -version = "0.12.1" +version = "0.12.2" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.63" @@ -41,7 +41,7 @@ toml = { version = "0.5.8", optional = true } nanorand = { version = "0.6.1", optional = true, features = ["getrandom"] } parking_lot = { version = "0.11.2", optional = true } -rune = {version = "0.12.1", path = "../rune"} +rune = { version = "0.12.2", path = "../rune" } [package.metadata.docs.rs] all-features = true diff --git a/crates/rune-modules/src/core.rs b/crates/rune-modules/src/core.rs index af454de19..14bb744e7 100644 --- a/crates/rune-modules/src/core.rs +++ b/crates/rune-modules/src/core.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.12.1", features = ["test"] } +//! rune-modules = { version = "0.12.2", features = ["test"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/experiments/mod.rs b/crates/rune-modules/src/experiments/mod.rs index c1e41c790..79ddb83b8 100644 --- a/crates/rune-modules/src/experiments/mod.rs +++ b/crates/rune-modules/src/experiments/mod.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.12.1", features = ["experiments"] } +//! rune-modules = { version = "0.12.2", features = ["experiments"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/fmt.rs b/crates/rune-modules/src/fmt.rs index 8d432c0de..3275d069f 100644 --- a/crates/rune-modules/src/fmt.rs +++ b/crates/rune-modules/src/fmt.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.12.1", features = ["fmt"] } +//! rune-modules = { version = "0.12.2", features = ["fmt"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/fs.rs b/crates/rune-modules/src/fs.rs index de0d70c2d..8252fcf94 100644 --- a/crates/rune-modules/src/fs.rs +++ b/crates/rune-modules/src/fs.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.12.1", features = ["fs"] } +//! rune-modules = { version = "0.12.2", features = ["fs"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/http.rs b/crates/rune-modules/src/http.rs index a445c1d01..6772f41a0 100644 --- a/crates/rune-modules/src/http.rs +++ b/crates/rune-modules/src/http.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.12.1", features = ["http", "json"] } +//! rune-modules = { version = "0.12.2", features = ["http", "json"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/io.rs b/crates/rune-modules/src/io.rs index 49c597485..60fe5d421 100644 --- a/crates/rune-modules/src/io.rs +++ b/crates/rune-modules/src/io.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.12.1", features = ["io"] } +//! rune-modules = { version = "0.12.2", features = ["io"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/json.rs b/crates/rune-modules/src/json.rs index 490265bbe..16e7e4502 100644 --- a/crates/rune-modules/src/json.rs +++ b/crates/rune-modules/src/json.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.12.1", features = ["json"] } +//! rune-modules = { version = "0.12.2", features = ["json"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/macros.rs b/crates/rune-modules/src/macros.rs index 2a75633f6..a4b5e105b 100644 --- a/crates/rune-modules/src/macros.rs +++ b/crates/rune-modules/src/macros.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.12.1", features = ["macros"] } +//! rune-modules = { version = "0.12.2", features = ["macros"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/process.rs b/crates/rune-modules/src/process.rs index b03551d38..9871c53e3 100644 --- a/crates/rune-modules/src/process.rs +++ b/crates/rune-modules/src/process.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.12.1", features = ["process"] } +//! rune-modules = { version = "0.12.2", features = ["process"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/rand.rs b/crates/rune-modules/src/rand.rs index 78b5433b5..f696cded5 100644 --- a/crates/rune-modules/src/rand.rs +++ b/crates/rune-modules/src/rand.rs @@ -8,7 +8,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.12.1", features = ["rand"] } +//! rune-modules = { version = "0.12.2", features = ["rand"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/signal.rs b/crates/rune-modules/src/signal.rs index 72e31d51d..87080a338 100644 --- a/crates/rune-modules/src/signal.rs +++ b/crates/rune-modules/src/signal.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.12.1", features = ["signal"] } +//! rune-modules = { version = "0.12.2", features = ["signal"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/test.rs b/crates/rune-modules/src/test.rs index cc881159b..c4a95e441 100644 --- a/crates/rune-modules/src/test.rs +++ b/crates/rune-modules/src/test.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.12.1", features = ["test"] } +//! rune-modules = { version = "0.12.2", features = ["test"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/time.rs b/crates/rune-modules/src/time.rs index 855045c56..c91e83703 100644 --- a/crates/rune-modules/src/time.rs +++ b/crates/rune-modules/src/time.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.12.1", features = ["time"] } +//! rune-modules = { version = "0.12.2", features = ["time"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-modules/src/toml.rs b/crates/rune-modules/src/toml.rs index c07f624b5..662c6552c 100644 --- a/crates/rune-modules/src/toml.rs +++ b/crates/rune-modules/src/toml.rs @@ -7,7 +7,7 @@ //! Add the following to your `Cargo.toml`: //! //! ```toml -//! rune-modules = { version = "0.12.1", features = ["toml"] } +//! rune-modules = { version = "0.12.2", features = ["toml"] } //! ``` //! //! Install it into your context: diff --git a/crates/rune-wasm/Cargo.toml b/crates/rune-wasm/Cargo.toml index d67060742..8812c3710 100644 --- a/crates/rune-wasm/Cargo.toml +++ b/crates/rune-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune-wasm" -version = "0.12.1" +version = "0.12.2" authors = ["John-John Tedro "] edition = "2021" description = "A WASM module for the Rune Language, an embeddable dynamic programming language for Rust." @@ -20,9 +20,9 @@ js-sys = "0.3.61" anyhow = "1.0.69" gloo-utils = "0.1.6" -rune = {version = "0.12.1", path = "../rune"} -rune-macros = {version = "0.12.1", path = "../rune-macros"} -rune-modules = {version = "0.12.1", path = "../rune-modules", features = ["core", "test", "json", "toml", "rand", "experiments", "macros", "capture-io", "wasm-bindgen"]} +rune = { version = "0.12.2", path = "../rune" } +rune-macros = { version = "=0.12.2", path = "../rune-macros" } +rune-modules = { version = "0.12.2", path = "../rune-modules", features = ["core", "test", "json", "toml", "rand", "experiments", "macros", "capture-io", "wasm-bindgen"] } [dependencies.web-sys] version = "0.3.61" diff --git a/crates/rune/Cargo.toml b/crates/rune/Cargo.toml index 3d1fe3b63..0fb1c439b 100644 --- a/crates/rune/Cargo.toml +++ b/crates/rune/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune" -version = "0.12.1" +version = "0.12.2" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.63" @@ -43,10 +43,10 @@ toml-spanned-value = { version = "0.1.0", optional = true } semver = { version = "1.0.4", optional = true, features = ["serde"] } relative-path = { version = "1.6.0", optional = true, features = ["serde"] } serde-hashkey = { version = "0.4.0", optional = true } - -rune-macros = {version = "0.12.1", path = "../rune-macros"} linked-hash-map = "0.5.6" +rune-macros = { version = "=0.12.2", path = "../rune-macros" } + [dev-dependencies] tokio = { version = "1.14.0", features = ["macros"] } static_assertions = "1.1.0" diff --git a/examples/Cargo.toml b/examples/Cargo.toml index be5bb2996..3fd20637f 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -12,5 +12,5 @@ default = ["full"] [dependencies] tokio = { version = "1.14.0", features = ["macros"] } -rune = {path = "../crates/rune"} -rune-modules = {path = "../crates/rune-modules"} +rune = { path = "../crates/rune" } +rune-modules = { path = "../crates/rune-modules" } diff --git a/tools/generate/Cargo.toml b/tools/generate/Cargo.toml index 863e5bd5c..86faafbd2 100644 --- a/tools/generate/Cargo.toml +++ b/tools/generate/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" publish = false [dependencies] -serde = {version = "1.0.116", features = ["derive"]} +serde = { version = "1.0.116", features = ["derive"] } serde_yaml = "0.8.13" genco = "0.15.0" anyhow = "1.0.32" diff --git a/tools/site/Cargo.toml b/tools/site/Cargo.toml index c9cffdaf5..9c0d62e3a 100644 --- a/tools/site/Cargo.toml +++ b/tools/site/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" publish = false [dependencies] -reqwest = {version = "0.10.8", features = ["blocking"]} +reqwest = { version = "0.10.8", features = ["blocking"] } anyhow = "1.0.32" flate2 = "1.0.17" -tar = "0.4.30" \ No newline at end of file +tar = "0.4.30"