diff --git a/src/rust/Cargo.toml b/src/rust/Cargo.toml
index 7e01aa2017fa836052955c624a0d574760e2771e..3a8cce81ed21e4e9dcf785e3aeed21db893e3f17 100644
--- a/src/rust/Cargo.toml
+++ b/src/rust/Cargo.toml
@@ -23,7 +23,7 @@ members = [
 
 [workspace.package]
 edition = "2021"
-authors = ["Maël MARTIN"]
+authors = ["Maël MARTIN <mael.martin@protonmail.com>"]
 version = "0.1.0"
 license = "MIT"
 
@@ -31,6 +31,7 @@ license = "MIT"
 lazy_static = "^1"
 thiserror = "^1"
 
+# LibC for the C ffi
 libc = { version = "0.2", default-features = false }
 
 # DBus interactions
diff --git a/src/rust/smallstring/Cargo.toml b/src/rust/smallstring/Cargo.toml
index 19a1f681e4217ab5c098e588f26be5a0baac413f..19e36a8d079220887080264a496ef26f05a661fa 100644
--- a/src/rust/smallstring/Cargo.toml
+++ b/src/rust/smallstring/Cargo.toml
@@ -1,7 +1,10 @@
 [package]
 name = "smallstring"
 version = "0.1.3"
-authors = ["Jack Fransham <moonfudgeman@hotmail.co.uk>", "Maël MARTIN"]
+authors = [
+    "Jack Fransham <moonfudgeman@hotmail.co.uk>",
+    "Maël MARTIN <mael.martin@protonmail.com>",
+]
 description = "'Small string' optimization: store small strings on the stack using smallvec"
 license = "MIT"