diff options
author | Wouter Deconinck <wdconinc@gmail.com> | 2024-09-30 09:17:04 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-30 10:17:04 -0400 |
commit | 100c8b7630f752312264a9890e9b50b3146abe72 (patch) | |
tree | 1baad64af554c042a4e2ca9ccb8e87c3be4fa4f8 | |
parent | 47591f73daa401c980f5152f84e5d1228522702d (diff) | |
download | spack-100c8b7630f752312264a9890e9b50b3146abe72.tar.gz spack-100c8b7630f752312264a9890e9b50b3146abe72.tar.bz2 spack-100c8b7630f752312264a9890e9b50b3146abe72.tar.xz spack-100c8b7630f752312264a9890e9b50b3146abe72.zip |
routinator: add v0.14.0 (fix CVE) (#46649)
-rw-r--r-- | var/spack/repos/builtin/packages/routinator/package.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/routinator/package.py b/var/spack/repos/builtin/packages/routinator/package.py index e6845beec6..35d1058d05 100644 --- a/var/spack/repos/builtin/packages/routinator/package.py +++ b/var/spack/repos/builtin/packages/routinator/package.py @@ -16,6 +16,7 @@ class Routinator(Package): license("BSD-3-Clause") + version("0.14.0", sha256="861e90f395344be19880485185df47e8fd258cc583b82be702af660b466955cb") version("0.12.1", sha256="8150fe544f89205bb2d65bca46388f055cf13971d3163fe17508bf231f9ab8bc") version( "0.11.2", @@ -25,6 +26,7 @@ class Routinator(Package): depends_on("rust@1.56:", when="@0.11.2") depends_on("rust@1.63:", when="@0.12.1") + depends_on("rust@1.70:", when="@0.13.0:") def install(self, spec, prefix): cargo = which("cargo") |