diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2024-11-06 13:03:45 +0100 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2024-12-10 18:44:06 +0100 |
| commit | 90868c3dcec755f567426d1fad64e7611053778e (patch) | |
| tree | c8f86f150afbd9338a8b7ad348ae88291da28347 /rust/qemu-api/meson.build | |
| parent | 97ed1e9c8e2b0744508ef61cac8a23bb1e107820 (diff) | |
| download | focaccia-qemu-90868c3dcec755f567426d1fad64e7611053778e.tar.gz focaccia-qemu-90868c3dcec755f567426d1fad64e7611053778e.zip | |
rust: cargo: store desired warning levels in workspace Cargo.toml
An extra benefit of workspaces is that they allow to place lint level settings in a single Cargo.toml; the settings are then inherited by packages in the workspace. Correspondingly, teach rustc_args.py to get the unexpected_cfgs configuration from the workspace Cargo.toml. Note that it is still possible to allow or deny warnings per crate or module, via the #![] attribute syntax. The rust/qemu-api/src/bindings.rs file is an example. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'rust/qemu-api/meson.build')
| -rw-r--r-- | rust/qemu-api/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/qemu-api/meson.build b/rust/qemu-api/meson.build index 1ed79672cc..d719c13f46 100644 --- a/rust/qemu-api/meson.build +++ b/rust/qemu-api/meson.build @@ -1,5 +1,5 @@ _qemu_api_cfg = run_command(rustc_args, - '--config-headers', config_host_h, '--features', '--lints', files('Cargo.toml'), + '--config-headers', config_host_h, '--features', files('Cargo.toml'), capture: true, check: true).stdout().strip().splitlines() # _qemu_api_cfg += ['--cfg', 'feature="allocator"'] |