From 787b904c02a2b785f891898554cfae02bd29a928 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Hauspie?= <michael.hauspie@univ-lille.fr> Date: Fri, 5 Jul 2024 15:58:33 +0200 Subject: [PATCH] Update crate name to troll-rs --- Cargo.toml | 10 +++++----- README.md | 14 +++++++------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3df2f26..77c60bf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,17 +1,17 @@ [package] -name = "orc-rs" +name = "troll-rs" version = "0.1.0" edition = "2021" authors = ["Michaƫl Hauspie <michael.hauspie@univ-lille.fr>", "Damien Amara <damien.amara@univ-lille.fr", "Gilles Grimaud <gilles.grimaud@univ-lille.fr>"] license-file = "LICENSE" -description = "A tool to help creating and building a Orc Relocatable Code file" -repository = "https://gitlab.univ-lille.fr/2xs/pip/pip-tool.git" -homepage = "https://gitlab.univ-lille.fr/2xs/pip/pip-tool" +description = "A tool to help creating and building a Troll relocatable binary" +repository = "https://gitlab.univ-lille.fr/2xs/pip/troll-rs.git" +homepage = "https://gitlab.univ-lille.fr/2xs/pip/troll-rs" readme = "README.md" [[bin]] path = "src/main.rs" -name = "orc-rs" +name = "troll-rs" [dependencies] diff --git a/README.md b/README.md index 6f63225..bd30065 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ -# Orc Relocatable Code tool +# Troll : Tiny Relocatable Object file format -`orc-rs` is a command to ease the process of developping (in rust) a piece of software that can be -build to an Orc Relocatable Code file format, a lightweight, binary, relocatable code format that +`troll-rs` is a command to ease the process of developping (in rust) a piece of software that can be +build to a Trol file format, a lightweight, binary, relocatable code format that can be executed from any address on an ARM Thumb architecture with flash memory. # Installation @@ -11,7 +11,7 @@ To install this software, you must have a running [Rust](https://www.rust-lang.org/learn/get-started) environnement and install it using ```sh -cargo install orc-rs +cargo install troll-rs ``` @@ -20,11 +20,11 @@ cargo install orc-rs To start working on a new project, you simply have to call ``` -orc-rs new PATH_TO_NEW_FOLDER +troll-rs new PATH_TO_NEW_FOLDER ``` -`orc-rs` will create your folder by cloning our template (hosted at -https://gitlab.univ-lille.fr/2xs/pip/orc-template) +`troll-rs` will create your folder by cloning our template (hosted at +https://gitlab.univ-lille.fr/2xs/pip/troll-template) You can then have a look at the `README.md` file in the newly created folder to get the instructions for starting your own application. -- GitLab