We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 166ea3d commit 2c00190Copy full SHA for 2c00190
noxfile.py
@@ -30,6 +30,8 @@ def __init__(self, session: nox.Session):
30
name, version = found.groups()
31
cargo_bins.setdefault(name, version)
32
self.cargo_bins = cargo_bins
33
+ for dep, ver in cargo_bins.items():
34
+ ci_logger.info("Found %s: %s" % (dep, ver))
35
self.cargo_install_cmd: tuple[str, ...] = ("cargo", "install")
36
37
installed_path = Path("~/.cargo/bin")
0 commit comments