aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/platform/base.py
diff options
context:
space:
mode:
authorMukilan Thiyagarajan <mukilan@igalia.com>2024-12-12 12:56:16 +0530
committerGitHub <noreply@github.com>2024-12-12 07:26:16 +0000
commit7fcde1f7a30138544f8ad1b279c5e4047e643831 (patch)
tree524be9953b959288039f45f66783cc07b339b5bc /python/servo/platform/base.py
parent26f61103d62837e1f8dc9f646b9bfdd36949cd4f (diff)
downloadservo-7fcde1f7a30138544f8ad1b279c5e4047e643831.tar.gz
servo-7fcde1f7a30138544f8ad1b279c5e4047e643831.zip
build: upgrade rustc to 1.81.0 (#34270)
Signed-off-by: Mukilan Thiyagarajan <mukilan@igalia.com>
Diffstat (limited to 'python/servo/platform/base.py')
-rw-r--r--python/servo/platform/base.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/python/servo/platform/base.py b/python/servo/platform/base.py
index b328b41a0d9..6fb2f535f4e 100644
--- a/python/servo/platform/base.py
+++ b/python/servo/platform/base.py
@@ -83,8 +83,7 @@ class Base:
return False
print(" * Installing cargo-deny...")
- # cargo-deny 0.16.2 requires Rust 1.81.
- if subprocess.call(["cargo", "install", "cargo-deny", "--locked", "--version", "0.16.1"]) != 0:
+ if subprocess.call(["cargo", "install", "cargo-deny", "--locked"]) != 0:
raise EnvironmentError("Installation of cargo-deny failed.")
return True