Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Mark unpublished crates as such #12045

Merged
merged 1 commit into from
Apr 27, 2023
Merged

chore: Mark unpublished crates as such #12045

merged 1 commit into from
Apr 27, 2023

Commits on Apr 26, 2023

  1. chore: Mark unpublished crates as such

    This is a follow up to rust-lang#12039.
    This makes it easier for tools to report less irrelevant information.
    
    I did both `publish = false` and `version = "0.0.0"` to help draw
    attention to the fact that these crates are internal (inspired by a
    matklad post).
    
    I left `cargo-test-macro` and `cargo-test-support` in for my own
    personal bias of one day wanting to see those crates published...
    
    The only one removed that had previously been published was `mdman` but
    seeing as that was a `0.0.0`, I'm assuming that was a mistake or just
    reserving the name.
    
    Before:
    ```console
    $ cargo unpublished
    name published current
    ==== ========= =======
    cargo-platform 0.1.2 0.1.3
    cargo-test-macro - 0.1.0
    cargo-test-support - 0.1.0
    cargo-util 0.2.3 0.2.4
    crates-io 0.36.0 0.36.1
    mdman 0.0.0 0.1.0
    resolver-tests - 0.1.0
    cargo 0.70.1 0.72.0
    semver-check - 0.1.0
    cargo-credential 0.1.0 0.2.0
    cargo-credential-1password 0.1.0 0.2.0
    cargo-credential-gnome-secret 0.1.0 0.2.0
    cargo-credential-macos-keychain 0.1.0 0.2.0
    cargo-credential-wincred 0.1.0 0.2.0
    benchsuite - 0.1.0
    ```
    
    After:
    ```console
    name published current
    ==== ========= =======
    cargo-platform 0.1.2 0.1.3
    cargo-test-macro - 0.1.0
    cargo-test-support - 0.1.0
    cargo-util 0.2.3 0.2.4
    crates-io 0.36.0 0.36.1
    cargo 0.70.1 0.72.0
    cargo-credential 0.1.0 0.2.0
    cargo-credential-1password 0.1.0 0.2.0
    cargo-credential-gnome-secret 0.1.0 0.2.0
    cargo-credential-macos-keychain 0.1.0 0.2.0
    cargo-credential-wincred 0.1.0 0.2.0
    ```
    epage committed Apr 26, 2023
    Configuration menu
    Copy the full SHA
    077b1bc View commit details
    Browse the repository at this point in the history