> For the complete documentation index, see [llms.txt](https://wiki.robmurtagh.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.robmurtagh.com/rust.md).

# Rust

## Installation

Install [rustup](https://github.com/rust-lang-nursery/rustup.rs):

```bash
brew install rustup-init
rustup-init
```

Install [Rust Language Server](https://github.com/rust-lang-nursery/rls):

```bash
rustup update
rustup component add rls-preview rust-analysis rust-src
```

Install the [Rust Language Server VSCode extension](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust)

## Hello World

From [Rust by Example](https://doc.rust-lang.org/rust-by-example/):

```rust
// hello.rs
fn main() {
    println!("Hello World!");
}
```

```bash
rustc hello.rs
./hello
```

## Packaging etc

* Packaging is done with [Cargo](https://doc.rust-lang.org/cargo/index.html)
* Each distributed package is called a Crate
* The primary Crate registry is [Crates.io](https://crates.io/)
* A simple starting guide is [here](https://doc.rust-lang.org/cargo/getting-started/first-steps.html)

To create a new project, then compile and run it:

```bash
cargo new rust_example
cd rust_example
cargo run
```

* [Add dependencies](https://doc.rust-lang.org/cargo/guide/dependencies.html) to Cargo.toml


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://wiki.robmurtagh.com/rust.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
