Taiki Endo
Taiki Endo
Use the specified attribute to specify the delegation destination if variants have multiple fields.
See https://github.com/tokio-rs/tracing/pull/2015#issuecomment-1092561025 for details.
To do this, we need to port the cargo hack's workspace handling and a few other features. This is definitely a breaking change. Perhaps the non-breaking part will be implemented...
This is needed to fix the remaining problems. > Also, note that `Cargo.lock` is actually shared within the workspace. However as far as I know, there is no workaround for...
Tracking issue for the 1.0 release. **Blockers:** - [ ] stabilization of `cfg(version)` https://github.com/rust-lang/rust/issues/64796 **TODO:** Once blockers resolved, do the following things: - [ ] implement #28 "Remove const_fn(nightly) in...
As said in https://github.com/taiki-e/const_fn/pull/17#discussion_r475570000, to use the nightly only unstable feature, it needs to enable the feature at crate-level, and in any case, it needs build-script. So, this may not...
Currently, if a release already exists, this action deletes it and then creating a new release. This behavior should be configurable. https://github.com/taiki-e/create-gh-release-action/blob/0c6ccb3138a320ce96d81052be4263e7abeda881/main.sh#L72-L76
https://github.com/crossbeam-rs/crossbeam/actions/runs/8317196851/job/22757657090 https://github.com/crossbeam-rs/crossbeam/blob/d6737fd6458a2c46f115ecc88f2642215f80b479/crossbeam-channel/tests/select_macro.rs#L896
The current `#[bench]` attribute is broken because #7 was merged without testing. code: ```rust #![feature(test)] extern crate test; use async_std::task; #[async_attributes::bench] async fn bench(b: &mut test::Bencher) { b.iter(|| { println!("hello...