Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,458 changes: 796 additions & 662 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ categories = ["development-tools", "parsers"]

[workspace.dependencies]
# CLI framework
starbase = "0.10"
starbase = "0.12"
clap = { version = "4.5", features = ["derive"] }
anyhow = "1.0"
thiserror = "2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ serde_json = "1.0"
morphir-common = { path = "../morphir-common" }

[dev-dependencies]
cucumber = { version = "0.22", features = ["output-json"] }
cucumber = { version = "0.23", features = ["output-json"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }

[[test]]
Expand Down
2 changes: 1 addition & 1 deletion crates/morphir-ext-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ serde = { version = "1", features = ["derive"] }
serde_json = "1"

# WASI bindings
wit-bindgen = "0.52.0"
wit-bindgen = "0.58.0"

[package.metadata.component]
package = "morphir:ext-example"
2 changes: 1 addition & 1 deletion crates/morphir-ext/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license.workspace = true

[dependencies]
morphir-ext-core = { path = "../morphir-ext-core" }
kameo = "0.19"
kameo = "0.21"
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
4 changes: 2 additions & 2 deletions crates/morphir-gleam-binding/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ serde_json = "1.0"

# Parser dependencies
logos = "0.16"
chumsky = "0.12"
chumsky = "0.13"

# Morphir IR (for visitors)
morphir-core = { path = "../morphir-core" }
Expand All @@ -42,7 +42,7 @@ anyhow = "1.0"
pretty = "0.12"

[dev-dependencies]
cucumber = { version = "0.22", features = ["output-json"] }
cucumber = { version = "0.23", features = ["output-json"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
tempfile = "3"
serde = { version = "1.0", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/morphir-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ keywords.workspace = true
categories.workspace = true

[dependencies]
cucumber = { version = "0.22", features = ["output-json"] }
cucumber = { version = "0.23", features = ["output-json"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
anyhow = { workspace = true }
serde_json = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/morphir-wasm-binding/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

# WASM generation
wasm-encoder = "0.244"
wasm-encoder = "0.252"

# Base64 encoding for binary output
base64 = "0.22"
Loading