diff options
author | Vincent Ambo <mail@tazj.in> | 2023-11-05T18·02+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-11-05T20·28+0000 |
commit | 87d3fac6762b5b2f71d766eadf652d7762213d2b (patch) | |
tree | e7e8e4e7246c20e4f797cec7c31fa0f913e2ee15 /tvix/eval/src/value | |
parent | 2e1399698b366af4a1579cdcbd9363633b8bc632 (diff) |
chore(tvix): add missing clippy attributes & config r/6958
For cases where clippy lints don't apply to us, or something is misfiring, add appropriate configuration. Relates to b/321. Change-Id: I0af453910b4a4112bf685b2a8e9a73de10ec87ea Reviewed-on: https://cl.tvl.fyi/c/depot/+/9965 Reviewed-by: flokli <flokli@flokli.de> Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/eval/src/value')
-rw-r--r-- | tvix/eval/src/value/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/eval/src/value/mod.rs b/tvix/eval/src/value/mod.rs index 3a9dcf2c8da1..e4f8bf0fd824 100644 --- a/tvix/eval/src/value/mod.rs +++ b/tvix/eval/src/value/mod.rs @@ -469,6 +469,7 @@ impl Value { // Special-case for derivation comparisons: If both attribute sets // have `type = derivation`, compare them by `outPath`. + #[allow(clippy::single_match)] // might need more match arms later match (a1.select("type"), a2.select("type")) { (Some(v1), Some(v2)) => { let s1 = generators::request_force(&co, v1.clone()).await.to_str(); |