1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#[cfg(feature = "accounts")]
pub mod accounts;
#[cfg(feature = "artifacts")]
pub mod artifacts;
#[cfg(feature = "artifacts_package_types")]
pub mod artifacts_package_types;
#[cfg(feature = "audit")]
pub mod audit;
#[cfg(feature = "build")]
pub mod build;
#[cfg(feature = "clt")]
pub mod clt;
#[cfg(feature = "core")]
pub mod core;
#[cfg(feature = "dashboard")]
pub mod dashboard;
#[cfg(feature = "distributed_task")]
pub mod distributed_task;
#[cfg(feature = "extension_management")]
pub mod extension_management;
#[cfg(feature = "git")]
pub mod git;
#[cfg(feature = "graph")]
pub mod graph;
#[cfg(feature = "hooks")]
pub mod hooks;
#[cfg(feature = "ims")]
pub mod ims;
#[cfg(feature = "member_entitlement_management")]
pub mod member_entitlement_management;
#[cfg(feature = "operations")]
pub mod operations;
#[cfg(feature = "permissions_report")]
pub mod permissions_report;
#[cfg(feature = "pipelines")]
pub mod pipelines;
#[cfg(feature = "policy")]
pub mod policy;
#[cfg(feature = "processadmin")]
pub mod processadmin;
#[cfg(feature = "processes")]
pub mod processes;
#[cfg(feature = "profile")]
pub mod profile;
#[cfg(feature = "release")]
pub mod release;
#[cfg(feature = "search")]
pub mod search;
#[cfg(feature = "security")]
pub mod security;
#[cfg(feature = "service_endpoint")]
pub mod service_endpoint;
#[cfg(feature = "status")]
pub mod status;
#[cfg(feature = "symbol")]
pub mod symbol;
#[cfg(feature = "test")]
pub mod test;
#[cfg(feature = "test_plan")]
pub mod test_plan;
#[cfg(feature = "test_results")]
pub mod test_results;
#[cfg(feature = "tfvc")]
pub mod tfvc;
#[cfg(feature = "token_admin")]
pub mod token_admin;
#[cfg(feature = "wiki")]
pub mod wiki;
#[cfg(feature = "wit")]
pub mod wit;
#[cfg(feature = "work")]
pub mod work;
mod auth;
pub use auth::Credential;