# HG changeset patch # User Valentin Gatien-Baron # Date 2020-05-17 16:23:03 # Node ID 47787a48f469d80a1c8328fe839980bffeaa5038 # Parent 3e09d22a0bf5ded4219fe021b00c280abd62cd1c setup: stop asking cargo to spam It prints this kind of stuff by default: Compiling regex v1.3.6 Compiling rand v0.7.3 Compiling crossbeam-deque v0.7.3 which is way better than we ask for before this change, which is screen after screen of compilation commands and irrelevant warnings in crates we use. Differential Revision: https://phab.mercurial-scm.org/D8537 diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -1396,7 +1396,7 @@ class RustExtension(Extension): env['HOME'] = pwd.getpwuid(os.getuid()).pw_dir - cargocmd = ['cargo', 'rustc', '-vv', '--release'] + cargocmd = ['cargo', 'rustc', '--release'] feature_flags = []