diff --git a/Cargo.toml b/Cargo.toml
index 3df2f267dd69d3e0f00af399d4cece82736b7a44..77c60bf3df54f557caccad20c50c7865cbf92ba6 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 6f632258f3f3d1a88183859594f18760ad85d07d..bd30065e177f258874bf54ca191b98c67c097229 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.