Skip to content
This repository was archived by the owner on Oct 6, 2024. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dtolnay/paste
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.14
Choose a base ref
...
head repository: dtolnay/paste
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.0.15
Choose a head ref
  • 12 commits
  • 5 files changed
  • 1 contributor

Commits on Jul 22, 2023

  1. Configuration menu
    Copy the full SHA
    28eb8e7 View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2023

  1. Revert "Temporarily disable -Zrandomize-layout due to rustc ICE"

    Fixed in nightly-2023-07-23.
    
    This reverts commit 28eb8e7.
    dtolnay committed Jul 23, 2023
    Configuration menu
    Copy the full SHA
    e5a04b0 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2023

  1. Configuration menu
    Copy the full SHA
    d7e0be1 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2023

  1. Configuration menu
    Copy the full SHA
    5a2bce1 View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2023

  1. Add cargo.toml metadata to link to crate documentation

    Without this, crates.io does not put a Documentation link on the search page.
    dtolnay committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    0a4161b View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2024

  1. Work around dead_code warning in test

        warning: field `0` is never read
          --> tests/test_item.rs:64:37
           |
        64 |                 pub struct S<$life>(&$life ());
           |                            -        ^^^^^^^^^
           |                            |
           |                            field in this struct
        ...
        72 |     m!('a);
           |     ------ in this macro invocation
           |
           = note: `#[warn(dead_code)]` on by default
           = note: this warning originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)
        help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
           |
        64 |                 pub struct S<$life>(());
           |                                     ~~
    dtolnay committed Jan 6, 2024
    Configuration menu
    Copy the full SHA
    ed844dc View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2024

  1. Work around empty_docs clippy lint in test

        warning: empty doc comment
           --> tests/test_item.rs:174:17
            |
        174 |                 #[doc = $doc]
            |                 ^^^^^^^^^^^^^
        ...
        180 |     doc_expr!(stringify!());
            |     ----------------------- in this macro invocation
            |
            = help: consider removing or filling it
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_docs
            = note: `-W clippy::empty-docs` implied by `-W clippy::all`
            = help: to override `-W clippy::all` add `#[allow(clippy::empty_docs)]`
            = note: this warning originates in the macro `doc_expr` (in Nightly builds, run with -Z macro-backtrace for more info)
    dtolnay committed Feb 28, 2024
    Configuration menu
    Copy the full SHA
    14872ad View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2024

  1. Ignore dead code lint in tests

    New in nightly-2024-03-24 from rust-lang/rust#119552.
    
        warning: field `0` is never read
          --> tests/test_item.rs:64:37
           |
        64 |                 pub struct S<$life>(pub &$life ());
           |                            -        ^^^^^^^^^^^^^
           |                            |
           |                            field in this struct
        ...
        72 |     m!('a);
           |     ------ in this macro invocation
           |
           = note: `#[warn(dead_code)]` on by default
           = note: this warning originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)
        help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
           |
        64 |                 pub struct S<$life>(());
           |                                     ~~
    dtolnay committed Mar 24, 2024
    Configuration menu
    Copy the full SHA
    d39fb86 View commit details
    Browse the repository at this point in the history

Commits on Mar 26, 2024

  1. Explicitly install a Rust toolchain for cargo-outdated job

    Debugging a recent cargo-outdated bug, it would have been nice not to
    wonder whether a rustc version change in GitHub's runner image was a
    contributing factor.
    dtolnay committed Mar 26, 2024
    Configuration menu
    Copy the full SHA
    cc6803d View commit details
    Browse the repository at this point in the history

Commits on May 7, 2024

  1. Resolve unexpected_cfgs warning

        warning: unexpected `cfg` condition name: `no_literal_fromstr`
           --> src/lib.rs:415:15
            |
        415 |     #[cfg(not(no_literal_fromstr))]
            |               ^^^^^^^^^^^^^^^^^^
            |
            = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, `windows`
            = help: consider using a Cargo feature instead or adding `println!("cargo::rustc-check-cfg=cfg(no_literal_fromstr)");` to the top of the `build.rs`
            = note: see <https://doc.rust-lang.org/nightly/cargo/reference/build-scripts.html#rustc-check-cfg> for more information about checking conditional configuration
            = note: `#[warn(unexpected_cfgs)]` on by default
    
        warning: unexpected `cfg` condition value: `protocol_feature_paste`
          --> tests/test_attr.rs:33:26
           |
        33 |                 #[cfg(any(feature = "protocol_feature_" $ret:snake, target_pointer_width = "" $width))]
           |                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove the condition
        ...
        42 |     m!(Paste, 64);
           |     ------------- in this macro invocation
           |
           = note: no expected values for `feature`
           = help: consider adding `protocol_feature_paste` as a feature in `Cargo.toml`
           = note: see <https://doc.rust-lang.org/nightly/cargo/reference/build-scripts.html#rustc-check-cfg> for more information about checking conditional configuration
           = note: `#[warn(unexpected_cfgs)]` on by default
           = note: this warning originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)
    dtolnay committed May 7, 2024
    Configuration menu
    Copy the full SHA
    1edfaae View commit details
    Browse the repository at this point in the history
  2. Merge pull request #102 from dtolnay/checkcfg

    Resolve unexpected_cfgs warning
    dtolnay authored May 7, 2024
    Configuration menu
    Copy the full SHA
    1d23098 View commit details
    Browse the repository at this point in the history
  3. Release 1.0.15

    dtolnay committed May 7, 2024
    Configuration menu
    Copy the full SHA
    a2c7e27 View commit details
    Browse the repository at this point in the history
Loading