-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable default features for wasmtime #366
base: main
Are you sure you want to change the base?
Enable default features for wasmtime #366
Conversation
Signed-off-by: rahulchaphalkar <[email protected]>
ca9181b
to
2459f9b
Compare
@PiotrSikora Any issue with enabling this? After enabling default features, a second PR will enable us to support VTune for wasmtime ( a small change in |
|
I can just enable one feature, 'vtune' instead of all default features. I just assumed Cargo.toml here is following
If i understand this correctly, I can have 1st PR where I just update deps with |
That was the case, but not all default features make sense in context of Proxy-Wasm C++ Host.
Correct. Ideally, you could update Wasmtime to the latest version in the process. |
Right, I was planning on enabling it for the
Sure, I can update wasmtime to its latest v13.0.0 and update deps in 1st PR, and then enable On the default features - I had hoped that features like |
Enabling features one-by-one is fine, if justified. |
PR (1/2) opened for updating wasmtime, #368 |
The
default-features=false
is not present in wasmtime v9.0.3 c-api ( LINK ) , but it was still present in Cargo.toml in this repo (bazel/cargo/wasmtime/Cargo.toml)This PR removes that i.e. enables default features for wasmtime.
This required a
cargo raze --generate-lockfile
and other associated changes (like removing dups from generated build files).Previous discussion for this is here #313