Skip to content
Merged
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
48 changes: 30 additions & 18 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions cmd/gravity/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ test = false
[dependencies]
clap = "=4.6.1"
genco = "=0.19.0"
wit-bindgen-core = "=0.53.1"
wit-component = "=0.245.1"
wit-bindgen-core = "=0.56.0"
wit-component = "=0.246.2"

[dev-dependencies]
# Cutting out `filesystem` feature
trycmd = { version = "=1.2.0", default-features = false, features = [
"color-auto",
"diff",
] }
wit-bindgen = "=0.53.1"
wit-bindgen = "=0.56.0"
7 changes: 7 additions & 0 deletions cmd/gravity/src/codegen/func.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1410,9 +1410,16 @@ impl Bindgen for Func<'_> {
Instruction::GuestDeallocateString
| Instruction::GuestDeallocate { .. }
| Instruction::GuestDeallocateList { .. }
| Instruction::GuestDeallocateMap { .. }
| Instruction::GuestDeallocateVariant { .. } => {
unimplemented!("gravity doesn't generate the Guest code")
}
Instruction::MapLower { .. }
| Instruction::MapLift { .. }
| Instruction::IterMapKey { .. }
| Instruction::IterMapValue { .. } => {
todo!("implement instruction: {inst:?}")
}
Instruction::FutureLower { .. } => todo!("implement instruction: {inst:?}"),
Instruction::FutureLift { .. } => todo!("implement instruction: {inst:?}"),
Instruction::StreamLower { .. } => todo!("implement instruction: {inst:?}"),
Expand Down
4 changes: 2 additions & 2 deletions examples/basic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ edition = "2024"
crate-type = ["cdylib"]

[dependencies]
wit-bindgen = "=0.53.1"
wit-component = "=0.245.1"
wit-bindgen = "=0.56.0"
wit-component = "=0.246.2"
4 changes: 2 additions & 2 deletions examples/iface-method-returns-string/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ edition = "2024"
crate-type = ["cdylib"]

[dependencies]
wit-bindgen = "0.53.1"
wit-component = "0.245.1"
wit-bindgen = "0.56.0"
wit-component = "0.246.2"
4 changes: 2 additions & 2 deletions examples/instructions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ edition = "2024"
crate-type = ["cdylib"]

[dependencies]
wit-bindgen = "=0.53.1"
wit-component = "=0.245.1"
wit-bindgen = "=0.56.0"
wit-component = "=0.246.2"
4 changes: 2 additions & 2 deletions examples/records/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ edition = "2024"
crate-type = ["cdylib"]

[dependencies]
wit-bindgen = "=0.53.1"
wit-component = "=0.245.1"
wit-bindgen = "=0.56.0"
wit-component = "=0.246.2"
4 changes: 2 additions & 2 deletions examples/regressions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ edition = "2024"
crate-type = ["cdylib"]

[dependencies]
wit-bindgen = "=0.53.1"
wit-component = "=0.245.1"
wit-bindgen = "=0.56.0"
wit-component = "=0.246.2"