# HG changeset patch # User Valentin Gatien-Baron # Date 1589732583 14400 # 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 -r 3e09d22a0bf5 -r 47787a48f469 setup.py --- a/setup.py Mon May 11 21:54:05 2020 +0200 +++ b/setup.py Sun May 17 12:23:03 2020 -0400 @@ -1396,7 +1396,7 @@ env['HOME'] = pwd.getpwuid(os.getuid()).pw_dir - cargocmd = ['cargo', 'rustc', '-vv', '--release'] + cargocmd = ['cargo', 'rustc', '--release'] feature_flags = []