[sw] Bump rust version to 1.60.0

Signed-off-by: Alphan Ulusoy <alphan@google.com>
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index d419033..6c39835 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -14,7 +14,7 @@
   OPENOCD_VERSION: 0.11.0
   TOOLCHAIN_PATH: /opt/buildcache/riscv
   VERIBLE_VERSION: v0.0-2135-gb534c1fe
-  RUST_VERSION: 1.58.0
+  RUST_VERSION: 1.60.0
   # Release tag from https://github.com/lowRISC/lowrisc-toolchains/releases
   TOOLCHAIN_VERSION: 20220210-1
   # This controls where builds happen, and gets picked up by build_consts.sh.
diff --git a/third_party/rust/deps.bzl b/third_party/rust/deps.bzl
index dde5ecb..b8c7b8a 100644
--- a/third_party/rust/deps.bzl
+++ b/third_party/rust/deps.bzl
@@ -12,7 +12,7 @@
 def rust_deps():
     rust_repositories(
         edition = "2018",
-        version = "1.58.0",
+        version = "1.60.0",
     )
     raze_fetch_remote_crates()
     ftdi_fetch_remote_crates()
diff --git a/tool_requirements.py b/tool_requirements.py
index d4b189d..e952d39 100644
--- a/tool_requirements.py
+++ b/tool_requirements.py
@@ -38,7 +38,7 @@
         'as_needed': True
     },
     'rust': {
-        'min_version': '1.58.0',
+        'min_version': '1.60.0',
         'as_needed': True
     },
     'vivado': {
diff --git a/util/container/Dockerfile b/util/container/Dockerfile
index 11cb0ae..847f704 100644
--- a/util/container/Dockerfile
+++ b/util/container/Dockerfile
@@ -11,7 +11,7 @@
 ARG VERIBLE_VERSION=v0.0-2135-gb534c1fe
 # The RISCV toolchain version should match the release tag used in GitHub.
 ARG RISCV_TOOLCHAIN_TAR_VERSION=20220210-1
-ARG RUST_VERSION=1.58.0
+ARG RUST_VERSION=1.60.0
 
 # Main container image.
 FROM ubuntu:18.04 AS opentitan