Skip to content

Make wee-alloc an optional feature. #38

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

Merged
merged 14 commits into from
Nov 4, 2020

Conversation

yuval-k
Copy link
Contributor

@yuval-k yuval-k commented Oct 5, 2020

Allow building for non-wasm arch by only depending on wee allocator if we are compiling to wasm32.
Compiling to native has the advantages of being able easily write and run unit tests in dependent projects.

I did test this manually to work, but I am by no means a bazel expert.

@yuval-k yuval-k requested a review from PiotrSikora as a code owner October 5, 2020 14:51
@yuval-k yuval-k force-pushed the allow-non-wasm-build branch 2 times, most recently from 730fea0 to 0e75333 Compare October 5, 2020 15:47
@yuval-k
Copy link
Contributor Author

yuval-k commented Oct 5, 2020

@PiotrSikora given that I didn't really touched any code, how do you want to handle the failed outdated check?
I can update the dependency, but I'm not sure if that's desired.

@PiotrSikora
Copy link
Member

@PiotrSikora given that I didn't really touched any code, how do you want to handle the failed outdated check?
I can update the dependency, but I'm not sure if that's desired.

Please ignore it. Those dependencies that were outdated before. I'll fix it shortly.

@gbrail
Copy link
Contributor

gbrail commented Oct 21, 2020

FWIW I think that we should merge this or something like it.

I actually wish that the library didn't bring in wee-alloc at all. I don't think that it's the business of a library to set the global allocator on any platform, and WASM targets work just fine without it. The only downside is a few tens of K of generated code, which in any module I've written for Envoy is dwarfed by all the other stuff. Projects that want to shrink the size of their WASM can always include it themselves.

@PiotrSikora
Copy link
Member

@gbrail the original reason for enabling this was indeed shrining the .wasm size, but a lot has changed since, and I agree that wee_alloc shouldn't be forced on users.

@yuval-k could you turn it into a crate features, by any chance?

@yuval-k
Copy link
Contributor Author

yuval-k commented Oct 21, 2020

i will give it a try; but not an expert on bazel machinery. will update soon

Signed-off-by: Yuval Kohavi <[email protected]>
Signed-off-by: Yuval Kohavi <[email protected]>
Signed-off-by: Yuval Kohavi <[email protected]>
@yuval-k yuval-k force-pushed the allow-non-wasm-build branch from f17220d to a9dd4b0 Compare November 3, 2020 21:07
@yuval-k
Copy link
Contributor Author

yuval-k commented Nov 3, 2020

@PiotrSikora I added the feature to the rust side, but I'm not sure how to do it on the bazel side.. do you happen to know that off the top of your head? if not i'll have to dig in to the bazel rust rules...

i.e. i need to set the dependencies to rust_library conditionally, which i'm not sure how to do

src/lib.rs Outdated
@@ -16,6 +16,7 @@ pub mod hostcalls;
pub mod traits;
pub mod types;

#[cfg(feature = "wee-alloc")]
mod allocator;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You need to move this to src/allocator.rs and guard only #[global_allocator]. Having this guard here removes malloc() export.

Cargo.toml Outdated
wee_alloc = { version = "0.4", optional = true }

[features]
wee-alloc = ["wee_alloc"]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you move [features] before [dependencies]?

Copy link
Member

@PiotrSikora PiotrSikora left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm... It looks that one of my responses got lost.

You need to regenerate BUILD files to match updated Cargo.toml:

cargo install cargo-raze --version 0.3.8
rm -rf bazel/cargo/
cargo generate-lockfile
cargo raze --output=bazel/cargo
mv Cargo.lock bazel/cargo/

Regarding Bazel, I couldn't find a way to make cargo-raze support features in the primary crate, but I think that we can skip wee_alloc there for now.

@PiotrSikora
Copy link
Member

Please ignore it. Those dependencies that were outdated before. I'll fix it shortly.

Once #45 is merged, you should merge/rebase to fix outdated check. Sorry for the delay!

@yuval-k
Copy link
Contributor Author

yuval-k commented Nov 4, 2020

sounds good; will also add the raze comment to the readme

@yuval-k
Copy link
Contributor Author

yuval-k commented Nov 4, 2020

just tested this;
The problem with allow malloc is that it creates infinite recursion when not building for wasm:

