Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
Next Next commit
Move crates.io removal instructions to crates.io ops guide
Merge docs.rs instructions into the docs.rs page.
  • Loading branch information
carols10cents committed May 6, 2022
commit c7dab214cd4437465570376e66d1726a053dd679
1 change: 0 additions & 1 deletion src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
- [How to run the planning meeting](./compiler/steering-meeting/how-to-run-planning.md)
- [How to run a design meeting](./compiler/steering-meeting/how-to-run-design.md)
- [crates.io](./crates-io/README.md)
- [Crate removal](./crates-io/crate-removal.md)
- [Database maintenance](./crates-io/db-maintenance.md)
- [docs.rs](./docs-rs/README.md)
- [Adding dependencies to the build environment](./docs-rs/add-dependencies.md)
Expand Down
48 changes: 0 additions & 48 deletions src/crates-io/crate-removal.md

This file was deleted.

15 changes: 12 additions & 3 deletions src/docs-rs/maintenance.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,18 @@ UPDATE queue SET attempt = 0 WHERE attempt >= 5 AND build_time > 'YYYY-MM-DD HH:

## Removing a crate from the website

Sometimes it might be needed to remove all the content related to a crate from
docs.rs (for example after receiving a DMCA). To do that, log into the server
and run:
The docs.rs application supports deleting all the documentation ever published
of a crate (for example after receiving a DMCA), by running a CLI command. The
people who currently have permissions to access the server and run it are:

* docs.rs Team:
* [@pietroalbini](https://github.com/pietroalbini)
* [@jyn514](https://github.com/jyn514)
* Infrastructure Team:
* [@Mark-Simulacrum](https://github.com/Mark-Simulacrum)
* People with elevated 1password access

If you are one of these people, log into the server and run:

```
cratesfyi database delete-crate CRATE_NAME
Expand Down