1
//! A minimal client for connecting to the tor network
2
//!
3
//! See the [crate-level documentation](::arti).
4

            
5
// @@ begin lint list maintained by maint/add_warning @@
6
#![allow(renamed_and_removed_lints)] // @@REMOVE_WHEN(ci_arti_stable)
7
#![allow(unknown_lints)] // @@REMOVE_WHEN(ci_arti_nightly)
8
#![warn(missing_docs)]
9
#![warn(noop_method_call)]
10
#![warn(unreachable_pub)]
11
#![warn(clippy::all)]
12
#![deny(clippy::await_holding_lock)]
13
#![deny(clippy::cargo_common_metadata)]
14
#![deny(clippy::cast_lossless)]
15
#![deny(clippy::checked_conversions)]
16
#![warn(clippy::cognitive_complexity)]
17
#![deny(clippy::debug_assert_with_mut_call)]
18
#![deny(clippy::exhaustive_enums)]
19
#![deny(clippy::exhaustive_structs)]
20
#![deny(clippy::expl_impl_clone_on_copy)]
21
#![deny(clippy::fallible_impl_from)]
22
#![deny(clippy::implicit_clone)]
23
#![deny(clippy::large_stack_arrays)]
24
#![warn(clippy::manual_ok_or)]
25
#![deny(clippy::missing_docs_in_private_items)]
26
#![warn(clippy::needless_borrow)]
27
#![warn(clippy::needless_pass_by_value)]
28
#![warn(clippy::option_option)]
29
#![deny(clippy::print_stderr)]
30
#![deny(clippy::print_stdout)]
31
#![warn(clippy::rc_buffer)]
32
#![deny(clippy::ref_option_ref)]
33
#![warn(clippy::semicolon_if_nothing_returned)]
34
#![warn(clippy::trait_duplication_in_bounds)]
35
#![deny(clippy::unchecked_time_subtraction)]
36
#![deny(clippy::unnecessary_wraps)]
37
#![warn(clippy::unseparated_literal_suffix)]
38
#![deny(clippy::unwrap_used)]
39
#![deny(clippy::mod_module_files)]
40
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
41
#![allow(clippy::uninlined_format_args)]
42
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
43
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
44
#![allow(clippy::needless_raw_string_hashes)] // complained-about code is fine, often best
45
#![allow(clippy::needless_lifetimes)] // See arti#1765
46
#![allow(mismatched_lifetime_syntaxes)] // temporary workaround for arti#2060
47
#![allow(clippy::collapsible_if)] // See arti#2342
48
#![deny(clippy::unused_async)]
49
//! <!-- @@ end lint list maintained by maint/add_warning @@ -->
50

            
51
177
fn main() {
52
177
    arti::main();
53
177
}