From 43485270ee095356d1051c0f616f7ae08d2984ca Mon Sep 17 00:00:00 2001 From: Sandro Santilli Date: Sat, 25 Oct 2025 22:54:19 +0200 Subject: [PATCH] Document how to build from sources (#513) --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index ecd68f8..866b7ef 100644 --- a/README.md +++ b/README.md @@ -51,6 +51,15 @@ url = "https://example.com" user_id = "@user:example.com" ``` +## Installation (from source) + +Install Rust and Cargo using [rustup], and then run from the directory +containing the sources (ie: from a git clone): + +``` +cargo install --locked --path . +``` + ## Installation (via `crates.io`) Install Rust (1.83.0 or above) and Cargo, and then run: @@ -145,3 +154,4 @@ iamb is released under the [Apache License, Version 2.0]. [crates-io-iamb]: https://crates.io/crates/iamb [iamb.chat]: https://iamb.chat [well_known_entry]: https://spec.matrix.org/latest/client-server-api/#getwell-knownmatrixclient +[rustup]: https://rustup.rs/