Skip to content
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
6eaf531
add Box::as_ptr and Box::as_mut_ptr methods
RalfJung Aug 14, 2024
58dcd1c
use the new Box methods in the interpreter
RalfJung Aug 14, 2024
12e6389
bootstrap: improve error recovery flags to curl
lolbinarycat Aug 15, 2024
b3ec296
autoformat and remove unit test
lolbinarycat Aug 17, 2024
d1b41f3
remove dbg!()
lolbinarycat Aug 22, 2024
5f2cedc
handle stage0 cargo and rustc separately
onur-ozkan Aug 23, 2024
69ca95b
use tuples for semver, not floats
lolbinarycat Aug 23, 2024
9ccd7ab
library: Move unstable API of new_uninit to new features
workingjubilee Aug 22, 2024
90b4e17
CI: rfl: move to temporary commit
ojeda Aug 23, 2024
c36b563
Update minifier to 0.3.1
GuillaumeGomez Aug 24, 2024
b9033bd
New `#[rustc_pub_transparent]` attribute
GrigorenkoPV Aug 24, 2024
06f2d73
repr_transparent_external_private_fields: treat `rustc_pub_transparen…
GrigorenkoPV Aug 24, 2024
300da9a
only use rustc attr on nightly
lqd Aug 24, 2024
3e2763a
add missing associated item
lqd Aug 24, 2024
ad855fe
this needs the type for some reason
lqd Aug 24, 2024
902264b
allow cfg(bootstrap) to avoid check-cfg warning on stable
lqd Aug 24, 2024
56adf87
rewrite extract_curl_version again
lolbinarycat Aug 24, 2024
dbf06d2
Get rid of predicates_defined_on
compiler-errors Aug 24, 2024
39f6079
Rollup merge of #129091 - RalfJung:box_as_ptr, r=Amanieu
matthiaskrgr Aug 25, 2024
3d47d24
Rollup merge of #129134 - lolbinarycat:continue-at, r=Kobzol
matthiaskrgr Aug 25, 2024
f380963
Rollup merge of #129416 - workingjubilee:partial-move-from-stabilizat…
matthiaskrgr Aug 25, 2024
52ea214
Rollup merge of #129459 - onur-ozkan:separate-stage0-bins, r=Kobzol
matthiaskrgr Aug 25, 2024
5545cb7
Rollup merge of #129487 - GrigorenkoPV:repr_transparent_external_priv…
matthiaskrgr Aug 25, 2024
1e42fcb
Rollup merge of #129511 - GuillaumeGomez:update-minifier, r=notriddle
matthiaskrgr Aug 25, 2024
862ba28
Rollup merge of #129523 - lqd:stable-type-ir, r=compiler-errors
matthiaskrgr Aug 25, 2024
46dbf09
Rollup merge of #129546 - compiler-errors:no-pred-on, r=fee1-dead
matthiaskrgr Aug 25, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2226,9 +2226,12 @@ dependencies = [

[[package]]
name = "minifier"
version = "0.3.0"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95bbbf96b9ac3482c2a25450b67a15ed851319bc5fabf3b40742ea9066e84282"
checksum = "9aa3f302fe0f8de065d4a2d1ed64f60204623cac58b80cd3c2a83a25d5a7d437"
dependencies = [
"clap",
]

[[package]]
name = "minimal-lexical"
Expand Down
2 changes: 1 addition & 1 deletion src/librustdoc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ rinja = { version = "0.3", default-features = false, features = ["config"] }
base64 = "0.21.7"
itertools = "0.12"
indexmap = "2"
minifier = "0.3.0"
minifier = "0.3.1"
pulldown-cmark-old = { version = "0.9.6", package = "pulldown-cmark", default-features = false }
regex = "1"
rustdoc-json-types = { path = "../rustdoc-json-types" }
Expand Down