Stream: git-wasmtime

Topic: wasmtime / issue #14026 Allow path expansion/modification...


view this post on Zulip Wasmtime GitHub notifications bot (Jul 30 2026 at 15:28):

mkatychev opened issue #14026:

Feature

allow bindgen to link a dependency tree that is not a sibling path to the root WIT package to be generated:

bindgen!({
    world: "foo",
    path: "other/path/to/wit",
    deps: "path/to/foo/dir/deps", // behaves as "other/path/to/wit/dir"
    // ...
});

Benefit

This would allow aggregation of dependency trees for multiple packages that share different directories

Implementation

Likely u directory association inside of bindgen! wasmtime::Config

Alternatives

Symlinking, this is not supported on windows :cry:

view this post on Zulip Wasmtime GitHub notifications bot (Jul 30 2026 at 15:44):

mkatychev closed issue #14026:

Feature

allow bindgen to link a dependency tree that is not a sibling path to the root WIT package to be generated:

bindgen!({
    world: "foo",
    path: "other/path/to/wit",
    deps: "path/to/foo/dir/deps", // behaves as "other/path/to/wit/dir"
    // ...
});

Benefit

This would allow aggregation of dependency trees for multiple packages that share different directories

Implementation

Likely u directory association inside of bindgen! wasmtime::Config

Alternatives

Symlinking, this is not supported on windows :cry:


Last updated: Aug 30 2026 at 09:07 UTC