#151 0x00005555555a6626 in malloc ()
#152 0x00005555555a5b0c in alloc::alloc::alloc ()
#153 0x00005555555a5c71 in <alloc::alloc::Global as core::alloc::AllocRef>::alloc ()
#154 0x00005555555a4743 in alloc::raw_vec::RawVec<T,A>::allocate_in ()
#155 0x00005555555a4a68 in alloc::raw_vec::RawVec<T,A>::with_capacity_in ()
#156 0x00005555555a445a in alloc::raw_vec::RawVec<T>::with_capacity ()
#157 0x00005555555a510a in alloc::vec::Vec<T>::with_capacity ()
#158 0x00005555555a6626 in malloc ()
#159 0x00005555555a5b0c in alloc::alloc::alloc ()
#160 0x00005555555a5c71 in <alloc::alloc::Global as core::alloc::AllocRef>::alloc ()
#161 0x00005555555a4743 in alloc::raw_vec::RawVec<T,A>::allocate_in ()
#162 0x00005555555a4a68 in alloc::raw_vec::RawVec<T,A>::with_capacity_in ()
#163 0x00005555555a445a in alloc::raw_vec::RawVec<T>::with_capacity ()
#164 0x00005555555a510a in alloc::vec::Vec<T>::with_capacity ()
#165 0x00005555555a6626 in malloc ()
#166 0x00005555555a5b0c in alloc::alloc::alloc ()
#167 0x00005555555a5c71 in <alloc::alloc::Global as core::alloc::AllocRef>::alloc ()
#168 0x00005555555a4743 in alloc::raw_vec::RawVec<T,A>::allocate_in ()
#169 0x00005555555a4a68 in alloc::raw_vec::RawVec<T,A>::with_capacity_in ()
#170 0x00005555555a445a in alloc::raw_vec::RawVec<T>::with_capacity ()
#171 0x00005555555a510a in alloc::vec::Vec<T>::with_capacity ()
#172 0x00005555555a6626 in malloc ()
...

To fix this I added #[cfg(target_arch = "wasm32")] to mod allocator

Signed-off-by: Yuval Kohavi <[email protected]>
Signed-off-by: Yuval Kohavi <[email protected]>
@PiotrSikora
Copy link
Member

@yuval-k ah, so your issue is not with wee_alloc itself after all, but malloc? Or both? Could you try #42?

Note that even if #42 fixes your issue, I'd still like to get merge this PR for adding wee_alloc as optional feature.

@yuval-k
Copy link
Contributor Author

yuval-k commented Nov 4, 2020

it's both; wee_alloc (when doesn't target wasm) brings in libc create; so it's easier to not include it than include both

@PiotrSikora
Copy link
Member

@yuval-k could you merge/rebase on top of master with merged #42 and try to only guard #[global_allocator]? Removing malloc / proxy_on_memory_allocate doesn't seem correct, since it's part of the ABI.

@yuval-k
Copy link
Contributor Author

yuval-k commented Nov 4, 2020

yes, that works!

@yuval-k yuval-k force-pushed the allow-non-wasm-build branch from 7820978 to 0e02e12 Compare November 4, 2020 20:13
@PiotrSikora PiotrSikora changed the title allow building on non-wasm archs Make wee-alloc an optional feature. Nov 4, 2020
@PiotrSikora
Copy link
Member

One more thing, could you please add Build (wasm32-wasi with wee-alloc) and Clippy (wasm32-wasi with wee-alloc) with --features=wee-alloc to both stable and nightly jobs in .github/workflows/rust.yml?

Signed-off-by: Yuval Kohavi <[email protected]>
README.md Outdated

# Updating dependencies

When updating dependencies, You need to regenerate `BUILD` files to match updated `Cargo.toml`:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: s/You/you/

- name: Clippy (wasm32-wasi)
env:
RUSTFLAGS: -D warnings -C link-args=-S
run: cargo clippy --release --all-targets --target=wasm32-wasi

- name: Clippy (wasm32-wasi with wee-alloc))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: )) -> )

- name: Clippy (wasm32-wasi)
env:
RUSTFLAGS: -D warnings -C link-args=-S
run: cargo clippy --release --all-targets --target=wasm32-wasi

- name: Clippy (wasm32-wasi with wee-alloc))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: )) -> )

Signed-off-by: Yuval Kohavi <[email protected]>
@PiotrSikora PiotrSikora merged commit d159da4 into proxy-wasm:master Nov 4, 2020
@PiotrSikora
Copy link
Member

