Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
raviqqe committed Feb 24, 2025
1 parent 4634cba commit dfca41c
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion dynamic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion examples/custom-vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion examples/embedded-script/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion examples/hot-reload/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion examples/no-std-no-alloc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
6 changes: 3 additions & 3 deletions root/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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" }
Expand Down

0 comments on commit dfca41c

Please sign in to comment.