Commit Graph

542 Commits

Author SHA1 Message Date
David Tolnay f51271a0d5
Reword bootstrap comment 2023-08-15 08:21:57 -07:00
David Tolnay 1f02cdfcdd
Merge pull request #248 from RalfJung/bootstrap
don't run build probes in rustc bootstrap
2023-08-15 08:20:16 -07:00
Ralf Jung fa637828ae don't run build probes in rustc bootstrap 2023-08-15 09:41:47 +02:00
David Tolnay 2fd79cd52a
Merge pull request #247 from dtolnay/errorprovide
Pull in anyhow's new Error::provide support
2023-08-15 00:03:20 -07:00
David Tolnay 78e0ffed90
Pull in anyhow's new Error::provide support 2023-08-15 00:00:07 -07:00
David Tolnay 06f1895832
Release 1.0.45 2023-08-14 23:21:08 -07:00
David Tolnay a11330f7fb
Merge pull request #246 from dtolnay/errorprovide
Update to nightly's new Error::provide API
2023-08-14 23:20:34 -07:00
David Tolnay 8a95c2583e
Update to nightly's new Error::provide API 2023-08-14 23:15:54 -07:00
David Tolnay 543e1237d6
Revert "Temporarily disable -Zrandomize-layout due to rustc ICE"
Fixed in nightly-2023-07-23.

This reverts commit 41b23f2dbc.
2023-07-22 18:41:46 -07:00
David Tolnay 41b23f2dbc
Temporarily disable -Zrandomize-layout due to rustc ICE
https://github.com/rust-lang/rust/issues/113941
2023-07-21 20:22:43 -07:00
David Tolnay 54b70cfe10
Release 1.0.44 2023-07-20 22:13:52 -07:00
David Tolnay f86e8e5881
Opt in to generate-link-to-definition when building on docs.rs 2023-07-20 22:13:20 -07:00
David Tolnay 225adab854
Release 1.0.43 2023-07-06 17:18:05 -07:00
David Tolnay f6dc5e54e2
Merge pull request #242 from dtolnay/stdwrite
Fix access to `write!` macro when `thiserror` is not in scope
2023-07-06 17:17:39 -07:00
David Tolnay cab9fec03e
Avoid calling a nonstandard write! macro that might be in scope 2023-07-06 17:14:47 -07:00
David Tolnay 900f018988
Revert "Avoid calling a nonstandard write! macro that might be in scope"
This reverts commit 264b7d1936.
2023-07-06 17:14:10 -07:00
David Tolnay 305be4a979
Release 1.0.42 2023-07-06 15:12:11 -07:00
David Tolnay 6165f58596
Merge pull request #240 from dtolnay/stdwrite
Avoid calling a nonstandard write! macro that might be in scope
2023-07-06 15:11:45 -07:00
David Tolnay 264b7d1936
Avoid calling a nonstandard write! macro that might be in scope 2023-07-06 15:00:49 -07:00
David Tolnay 43f3a2a661
Update to 2021 edition 2023-07-06 14:39:58 -07:00
David Tolnay 281997e760
Release 1.0.41 2023-07-04 12:29:02 -07:00
David Tolnay c28f8fa8f1
Eliminate syn 1 from minimal-versions 2023-07-04 12:28:04 -07:00
David Tolnay 3cda68a7ea
Add CI job using minimal-versions 2023-07-04 12:27:19 -07:00
David Tolnay 23d8fadc50
Remove .clippy.toml in favor of respecting rust-version from Cargo.toml 2023-06-15 19:02:56 -07:00
David Tolnay 5cc5855cd0
Revert "Ui tests with compile_error resolved at call site"
This reverts commit b534dafe3b.
2023-06-07 20:50:23 -07:00
David Tolnay b534dafe3b
Ui tests with compile_error resolved at call site 2023-06-07 19:59:12 -07:00
David Tolnay 6735d4b033
Show error details during miri setup in CI
Without this, if it fails, the only information printed is useless:

    Preparing a sysroot for Miri (target: x86_64-unknown-linux-gnu)...
    fatal error: failed to build sysroot; run `cargo miri setup` to see the error details
2023-05-23 08:29:47 -07:00
David Tolnay 39aaeb00ff
Use error reporting provided by Meta 2023-03-18 14:28:18 -07:00
David Tolnay 07c66e7259
Run clippy on all crates in workspace 2023-03-17 17:55:31 -07:00
David Tolnay 3cec8c4879
Release 1.0.40 2023-03-17 17:53:47 -07:00
David Tolnay 2c65ceadfa
Merge pull request #227 from dtolnay/syn
Update to syn 2
2023-03-17 17:53:15 -07:00
David Tolnay fb8b81f20b
Update to syn 2 2023-03-17 17:49:32 -07:00
David Tolnay 0e45dde206
Merge pull request #226 from dtolnay/tokenspan
Eliminate unneeded use of Spanned trait on single tokens
2023-03-13 14:16:43 -07:00
David Tolnay 490dc0102b
Eliminate unneeded use of Spanned trait on single tokens 2023-03-13 14:13:41 -07:00
David Tolnay f729af95d1
Release 1.0.39 2023-03-05 15:53:12 -08:00
David Tolnay 391ec2bc1b
Set html_root_url 2023-03-05 15:52:54 -08:00
David Tolnay a2d1ed1ccf
Enable type layout randomization in CI on nightly 2023-02-19 09:21:59 -08:00
David Tolnay 7aaa03d94a
Show enabling of nightly tests as a CI step 2023-02-19 09:19:33 -08:00
David Tolnay 0010b0fd96
Support a manual trigger on CI workflow 2023-02-18 17:23:57 -08:00
David Tolnay 920ad73295
Ignore extra_unused_type_parameters clippy lint in test
error: type parameter goes unused in function definition
      --> tests/test_from.rs:51:15
       |
    51 | fn assert_impl<T: From<io::Error>>() {}
       |               ^^^^^^^^^^^^^^^^^^^^
       |
       = help: consider removing the parameter
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_type_parameters
       = note: `-D clippy::extra-unused-type-parameters` implied by `-D clippy::all`
2023-02-10 19:17:59 -08:00
David Tolnay 0d23ebc77a
Prevent actions duplication on noop merge commits 2022-12-31 12:45:33 -08:00
David Tolnay c5ce7250fa
Sync license text with rust-lang repos 2022-12-30 12:00:51 -08:00
David Tolnay 74bfe75eb2
Release 1.0.38 2022-12-17 11:56:36 -08:00
David Tolnay cfc7d8c959
Update build status badge 2022-12-15 17:52:43 -08:00
David Tolnay db78fa2cd8
Update ui test suite to nightly-2022-12-15 2022-12-14 18:29:48 -08:00
David Tolnay c25a710813
Time out workflows after 45 minutes
GitHub's default timeout is 6 hours. Recently some of my GitHub Actions
jobs have started randomly stalling for that long, which is inconvenient
because it ties up a chunk of my runner quota. It apepars to be very
rare for a job to recover after stalling. It's better to time out
quicker and retry on a different runner.
2022-11-25 18:56:19 -08:00
David Tolnay 464e2e798e
Merge pull request #200 from dtolnay/displayattr
Add test of Display impl nested inside display attribute
2022-10-20 10:39:39 -07:00
David Tolnay 4b06a3e263
Add test of Display impl nested inside display attribute 2022-10-20 10:30:04 -07:00
David Tolnay 29ee95ef47
Ui test changes for trybuild 1.0.66 2022-10-04 22:28:04 -07:00
David Tolnay 8a996a5bfd
Release 1.0.37 2022-09-27 14:38:00 -07:00