summaryrefslogtreecommitdiff
path: root/crates/arti-client/examples/advanced_isolation.rs
Commit message (Collapse)AuthorAgeFilesLines
* Add unknown-lints exception to examplesNick Mathewson2024-03-131-0/+1
| | | | | We need this to avoid warnings when runnning non-nightly clippy on these examples.
* Run maint/add_warning.Nick Mathewson2024-03-131-0/+1
|
* Run maint/add_warning to add lint block everywhereIan Jackson2023-08-231-0/+1
|
* Run maint/add_warning to actually apply new lint allowsIan Jackson2023-07-101-0/+1
|
* Allow clippy::unchecked_duration_subtraction in testsNick Mathewson2023-01-271-0/+1
| | | | | This panics on error, and we're fine with a panic on misbehavior in tests.
* Disable clippy::unlinlined-format-argsNick Mathewson2023-01-271-5/+1
| | | | | | | | This warning kind of snuck up on us! (See #748) For now, let's disable it. (I've cleaned it up in a couple of examples, since those are meant to be more idiomatic and user-facing.) Closes #748.
* Spelling fixes and normalizations on some high-level cratesNick Mathewson2022-11-071-2/+2
|
* Allow "clippy::single_char_pattern" in tests.Ian Jackson2022-10-121-0/+1
| | | | | | | This lint exists for perf reasons, and this is rarely relevant in tests. Using double quoted str is generally cognitively less burdensome.
* clippy: Consolidate many lints in maint/add_warningIan Jackson2022-06-241-0/+3
| | | | | | Found these by disabling the nightly dbg macro special case. Now, we have a mechanism for globally adding suppressions to tests, we can use that instead.
* clippy: Add standard test lint block to several examplesIan Jackson2022-06-241-0/+6
|
* mention isolation is an advanced topic and most usage don't require ↵trinity-1686a2022-05-241-0/+198
implementing the trait