Conversation
Now that the crate is published to crates.io as `aube`, any user with a Rust toolchain can install the released binary directly without cloning the repo.
Greptile SummaryThis PR adds a Notable:
Confidence Score: 5/5Safe to merge once the crates.io release from PR #7 is live — the doc content itself is accurate and well-structured. Documentation-only change with correct content, clear prose, and appropriate placement. The one real risk (linking to a crates.io package that doesn't exist yet) is already explicitly called out in the PR description and test checklist — no surprises for the merger. No files require special attention. Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[Install aube] --> B{Have mise?}
B -- Yes --> C["mise use -g aube\n(Recommended)"]
B -- No --> D{Have Rust toolchain?}
D -- Yes --> E["cargo install aube --locked\n(From crates.io) ← NEW"]
D -- No --> F{Want to build from source?}
F -- Yes --> G["git clone + cargo install --path crates/aube"]
F -- No --> H[Install mise or Rust toolchain first]
C --> I[aube --version]
E --> I
G --> I
Reviews (2): Last reviewed commit: "docs(installation): document `cargo inst..." | Re-trigger Greptile |
Summary
cargo install aube --lockedas an install method on the installation page, between the recommended mise path and the from-source build.Dependency
The crates.io page for
aubedoesn't exist yet — it'll be published on the first release-plz cycle after #7. Don't merge this PR until that release has landed, otherwise the docs page will link users to a 404.Test plan
cargo install aube --lockedactually pulls from crates.io on a clean machine.Note
Low Risk
Low risk documentation-only change; the main concern is user confusion if the crates.io package is not yet published when this ships.
Overview
Adds a new From crates.io section to
docs/installation.mddocumenting installation viacargo install aube --locked, including a brief explanation of--lockedand where the binary is installed.Reviewed by Cursor Bugbot for commit 1faf187. Bugbot is set up for automated code reviews on this repo. Configure here.