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

Add README.md #9

Merged
merged 1 commit into from
May 23, 2024
Merged
Changes from all commits
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
45 changes: 45 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# CriticalUp

Criticalup is a toolchain manager for [Ferrocene][ferrocene], similar to [`rustup`][rustup].

> [!NOTE]
>
> For normal usage and binary installation, please consult the [CriticalUp Documentation][criticalup-docs].

# Installing

Installation instructions for CriticalUp are included in [each release](https://github.com/ferrocene/criticalup/releases) as well as the [documentation][criticalup-docs].


# Development

CriticalUp only requires a working Rust and C toolchain to build. [Installation instructions][rust-install] for Rust typically include installing a C toolchain as well.

To build a debug version of the development-targetting CriticalUp:

```bash
cargo build -p criticalup-dev
```

To build a debug version of the production-targetting CriticalUp:

```bash
cargo build -p criticalup
```

To build a release version:

```bash
cargo build -p criticalup --release
```

To test CriticalUp:

```bash
cargo test
```

[criticalup-docs]: https://ferrocene.github.io/criticalup
[rustup]: https://github.com/rust-lang/rustup
[ferrocene]: https://ferrocene.dev/
[rust-install]: https://www.rust-lang.org/tools/install
Loading