From dfca41c2d482706990052572c41882d35025f063 Mon Sep 17 00:00:00 2001 From: Yota Toyama Date: Mon, 24 Feb 2025 13:37:33 +0900 Subject: [PATCH] Fix --- Cargo.lock | 6 +++--- bench/Cargo.toml | 2 +- dynamic/Cargo.toml | 2 +- engine/Cargo.toml | 4 ++-- examples/custom-vm/Cargo.toml | 2 +- examples/embedded-script/Cargo.toml | 2 +- examples/hot-reload/Cargo.toml | 2 +- examples/no-std-no-alloc/Cargo.toml | 2 +- root/Cargo.toml | 6 +++--- 9 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 68a59eff7..448358a02 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1329,7 +1329,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "stak" -version = "0.7.3" +version = "0.8.0" dependencies = [ "any-fn", "rand", @@ -1409,7 +1409,7 @@ dependencies = [ [[package]] name = "stak-dynamic" -version = "0.1.5" +version = "0.2.0" dependencies = [ "any-fn", "bitvec", @@ -1419,7 +1419,7 @@ dependencies = [ [[package]] name = "stak-engine" -version = "0.1.5" +version = "0.2.0" dependencies = [ "any-fn", "cfg-elif", diff --git a/bench/Cargo.toml b/bench/Cargo.toml index 5a0ab71f8..cdb125935 100644 --- a/bench/Cargo.toml +++ b/bench/Cargo.toml @@ -5,7 +5,7 @@ publish = false edition.workspace = true [dependencies] -stak = { version = "0.7.3", path = "../root" } +stak = { version = "0.8.0", path = "../root" } stak-compiler = { version = "0.2.8", path = "../compiler" } [dev-dependencies] diff --git a/dynamic/Cargo.toml b/dynamic/Cargo.toml index 318f95226..36e34a248 100644 --- a/dynamic/Cargo.toml +++ b/dynamic/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "stak-dynamic" description = "Dynamic primitives for Stak Scheme" -version = "0.1.5" +version = "0.2.0" edition.workspace = true keywords.workspace = true license-file.workspace = true diff --git a/engine/Cargo.toml b/engine/Cargo.toml index ce538e585..199ff07bb 100644 --- a/engine/Cargo.toml +++ b/engine/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "stak-engine" description = "Stak Scheme scripting engine for Rust" -version = "0.1.5" +version = "0.2.0" edition.workspace = true keywords.workspace = true license-file.workspace = true @@ -16,7 +16,7 @@ std = ["stak-device/std"] any-fn = "0.6.1" cfg-elif = "0.6.1" stak-device = { version = "0.2.98", path = "../device" } -stak-dynamic = { version = "0.1.5", path = "../dynamic" } +stak-dynamic = { version = "0.2.0", path = "../dynamic" } stak-file = { version = "0.5.12", path = "../file" } stak-module = { version = "0.1.18", path = "../module" } stak-process-context = { version = "0.2.56", path = "../process_context" } diff --git a/examples/custom-vm/Cargo.toml b/examples/custom-vm/Cargo.toml index 337b34d65..aa0b8ef46 100644 --- a/examples/custom-vm/Cargo.toml +++ b/examples/custom-vm/Cargo.toml @@ -5,7 +5,7 @@ publish = false edition.workspace = true [dependencies] -stak = { version = "0.7.3", path = "../../root" } +stak = { version = "0.8.0", path = "../../root" } [build-dependencies] stak-build = { version = "0.1.57", path = "../../build" } diff --git a/examples/embedded-script/Cargo.toml b/examples/embedded-script/Cargo.toml index b12870250..6b91c31b5 100644 --- a/examples/embedded-script/Cargo.toml +++ b/examples/embedded-script/Cargo.toml @@ -7,7 +7,7 @@ edition.workspace = true [dependencies] any-fn = "0.6.1" rand = "0.9.0" -stak = { version = "0.7.3", path = "../../root" } +stak = { version = "0.8.0", path = "../../root" } [build-dependencies] stak-build = { version = "0.1.57", path = "../../build" } diff --git a/examples/hot-reload/Cargo.toml b/examples/hot-reload/Cargo.toml index 7e41e3112..3cf73a31f 100644 --- a/examples/hot-reload/Cargo.toml +++ b/examples/hot-reload/Cargo.toml @@ -10,7 +10,7 @@ hot-reload = ["stak/hot-reload"] [dependencies] axum = "0.8.1" -stak = { version = "0.7.3", path = "../../root" } +stak = { version = "0.8.0", path = "../../root" } tokio = { version = "1.43.0", features = ["rt-multi-thread"] } [build-dependencies] diff --git a/examples/no-std-no-alloc/Cargo.toml b/examples/no-std-no-alloc/Cargo.toml index 280f3b888..858adc1f3 100644 --- a/examples/no-std-no-alloc/Cargo.toml +++ b/examples/no-std-no-alloc/Cargo.toml @@ -10,7 +10,7 @@ repository.workspace = true [dependencies] heapless = "0.8.0" -stak = { version = "0.7.3", path = "../../root", default-features = false } +stak = { version = "0.8.0", path = "../../root", default-features = false } [build-dependencies] stak-build = { version = "0.1.57", path = "../../build" } diff --git a/root/Cargo.toml b/root/Cargo.toml index 8783a4899..be0a222fc 100644 --- a/root/Cargo.toml +++ b/root/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "stak" description = "Stak Scheme interpreter" -version = "0.7.3" +version = "0.8.0" edition.workspace = true keywords.workspace = true license-file.workspace = true @@ -33,8 +33,8 @@ std = [ [dependencies] stak-device = { version = "0.2.98", path = "../device" } -stak-dynamic = { version = "0.1.5", path = "../dynamic", optional = true } -stak-engine = { version = "0.1.5", path = "../engine", optional = true } +stak-dynamic = { version = "0.2.0", path = "../dynamic", optional = true } +stak-engine = { version = "0.2.0", path = "../engine", optional = true } stak-file = { version = "0.5.12", path = "../file" } stak-macro = { version = "0.2.17", path = "../macro" } stak-module = { version = "0.1.18", path = "../module" }