diff options
| -rw-r--r-- | crates/arti/src/cfg.rs | 3 | ||||
| -rw-r--r-- | crates/tor-hsservice/src/ipt_mgr.rs | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/crates/arti/src/cfg.rs b/crates/arti/src/cfg.rs index d2a990561..5dbdfbfdc 100644 --- a/crates/arti/src/cfg.rs +++ b/crates/arti/src/cfg.rs @@ -281,7 +281,8 @@ mod test { #![allow(clippy::useless_vec)] #![allow(clippy::needless_pass_by_value)] //! <!-- @@ end test lint list maintained by maint/add_warning @@ --> - + // TODO add this next lint to maint/add_warning, for all tests + #![allow(clippy::iter_overeager_cloned)] // Saves adding many individual #[cfg], or a sub-module #![cfg_attr(not(feature = "pt-client"), allow(dead_code))] diff --git a/crates/tor-hsservice/src/ipt_mgr.rs b/crates/tor-hsservice/src/ipt_mgr.rs index 542abaf4e..347dfe20f 100644 --- a/crates/tor-hsservice/src/ipt_mgr.rs +++ b/crates/tor-hsservice/src/ipt_mgr.rs @@ -186,7 +186,7 @@ struct IptRelay { ipts: Vec<Ipt>, } -/// TODO HSS surely this should be [`tor_proto::crypto::handshake::ntor::NtorSecretKey`] ? +/// TODO HSS surely this should be `tor_proto::crypto::handshake::ntor::NtorSecretKey` ? /// /// But that is private? /// Also it has a strange name, for something which contains both private and public keys. |
