Skip to content
This repository has been archived by the owner on Dec 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #53 from golemcloud/wasmtime-v21-fix-2
Browse files Browse the repository at this point in the history
Fix dependencies
  • Loading branch information
vigoo authored Jun 19, 2024
2 parents 3507c2c + 87c58e6 commit e88cb83
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
4 changes: 2 additions & 2 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 wasm-rpc-stubgen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ cargo-component-core = "=0.13.2"
cargo-component = "=0.13.2"
dir-diff = "0.3.3"
fs_extra = "1.3.0"
golem-wasm-ast = "0.2.3"
golem-wasm-ast = "0.3.0"
golem-wasm-rpc = { path = "../wasm-rpc", version = "0.0.0" }
heck = "0.5.0"
id-arena = "2.2.1"
Expand Down
20 changes: 17 additions & 3 deletions wasm-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,16 @@ wit-bindgen-rt = { version = "0.26.0", features = ["bitflags"] }
arbitrary = { version = "1.3.2", features = ["derive"], optional = true }
bigdecimal = { version = "0.4.5", optional = true }
bincode = { version = "2.0.0-rc.3", optional = true }
golem-wasm-ast = { version = "0.2.2", features = ["analysis", "wave"], optional = true }
golem-wasm-ast = { version = "0.3.0", features = [
"analysis",
"wave",
], optional = true }
serde = { version = "1.0.203", optional = true }
serde_json = { version = "1.0.117", optional = true }
prost = { version = "0.12.6", optional = true }
wasmtime = { version = "=21.0.1", features = ["component-model"], optional = true }
wasmtime = { version = "=21.0.1", features = [
"component-model",
], optional = true }
wasm-wave = { version = "=0.6.0", optional = true }

[dev-dependencies]
Expand All @@ -35,7 +40,16 @@ prost-build = "0.12.6"

[features]
default = ["host"]
host = ["arbitrary", "bincode", "json", "protobuf", "serde", "text", "typeinfo", "wasmtime"]
host = [
"arbitrary",
"bincode",
"json",
"protobuf",
"serde",
"text",
"typeinfo",
"wasmtime",
]
arbitrary = ["dep:arbitrary"]
bincode = ["dep:bincode"]
json = ["dep:serde", "dep:serde_json", "dep:bigdecimal", "typeinfo"]
Expand Down

0 comments on commit e88cb83

Please sign in to comment.