sim: Remove extraneous static
According to clippy, `&'static` can just be `&` for static definitions,
which always have a static lifetime. Clean this up in the arrays in the
code, as well as generation code in imgtool.
Signed-off-by: David Brown <david.brown@linaro.org>
diff --git a/sim/src/rsa3072_pub_key-rs.txt b/sim/src/rsa3072_pub_key-rs.txt
index 983009c..16ca30d 100644
--- a/sim/src/rsa3072_pub_key-rs.txt
+++ b/sim/src/rsa3072_pub_key-rs.txt
@@ -1,5 +1,5 @@
/* Autogenerated by imgtool.py, do not edit. */
-static RSA3072_PUB_KEY: &'static [u8] = &[
+static RSA3072_PUB_KEY: &[u8] = &[
0x30, 0x82, 0x01, 0x8a, 0x02, 0x82, 0x01, 0x81,
0x00, 0xb4, 0x2c, 0x0e, 0x98, 0x58, 0x10, 0xa4,
0xa7, 0x58, 0x99, 0x7c, 0x01, 0xdd, 0x08, 0x2a,