Skip to content

Commit

Permalink
feat: Add book skeleton ✨
Browse files Browse the repository at this point in the history
  • Loading branch information
foresterre committed Apr 25, 2024
1 parent 3413bdb commit 2529d82
Show file tree
Hide file tree
Showing 12 changed files with 68 additions and 0 deletions.
1 change: 1 addition & 0 deletions book/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
book
6 changes: 6 additions & 0 deletions book/book.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[book]
authors = ["Martijn Gribnau <[email protected]>"]
language = "en"
multilingual = false
src = "src"
title = "rust-releases"
20 changes: 20 additions & 0 deletions book/src/SUMMARY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Summary

- [Introduction](./introduction.md)

# Concepts

- [rust-toolchain](./concepts_rust_toolchain.md)
- [rust-releases](./concepts_rust_releases.md)

# Sources

- [rust-changelog](./sources_rust_changelog.md)
- [rust-dist](./sources_rust_dist.md)
- [rust-dist-cli (deprecated)](./sources_rust_dist_cli.md)
- [rust-channel-manifests (deprecated)](./sources_rust_channel_manifests.md)
[//]: # (- Future: github-rust-releases)

# Developer Resources

- [Resources](./developer_resources.md)
1 change: 1 addition & 0 deletions book/src/concepts_rust_releases.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# rust-releases
1 change: 1 addition & 0 deletions book/src/concepts_rust_toolchain.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# rust-toolchain
24 changes: 24 additions & 0 deletions book/src/developer_resources.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Useful resources

## Forge

- [Forge Home](https://forge.rust-lang.org/)
- [Rust Release Channel Layout](https://forge.rust-lang.org/infra/channel-layout.html)
- [Rust "Other installation methods"](https://forge.rust-lang.org/infra/other-installation-methods.html)

## Rustup

- [on Channels](https://rust-lang.github.io/rustup/concepts/channels.html)
- [on Toolchains](https://rust-lang.github.io/rustup/concepts/toolchains.html)
- [on Components](https://rust-lang.github.io/rustup/concepts/components.html)
- [on Profiles](https://rust-lang.github.io/rustup/concepts/profiles.html)
- [Environment Variables](https://rust-lang.github.io/rustup/environment-variables.html)

## Rust on GitHub

- [RELEASES.md: Rust changelog](https://raw.githubusercontent.com/rust-lang/rust/master/RELEASES.md)

## Misc

- [Rustup Components History](https://rust-lang.github.io/rustup-components-history/index.html) by Nightly version and
target
10 changes: 10 additions & 0 deletions book/src/introduction.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Introduction

Welcome! This is a book intended to document the [rust-releases](https://github.com/foresterre/rust-releases/) project.
It's a bit empty right now. Check back in the future!

For additional documentation, you may find the following resources useful:

- [docs.rs/rust-releases](https://docs.rs/rust-releases/): library docs
- [github.com/foresterre/rust-releases](https://github.com/foresterre/rust-releases/): crate introduction and
documentation in the readme
1 change: 1 addition & 0 deletions book/src/sources_rust.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# rust-dist
1 change: 1 addition & 0 deletions book/src/sources_rust_changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# rust-changelog
1 change: 1 addition & 0 deletions book/src/sources_rust_channel_manifests.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# rust-channel-manifests
1 change: 1 addition & 0 deletions book/src/sources_rust_dist.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# rust-dist
1 change: 1 addition & 0 deletions book/src/sources_rust_dist_cli.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# rust-dist

0 comments on commit 2529d82

Please sign in to comment.