diff options
author | Mukilan Thiyagarajan <mukilan@igalia.com> | 2024-12-12 12:56:16 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-12 07:26:16 +0000 |
commit | 7fcde1f7a30138544f8ad1b279c5e4047e643831 (patch) | |
tree | 524be9953b959288039f45f66783cc07b339b5bc /python/servo/platform/base.py | |
parent | 26f61103d62837e1f8dc9f646b9bfdd36949cd4f (diff) | |
download | servo-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.py | 3 |
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 |