Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

shigma/rust

pull[bot] closed a pull request on shigma/rust
[pull] master from rust-lang:master
See [Commits](/shigma/rust/pull/98/commits) and [Changes](/shigma/rust/pull/98/files) for more details. ----- Created by [<img src="https://prod.download/pull-18h-svg" valign="bottom"/> **pull[bot...
pull[bot] pushed 24 commits to master shigma/rust
  • include LLDB and GDB visualizers in MSVC distribution e75aa44
  • Don't try and handle unfed `type_of` on anon consts ec036cd
  • Add comment to test 52d1c30
  • coverage: Extract `subtracted_sum` in counter creation 2a3b4a0
  • coverage: Rename `CounterIncrementSite` to just `Site` A "site" is a node or edge in the coverage graph. 7ecc677
  • coverage: Use a single `make_phys_counter` method This is more convenient for subsequent patches. aca6dba
  • coverage: Add an extra "transcribe" step after counter creation 44e4e45
  • coverage: Use a separate counter type during counter creation d7090f3
  • coverage: Remove the expression simplifier from `CoverageCounters` These simplifications are now handled by the tran... ba08056
  • Remove `-Zshow-span`. It's very old (added in #12087). It's strange, and it's not clear what its use cases are. It o... e52f5bf
  • Remove some noisy tracing ec3424a
  • Avoid `opaque type not constrained` errors in the presence of other errors a91c361
  • Stop git from merging generated files 4cbb599
  • make CoercePointee errors translatable 836ab5c
  • Update sysinfo version to 0.33.0 52a6bad
  • Rollup merge of #133737 - Walnut356:msvc_visualizers, r=onur-ozkan Include LLDB and GDB visualizers in MSVC distribu... adeb603
  • Rollup merge of #133774 - dingxiangfei2009:translatable-coerce-pointee-errors, r=jieyouxu Make CoercePointee errors ... 4b2d68d
  • Rollup merge of #133831 - BoxyUwU:ice_on_unfed_type_of, r=compiler-errors Don't try and handle unfed `type_of` on an... e6d7ab2
  • Rollup merge of #133847 - nnethercote:rm-Z-show-span, r=compiler-errors Remove `-Zshow-span`. It's very old (added ... a4dc963
  • Rollup merge of #133849 - Zalathar:replay, r=oli-obk coverage: Use a separate counter type and simplification step d... 553db5f
  • and 4 more ...

View on GitHub

pull[bot] opened a pull request on shigma/rust
[pull] master from rust-lang:master
See [Commits](/shigma/rust/pull/98/commits) and [Changes](/shigma/rust/pull/98/files) for more details. ----- Created by [<img src="https://prod.download/pull-18h-svg" valign="bottom"/> **pull[bot...
pull[bot] pushed 22 commits to master shigma/rust
  • rustdoc: Rename set_back_info to restore_module_data. cb9838c
  • update instrumentation 67defd7
  • closure requirements: don't replace bivariant opaque args It is unnecessary, these get constrained when checking tha... 8a47b44
  • small code cleanup 65d0b5d
  • Update LLVM to 19.1.5 605306e
  • Visit BinOp span in MutVisitor::visit_expr a2eca35
  • Visit Stmt span in MutVisitor::flat_map_stmt a3cfe2f
  • Improve code for FileName retrieval in rustdoc 2e1f25b
  • closure-requirements: add regression tests 1c96ddd
  • Update `NonZero` and `NonNull` to not field-project (per MCP807) 7afce4f
  • Rename `is_real_and_local` function into `filename_real_and_local` 2997ec5
  • bootstrap: `println!` -> `eprintln!` 3fadb87
  • compiletest: `println!` -> `eprintln!` 2372561
  • tidy: `println!` -> `eprintln!` 8374f7c
  • Rollup merge of #133651 - scottmcm:nonnull-nonzero-no-field-projection, r=oli-obk Update `NonZero` and `NonNull` to ... 68f8a53
  • Rollup merge of #133764 - aDotInTheVoid:rename, r=GuillaumeGomez rustdoc: Rename `set_back_info` to `restore_module_... afffc1a
  • Rollup merge of #133784 - dtolnay:visitspans, r=compiler-errors Fix MutVisitor's default implementations to visit St... 45088fd
  • Rollup merge of #133798 - lcnr:nested-bodies-opaques, r=compiler-errors stop replacing bivariant args with `'static`... 9fd0972
  • Rollup merge of #133804 - GuillaumeGomez:improve-code, r=notriddle Improve code for FileName retrieval in rustdoc S... 5530869
  • Rollup merge of #133817 - clubby789:bootstrap-eprintln, r=jieyouxu Use `eprintln` instead of `println` in bootstrap/... 0585134
  • and 2 more ...

View on GitHub

pull[bot] opened a pull request on shigma/rust
[pull] master from rust-lang:master
See [Commits](/shigma/rust/pull/97/commits) and [Changes](/shigma/rust/pull/97/files) for more details. ----- Created by [<img src="https://prod.download/pull-18h-svg" valign="bottom"/> **pull[bot...
pull[bot] closed a pull request on shigma/rust
[pull] master from rust-lang:master
See [Commits](/shigma/rust/pull/96/commits) and [Changes](/shigma/rust/pull/96/files) for more details. ----- Created by [<img src="https://prod.download/pull-18h-svg" valign="bottom"/> **pull[bot...
pull[bot] pushed 20 commits to master shigma/rust
  • a release operation synchronizes with an acquire operation 9517769
  • improve TagEncoding::Niche docs and sanity check ce95a44
  • report UB when the niche value refers to the untagged variant a36652c
  • fix safe-transmute handling of enums 611a991
  • Add `core::arch::breakpoint` and test Approved in [ACP 491](https://github.com/rust-lang/libs-team/issues/491). Rem... a030ffb
  • miri: Adapt for `breakpoint` becoming safe cea0582
  • Remove generic_associated_types_extended feature gate f91fd0c
  • change aix default codemodel=large 89b70b9
  • Update wasm-component-ld to 0.5.11 This pulls in an update that supports `@`-files used to pass arguments to linkers... c0a00b7
  • compiletest: explain that UI tests are expected not to compile by default ab38efe
  • Rollup merge of #132937 - xmh0511:master, r=m-ou-se a release operation synchronizes with an acquire operation Chan... 58fac8f
  • Rollup merge of #133681 - RalfJung:niches, r=wesleywiser improve TagEncoding::Niche docs, sanity check, and UB check... 6e87eb5
  • Rollup merge of #133726 - joshtriplett:breakpoint, r=oli-obk Add `core::arch::breakpoint` and test Approved in [ACP... e66e632
  • Rollup merge of #133768 - compiler-errors:gate, r=lcnr,jackh726 Remove `generic_associated_types_extended` feature g... 12519a6
  • Rollup merge of #133811 - mustartt:change-default-codemodel, r=jieyouxu [AIX] change AIX default codemodel=large On... 9a97214
  • Rollup merge of #133812 - alexcrichton:update-wasm-component-ld, r=jieyouxu Update wasm-component-ld to 0.5.11 This... fd182ca
  • Rollup merge of #133813 - clubby789:ui-pass-note, r=jieyouxu compiletest: explain that UI tests are expected not to ... cd56913
  • Update cargo 244afb9
  • Auto merge of #133818 - matthiaskrgr:rollup-iav1wq7, r=matthiaskrgr Rollup of 7 pull requests Successful merges: ... 3b38264
  • Auto merge of #133825 - weihanglo:update-cargo, r=weihanglo Update cargo 17 commits in 4c39aaff66862cc0da52fe529aa1... 2633e01

View on GitHub

pull[bot] opened a pull request on shigma/rust
[pull] master from rust-lang:master
See [Commits](/shigma/rust/pull/96/commits) and [Changes](/shigma/rust/pull/96/files) for more details. ----- Created by [<img src="https://prod.download/pull-18h-svg" valign="bottom"/> **pull[bot...
pull[bot] closed a pull request on shigma/rust
[pull] master from rust-lang:master
See [Commits](/shigma/rust/pull/95/commits) and [Changes](/shigma/rust/pull/95/files) for more details. ----- Created by [<img src="https://prod.download/pull-18h-svg" valign="bottom"/> **pull[bot...
pull[bot] pushed 22 commits to master shigma/rust
  • Implement lint against `Symbol::intern` on a string literal 72d2db7
  • Replace `Symbol::intern` calls with preinterned symbols 71b698c
  • reduce false positives on some common cases from if-let-rescope 2d61c09
  • stabilize const_collections_with_hasher and build_hasher_default_const_new 3a9bc76
  • Move tests back to using AsyncFn a6f2f00
  • Gate async fn trait bound modifier on async_trait_bounds 59e3e89
  • stabilize const_{size,align}_of_val 2b88e4c
  • Structurally resolve in probe_adt 0609b99
  • document -Zrandomize-layout in the unstable book ebb9a38
  • Use correct `hir_id` for array const arg infers 2807ba7
  • ./x miri: fix sysroot build 7ac7b4c
  • Update the definition of `borrowing_sub` This ensures that it matches the one in `carrying_add`. 8b7d3d3
  • Rollup merge of #132612 - compiler-errors:async-trait-bounds, r=lcnr Gate async fn trait bound modifier on `async_tr... c179a15
  • Rollup merge of #133545 - clubby789:symbol-intern-lit, r=jieyouxu Lint against Symbol::intern on a string literal D... 453a1a8
  • Rollup merge of #133558 - compiler-errors:structurally-resolve-probe-adt, r=lcnr Structurally resolve in `probe_adt`... 49df325
  • Rollup merge of #133696 - RalfJung:const-hashmap, r=cuviper stabilize const_collections_with_hasher and build_hasher... 1ae6f47
  • Rollup merge of #133753 - dingxiangfei2009:reduce-false-positive-if-let-rescope, r=jieyouxu Reduce false positives o... 9378132
  • Rollup merge of #133762 - RalfJung:const-size-of-val, r=workingjubilee stabilize const_{size,align}_of_val FCP pass... f224ad8
  • Rollup merge of #133777 - the8472:document-randomize-layout, r=jieyouxu document -Zrandomize-layout in the unstable ... 6323109
  • Rollup merge of #133779 - BoxyUwU:array_const_arg_infer_hir_id, r=compiler-errors Use correct `hir_id` for array con... c80286d
  • and 2 more ...

View on GitHub

pull[bot] opened a pull request on shigma/rust
[pull] master from rust-lang:master
See [Commits](/shigma/rust/pull/95/commits) and [Changes](/shigma/rust/pull/95/files) for more details. ----- Created by [<img src="https://prod.download/pull-18h-svg" valign="bottom"/> **pull[bot...
pull[bot] closed a pull request on shigma/rust
[pull] master from rust-lang:master
See [Commits](/shigma/rust/pull/94/commits) and [Changes](/shigma/rust/pull/94/files) for more details. ----- Created by [<img src="https://prod.download/pull-18h-svg" valign="bottom"/> **pull[bot...
pull[bot] opened a pull request on shigma/rust
[pull] master from rust-lang:master
See [Commits](/shigma/rust/pull/94/commits) and [Changes](/shigma/rust/pull/94/files) for more details. ----- Created by [<img src="https://prod.download/pull-18h-svg" valign="bottom"/> **pull[bot...
pull[bot] closed a pull request on shigma/rust
[pull] master from rust-lang:master
See [Commits](/shigma/rust/pull/93/commits) and [Changes](/shigma/rust/pull/93/files) for more details. ----- Created by [<img src="https://prod.download/pull-18h-svg" valign="bottom"/> **pull[bot...
pull[bot] opened a pull request on shigma/rust
[pull] master from rust-lang:master
See [Commits](/shigma/rust/pull/93/commits) and [Changes](/shigma/rust/pull/93/files) for more details. ----- Created by [<img src="https://prod.download/pull-18h-svg" valign="bottom"/> **pull[bot...
pull[bot] closed a pull request on shigma/rust
[pull] master from rust-lang:master
See [Commits](/shigma/rust/pull/92/commits) and [Changes](/shigma/rust/pull/92/files) for more details. ----- Created by [<img src="https://prod.download/pull-18h-svg" valign="bottom"/> **pull[bot...
pull[bot] pushed 31 commits to master shigma/rust
  • Get rid of HIR const checker 01ff36a
  • show forbidden_lint_groups in future-compat reports 41c3b5c
  • add "profiler" option coverage for ci-rustc Signed-off-by: onur-ozkan <[email protected]> 20630c5
  • fix ICE when promoted has layout size overflow a17294d
  • Add specific test for check-cfg "and X more" diagnostic 85e4765
  • compiletest: un-escape new-line in normalize replacement string 1c4657d
  • Fix crash with `-Zdump-mir-dataflow` As of #133155 `Formatter:new` uses `as_results_cursor` to create a non-mutable ... d37ed10
  • Add test for `-Zdump-mir-dataflow`. 9f2f690
  • Simplify `ResultsHandle`. The `Borrowed` variant is no longer used. This commit removes it, along with the `as_resul... cecef13
  • add "optimized-compiler-builtins" option coverage for ci-rustc Signed-off-by: onur-ozkan <[email protected]> 99e726b
  • Change `AttrArgs::Eq` into a struct variant 778321d
  • Add a helper method for extracting spans from AttrArgsEq c0b5322
  • Deduplicate some matches that always panic in one arm da182b6
  • Reduce conflicts for check-cfg `target_feature` cfg values 43bed16
  • Fix `f16::midpoint` const feature gate 72297d4
  • Use c"lit" for CStrings without unwrap eadea77
  • Stabilize `const_maybe_uninit_write` Mark the following API const stable: impl<T> MaybeUninit<T> { pub ... c5fedc2
  • Move `Const::{from_anon_const,try_from_lit}` to hir_ty_lowering These operations are much more about lowering the HI... 277e049
  • Fix broken intra-doc link dcf332b
  • Rollup merge of #131713 - tgross35:stabilize-const_maybe_uninit_write, r=RalfJung,dtolnay Stabilize `const_maybe_uni... e56e685
  • and 11 more ...

View on GitHub

pull[bot] opened a pull request on shigma/rust
[pull] master from rust-lang:master
See [Commits](/shigma/rust/pull/92/commits) and [Changes](/shigma/rust/pull/92/files) for more details. ----- Created by [<img src="https://prod.download/pull-18h-svg" valign="bottom"/> **pull[bot...
pull[bot] closed a pull request on shigma/rust
[pull] master from rust-lang:master
See [Commits](/shigma/rust/pull/91/commits) and [Changes](/shigma/rust/pull/91/files) for more details. ----- Created by [<img src="https://prod.download/pull-18h-svg" valign="bottom"/> **pull[bot...
pull[bot] pushed 35 commits to master shigma/rust
  • Eliminate precedence arithmetic from rustc_ast_pretty c02032c
  • Eliminate precedence arithmetic from rustc_hir_pretty 34a65f2
  • Eliminate PREC_FORCE_PAREN ca8f474
  • Eliminate precedence arithmetic from rustc_parse 539c863
  • Eliminate magic numbers from expression precedence 7ced18f
  • rustdoc-json: Add tests for `static`s 51ea7c1
  • rustdoc-json: Include safety of `static`s f33dba0
  • rustdoc-json: Add test for `impl Trait for dyn Trait` b5d73fc
  • Remove `//@ compare-output-lines-by-subset` There was only ever one test which used this flag, and it was removed in... 2f17ea0
  • Add pretty-printer parenthesis insertion test 267dcb2
  • Add `needs-target-has-atomic` directive Before this commit, the test writer has to specify platforms and architectur... 99c2322
  • Re-add myself to rotation 1a976e0
  • Fix docs for '<[T]>::as_array'; b1ff3c8
  • Fix typos on tests/ui/README.md c8e0724
  • Remove static HashSet for default IDs list b863c0d
  • build `rustc` with 1 CGU on `aarch64-apple-darwin` 70e0d58
  • mir validator: don't store mir phase 8b90e70
  • remove outdated comment cfee10c
  • remove `Ty::is_copy_modulo_regions` e089bea
  • `impl Default for EarlyDiagCtxt` for small rustc_driver programs, most of their imports will currently be related to... 42174f0
  • and 15 more ...

View on GitHub

pull[bot] opened a pull request on shigma/rust
[pull] master from rust-lang:master
See [Commits](/shigma/rust/pull/91/commits) and [Changes](/shigma/rust/pull/91/files) for more details. ----- Created by [<img src="https://prod.download/pull-18h-svg" valign="bottom"/> **pull[bot...
pull[bot] closed a pull request on shigma/rust
[pull] master from rust-lang:master
See [Commits](/shigma/rust/pull/90/commits) and [Changes](/shigma/rust/pull/90/files) for more details. ----- Created by [<img src="https://prod.download/pull-18h-svg" valign="bottom"/> **pull[bot...
pull[bot] pushed 2 commits to master shigma/rust
  • check local cache even if global is usable we store overflow errors locally, even if we can otherwise use the global... de94536
  • Auto merge of #133626 - lcnr:fix-diesel, r=BoxyUwU check local cache even if global is usable we store overflow err... 32eea2f

View on GitHub

pull[bot] opened a pull request on shigma/rust
[pull] master from rust-lang:master
See [Commits](/shigma/rust/pull/90/commits) and [Changes](/shigma/rust/pull/90/files) for more details. ----- Created by [<img src="https://prod.download/pull-18h-svg" valign="bottom"/> **pull[bot...
pull[bot] closed a pull request on shigma/rust
[pull] master from rust-lang:master
See [Commits](/shigma/rust/pull/89/commits) and [Changes](/shigma/rust/pull/89/files) for more details. ----- Created by [<img src="https://prod.download/pull-18h-svg" valign="bottom"/> **pull[bot...
pull[bot] pushed 11 commits to master shigma/rust
  • remove a whole bunch of unnecessary const feature gates 0dc9440
  • get rid of a bunch of unnecessary rustc_const_unstable 4ce2116
  • rustc_allow_const_fn_unstable is not used in proc_macro 9182aa0
  • Stabilize `ptr::fn_addr_eq` 69c0326
  • Remove hir::ArrayLen, introduce ConstArgKind::Infer Remove Node::ArrayLenInfer d38f013
  • Update mailmap 855c04e
  • Rollup merge of #133589 - voidc:remove-array-len, r=boxyuwu Remove `hir::ArrayLen` This refactoring removes `hir::A... 811eaeb
  • Rollup merge of #133672 - RalfJung:const-stability-cleanup, r=jhpratt Remove a bunch of unnecessary const stability ... 8f7a106
  • Rollup merge of #133678 - Urgau:stabilize-ptr_fn_addr_eq, r=jhpratt Stabilize `ptr::fn_addr_eq` This PR stabilize t... 10f3735
  • Rollup merge of #133727 - jhpratt:mailmap, r=jhpratt Update mailmap 9cac33a
  • Auto merge of #133728 - jhpratt:rollup-k1i60pg, r=jhpratt Rollup of 4 pull requests Successful merges: - #133589 ... 3bff51e

View on GitHub

pull[bot] opened a pull request on shigma/rust
[pull] master from rust-lang:master
See [Commits](/shigma/rust/pull/89/commits) and [Changes](/shigma/rust/pull/89/files) for more details. ----- Created by [<img src="https://prod.download/pull-18h-svg" valign="bottom"/> **pull[bot...
pull[bot] pushed 243 commits to master shigma/rust
  • std: refactor `pthread`-based synchronization The non-trivial code for `pthread_condvar` is duplicated across the th... 528b37a
  • Fix and undeprecate home_dir() 4b7f56a
  • [AIX] handle libunwind native_libs AIX should follow a similar path here to other libunwind platforms, with regards ... 2ade671
  • allow conditional `Send` futures in `future_not_send` 1309e8f
  • Increase impl items indent and decrease documentation indent for impl block 8fb6c08
  • Update GUI tests for documentation indent changes 4f20626
  • Align impl doc block with `impl` keyword bf6fcc9
  • Merge commit '786fbd6d683933cd0e567fdcd25d449a69b4320c' into clippy-subtree-update 1ceaa90
  • Move MSRV implementation to clippy_utils 4460db0
  • Move create_disallowed_map to clippy_config 81483d4
  • Rename all clippy_config::msrvs -> clippy_utils::msrvs 5c1811a
  • Allow conditional `Send` futures in `future_not_send` (#13590) Closes #6947 This changes the lint to allow futures ... 83f7526
  • Reverse dependency between `clippy_utils` and `clippy_config` (#13691) In preparation of #13556, I want to remove th... 627363e
  • Support user format-like macros Add support for `#[clippy::format_args]` attribute that can be attached to any macro... 81dceed
  • `unnecessary_map_or`: add non-comparaison tests d1688b5
  • Simplify instances of `Option::map_or(true, …)` in Clippy sources ca963b6
  • unnecessary_map_or: lint `.map_or(true, …)` as well de03a05
  • Support user format-like macros (#9948) Add support for `#[clippy::format_args]` attribute that can be attached to a... 5f05ce4
  • `redundant_guards`: lint float literals, don't lint cstr literals 8859847
  • Don't lint CStr literals, do lint float literals in `redundant_guards` (#13698) Two changes to `redundant_guards`: ... 8698c31
  • and 223 more ...

View on GitHub

pull[bot] closed a pull request on shigma/rust
[pull] master from rust-lang:master
See [Commits](/shigma/rust/pull/87/commits) and [Changes](/shigma/rust/pull/87/files) for more details. ----- Created by [<img src="https://prod.download/pull-18h-svg" valign="bottom"/> **pull[bot...
pull[bot] opened a pull request on shigma/rust
[pull] master from rust-lang:master
See [Commits](/shigma/rust/pull/87/commits) and [Changes](/shigma/rust/pull/87/files) for more details. ----- Created by [<img src="https://prod.download/pull-18h-svg" valign="bottom"/> **pull[bot...
Load more