Thanks!

@yuval-k yuval-k deleted the allow-non-wasm-build branch November 4, 2020 21:52
nullpo-head pushed a commit to nullpo-head/proxy-wasm-rust-sdk that referenced this pull request Mar 2, 2021
yskopets added a commit to yskopets/proxy-wasm-rust-sdk that referenced this pull request Mar 2, 2021
* Use Rust toolchains with working components. (#16)

Signed-off-by: Piotr Sikora <[email protected]>

* Split licenses check into a separate test target. (#17)

Signed-off-by: Piotr Sikora <[email protected]>

* Help other developers get started using this SDK. (#15)

Signed-off-by: DazWilkin <[email protected]>

* Add Bazel support. (#18)

Signed-off-by: Shikugawa <[email protected]>
Signed-off-by: Piotr Sikora <[email protected]>

* Add support for setting HTTP bodies. (#2)

Signed-off-by: Gregory Brail <[email protected]>

* Release v0.1.1. (#20)

Signed-off-by: Piotr Sikora <[email protected]>

* Update MapType values to match updated Proxy-Wasm ABI v0.1.0. (#7)

Signed-off-by: Yaroslav Skopets <[email protected]>

* Release v0.1.2. (#21)

Signed-off-by: Piotr Sikora <[email protected]>

* Update hashbrown to v0.8.2. (#22)

Signed-off-by: Piotr Sikora <[email protected]>

* Add cargo audit and cargo outdated checks. (#23)

Signed-off-by: Piotr Sikora <[email protected]>

* Update chrono to v0.4.15. (proxy-wasm#33)

Signed-off-by: Piotr Sikora <[email protected]>

* Move optional checks to the end. (proxy-wasm#28)

While there, align style with the test framework.

Signed-off-by: Piotr Sikora <[email protected]>

* Move Bazel to //bazel. (proxy-wasm#29)

Signed-off-by: Piotr Sikora <[email protected]>

* Fix HTTP body example. (proxy-wasm#32)

Signed-off-by: Piotr Sikora <[email protected]>

* Add support for setting network buffers. (proxy-wasm#31)

Signed-off-by: Piotr Sikora <[email protected]>

* Add metrics. (proxy-wasm#30)

Fixes #4.

Signed-off-by: Piotr Sikora <[email protected]>

* Update hashbrown and transitive dependencies. (proxy-wasm#45)

Signed-off-by: Piotr Sikora <[email protected]>

* Allow building for wasm32-wasi target. (proxy-wasm#42)

Signed-off-by: Piotr Sikora <[email protected]>

* Make wee-alloc an optional feature. (proxy-wasm#38)

Signed-off-by: Yuval Kohavi <[email protected]>

* Update rules_rust to latest. (proxy-wasm#46)

Signed-off-by: Piotr Sikora <[email protected]>

* Update cargo-raze to latest and regenerate artifacts. (proxy-wasm#47)

Signed-off-by: Piotr Sikora <[email protected]>

* Allow building for wasm32-wasi target using Bazel. (proxy-wasm#50)

While there, update Bazel to 3.7.0.

Signed-off-by: Piotr Sikora <[email protected]>

* Show getrandom and chrono/time usage in examples. (proxy-wasm#51)

Signed-off-by: Piotr Sikora <[email protected]>

* Use cargo-raze's gen_buildrs for trusted crates. (proxy-wasm#53)

Signed-off-by: Piotr Sikora <[email protected]>

* Add support for nested HTTP callouts. (proxy-wasm#56)

Signed-off-by: Svetlin Zarev <[email protected]>

* Allow RootContext to create child contexts for streams. (proxy-wasm#34)

Fixes #6.

Signed-off-by: Daniel Grimm <[email protected]>

* Fix warnings from Clippy v1.50.0 (nightly). (proxy-wasm#58)

Signed-off-by: Piotr Sikora <[email protected]>

* Release v0.1.3. (proxy-wasm#59)

Signed-off-by: Piotr Sikora <[email protected]>

* Cleanup instructions for updating dependencies. (proxy-wasm#60)

Signed-off-by: Piotr Sikora <[email protected]>

* Cleanup WORKSPACE. (proxy-wasm#61)

Signed-off-by: Piotr Sikora <[email protected]>

* Cleanup examples. (proxy-wasm#62)

Signed-off-by: Piotr Sikora <[email protected]>

* Update libc (transitive dependency) to v0.2.81. (proxy-wasm#63)

Signed-off-by: Piotr Sikora <[email protected]>

* Update the declared ABI version to 0.2.0

Signed-off-by: Takaya Saeki <[email protected]>

* Update the examples so that they use the latest API

Signed-off-by: Takaya Saeki <[email protected]>

* Remove ChildContext for now, which is not used anymore

Signed-off-by: Takaya Saeki <[email protected]>

* Bump the version to 0.0.8

Signed-off-by: Takaya Saeki <[email protected]>

* Fix bazel build for the fork's crate

Signed-off-by: Takaya Saeki <[email protected]>

* Fix clippy erros in bytestring.rs

Signed-off-by: Takaya Saeki <[email protected]>

* Update dependencies

Signed-off-by: Takaya Saeki <[email protected]>

* Fix Cargo.toml

Signed-off-by: Takaya Saeki <[email protected]>

* outdated should check only root deps

Signed-off-by: Takaya Saeki <[email protected]>

* Fix inconsistent derived traits

Signed-off-by: Takaya Saeki <[email protected]>

Co-authored-by: Piotr Sikora <[email protected]>
Co-authored-by: Daz Wilkin <[email protected]>
Co-authored-by: Greg Brail <[email protected]>
Co-authored-by: Yaroslav Skopets <[email protected]>
Co-authored-by: Yuval Kohavi <[email protected]>
Co-authored-by: SvetlinZarev-SAP <[email protected]>
Co-authored-by: Daniel Grimm <[email protected]>
github-actions bot pushed a commit to yskopets/proxy-wasm-rust-sdk that referenced this pull request Mar 2, 2021
* Use Rust toolchains with working components. (#16)

Signed-off-by: Piotr Sikora <[email protected]>

* Split licenses check into a separate test target. (#17)

Signed-off-by: Piotr Sikora <[email protected]>

* Help other developers get started using this SDK. (#15)

Signed-off-by: DazWilkin <[email protected]>

* Add Bazel support. (#18)

Signed-off-by: Shikugawa <[email protected]>
Signed-off-by: Piotr Sikora <[email protected]>

* Add support for setting HTTP bodies. (#2)

Signed-off-by: Gregory Brail <[email protected]>

* Release v0.1.1. (#20)

Signed-off-by: Piotr Sikora <[email protected]>

* Update MapType values to match updated Proxy-Wasm ABI v0.1.0. (#7)

Signed-off-by: Yaroslav Skopets <[email protected]>

* Release v0.1.2. (#21)

Signed-off-by: Piotr Sikora <[email protected]>

* Update hashbrown to v0.8.2. (#22)

Signed-off-by: Piotr Sikora <[email protected]>

* Add cargo audit and cargo outdated checks. (#23)

Signed-off-by: Piotr Sikora <[email protected]>

* Update chrono to v0.4.15. (proxy-wasm#33)

Signed-off-by: Piotr Sikora <[email protected]>

* Move optional checks to the end. (proxy-wasm#28)

While there, align style with the test framework.

Signed-off-by: Piotr Sikora <[email protected]>

* Move Bazel to //bazel. (proxy-wasm#29)

Signed-off-by: Piotr Sikora <[email protected]>

* Fix HTTP body example. (proxy-wasm#32)

Signed-off-by: Piotr Sikora <[email protected]>

* Add support for setting network buffers. (proxy-wasm#31)

Signed-off-by: Piotr Sikora <[email protected]>

* Add metrics. (proxy-wasm#30)

Fixes #4.

Signed-off-by: Piotr Sikora <[email protected]>

* Update hashbrown and transitive dependencies. (proxy-wasm#45)

Signed-off-by: Piotr Sikora <[email protected]>

* Allow building for wasm32-wasi target. (proxy-wasm#42)

Signed-off-by: Piotr Sikora <[email protected]>

* Make wee-alloc an optional feature. (proxy-wasm#38)

Signed-off-by: Yuval Kohavi <[email protected]>

* Update rules_rust to latest. (proxy-wasm#46)

Signed-off-by: Piotr Sikora <[email protected]>

* Update cargo-raze to latest and regenerate artifacts. (proxy-wasm#47)

Signed-off-by: Piotr Sikora <[email protected]>

* Allow building for wasm32-wasi target using Bazel. (proxy-wasm#50)

While there, update Bazel to 3.7.0.

Signed-off-by: Piotr Sikora <[email protected]>

* Show getrandom and chrono/time usage in examples. (proxy-wasm#51)

Signed-off-by: Piotr Sikora <[email protected]>

* Use cargo-raze's gen_buildrs for trusted crates. (proxy-wasm#53)

Signed-off-by: Piotr Sikora <[email protected]>

* Add support for nested HTTP callouts. (proxy-wasm#56)

Signed-off-by: Svetlin Zarev <[email protected]>

* Allow RootContext to create child contexts for streams. (proxy-wasm#34)

Fixes #6.

Signed-off-by: Daniel Grimm <[email protected]>

* Fix warnings from Clippy v1.50.0 (nightly). (proxy-wasm#58)

Signed-off-by: Piotr Sikora <[email protected]>

* Release v0.1.3. (proxy-wasm#59)

Signed-off-by: Piotr Sikora <[email protected]>

* Cleanup instructions for updating dependencies. (proxy-wasm#60)

Signed-off-by: Piotr Sikora <[email protected]>

* Cleanup WORKSPACE. (proxy-wasm#61)

Signed-off-by: Piotr Sikora <[email protected]>

* Cleanup examples. (proxy-wasm#62)

Signed-off-by: Piotr Sikora <[email protected]>

* Update libc (transitive dependency) to v0.2.81. (proxy-wasm#63)

Signed-off-by: Piotr Sikora <[email protected]>

* Update the declared ABI version to 0.2.0

Signed-off-by: Takaya Saeki <[email protected]>

* Update the examples so that they use the latest API

Signed-off-by: Takaya Saeki <[email protected]>

* Remove ChildContext for now, which is not used anymore

Signed-off-by: Takaya Saeki <[email protected]>

* Bump the version to 0.0.8

Signed-off-by: Takaya Saeki <[email protected]>

* Fix bazel build for the fork's crate

Signed-off-by: Takaya Saeki <[email protected]>

* Fix clippy erros in bytestring.rs

Signed-off-by: Takaya Saeki <[email protected]>

* Update dependencies

Signed-off-by: Takaya Saeki <[email protected]>

* Fix Cargo.toml

Signed-off-by: Takaya Saeki <[email protected]>

* outdated should check only root deps

Signed-off-by: Takaya Saeki <[email protected]>

* Fix inconsistent derived traits

Signed-off-by: Takaya Saeki <[email protected]>

Co-authored-by: Piotr Sikora <[email protected]>
Co-authored-by: Daz Wilkin <[email protected]>
Co-authored-by: Greg Brail <[email protected]>
Co-authored-by: Yaroslav Skopets <[email protected]>
Co-authored-by: Yuval Kohavi <[email protected]>
Co-authored-by: SvetlinZarev-SAP <[email protected]>
Co-authored-by: Daniel Grimm <[email protected]>
github-actions bot pushed a commit to nullpo-head/proxy-wasm-rust-sdk that referenced this pull request Apr 20, 2021
…opets#19)

* Use Rust toolchains with working components. (yskopets#16)

Signed-off-by: Piotr Sikora <[email protected]>

* Split licenses check into a separate test target. (yskopets#17)

Signed-off-by: Piotr Sikora <[email protected]>

* Help other developers get started using this SDK. (yskopets#15)

Signed-off-by: DazWilkin <[email protected]>

* Add Bazel support. (yskopets#18)

Signed-off-by: Shikugawa <[email protected]>
Signed-off-by: Piotr Sikora <[email protected]>

* Add support for setting HTTP bodies. (yskopets#2)

Signed-off-by: Gregory Brail <[email protected]>

* Release v0.1.1. (yskopets#20)

Signed-off-by: Piotr Sikora <[email protected]>

* Update MapType values to match updated Proxy-Wasm ABI v0.1.0. (yskopets#7)

Signed-off-by: Yaroslav Skopets <[email protected]>

* Release v0.1.2. (yskopets#21)

Signed-off-by: Piotr Sikora <[email protected]>

* Update hashbrown to v0.8.2. (yskopets#22)

Signed-off-by: Piotr Sikora <[email protected]>

* Add cargo audit and cargo outdated checks. (yskopets#23)

Signed-off-by: Piotr Sikora <[email protected]>

* Update chrono to v0.4.15. (proxy-wasm#33)

Signed-off-by: Piotr Sikora <[email protected]>

* Move optional checks to the end. (proxy-wasm#28)

While there, align style with the test framework.

Signed-off-by: Piotr Sikora <[email protected]>

* Move Bazel to //bazel. (proxy-wasm#29)

Signed-off-by: Piotr Sikora <[email protected]>

* Fix HTTP body example. (proxy-wasm#32)

Signed-off-by: Piotr Sikora <[email protected]>

* Add support for setting network buffers. (proxy-wasm#31)

Signed-off-by: Piotr Sikora <[email protected]>

* Add metrics. (proxy-wasm#30)

Fixes yskopets#4.

Signed-off-by: Piotr Sikora <[email protected]>

* Update hashbrown and transitive dependencies. (proxy-wasm#45)

Signed-off-by: Piotr Sikora <[email protected]>

* Allow building for wasm32-wasi target. (proxy-wasm#42)

Signed-off-by: Piotr Sikora <[email protected]>

* Make wee-alloc an optional feature. (proxy-wasm#38)

Signed-off-by: Yuval Kohavi <[email protected]>

* Update rules_rust to latest. (proxy-wasm#46)

Signed-off-by: Piotr Sikora <[email protected]>

* Update cargo-raze to latest and regenerate artifacts. (proxy-wasm#47)

Signed-off-by: Piotr Sikora <[email protected]>

* Allow building for wasm32-wasi target using Bazel. (proxy-wasm#50)

While there, update Bazel to 3.7.0.

Signed-off-by: Piotr Sikora <[email protected]>

* Show getrandom and chrono/time usage in examples. (proxy-wasm#51)

Signed-off-by: Piotr Sikora <[email protected]>

* Use cargo-raze's gen_buildrs for trusted crates. (proxy-wasm#53)

Signed-off-by: Piotr Sikora <[email protected]>

* Add support for nested HTTP callouts. (proxy-wasm#56)

Signed-off-by: Svetlin Zarev <[email protected]>

* Allow RootContext to create child contexts for streams. (proxy-wasm#34)

Fixes yskopets#6.

Signed-off-by: Daniel Grimm <[email protected]>

* Fix warnings from Clippy v1.50.0 (nightly). (proxy-wasm#58)

Signed-off-by: Piotr Sikora <[email protected]>

* Release v0.1.3. (proxy-wasm#59)

Signed-off-by: Piotr Sikora <[email protected]>

* Cleanup instructions for updating dependencies. (proxy-wasm#60)

Signed-off-by: Piotr Sikora <[email protected]>

* Cleanup WORKSPACE. (proxy-wasm#61)

Signed-off-by: Piotr Sikora <[email protected]>

* Cleanup examples. (proxy-wasm#62)

Signed-off-by: Piotr Sikora <[email protected]>

* Update libc (transitive dependency) to v0.2.81. (proxy-wasm#63)

Signed-off-by: Piotr Sikora <[email protected]>

* Update the declared ABI version to 0.2.0

Signed-off-by: Takaya Saeki <[email protected]>

* Update the examples so that they use the latest API

Signed-off-by: Takaya Saeki <[email protected]>

* Remove ChildContext for now, which is not used anymore

Signed-off-by: Takaya Saeki <[email protected]>

* Bump the version to 0.0.8

Signed-off-by: Takaya Saeki <[email protected]>

* Fix bazel build for the fork's crate

Signed-off-by: Takaya Saeki <[email protected]>

* Fix clippy erros in bytestring.rs

Signed-off-by: Takaya Saeki <[email protected]>

* Update dependencies

Signed-off-by: Takaya Saeki <[email protected]>

* Fix Cargo.toml

Signed-off-by: Takaya Saeki <[email protected]>

* outdated should check only root deps

Signed-off-by: Takaya Saeki <[email protected]>

* Fix inconsistent derived traits

Signed-off-by: Takaya Saeki <[email protected]>

Co-authored-by: Piotr Sikora <[email protected]>
Co-authored-by: Daz Wilkin <[email protected]>
Co-authored-by: Greg Brail <[email protected]>
Co-authored-by: Yaroslav Skopets <[email protected]>
Co-authored-by: Yuval Kohavi <[email protected]>
Co-authored-by: SvetlinZarev-SAP <[email protected]>
Co-authored-by: Daniel Grimm <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants