azure_devops_rust_api/
lib.rs1#[cfg(feature = "accounts")]
18pub mod accounts;
19#[cfg(feature = "approvals_and_checks")]
21pub mod approvals_and_checks;
22#[cfg(feature = "artifacts")]
24pub mod artifacts;
25#[cfg(feature = "artifacts_package_types")]
27pub mod artifacts_package_types;
28#[cfg(feature = "audit")]
30pub mod audit;
31#[cfg(feature = "build")]
33pub mod build;
34#[cfg(feature = "core")]
36pub mod core;
37#[cfg(feature = "dashboard")]
39pub mod dashboard;
40#[cfg(feature = "distributed_task")]
42pub mod distributed_task;
43#[cfg(feature = "extension_management")]
45pub mod extension_management;
46#[cfg(feature = "favorite")]
48pub mod favorite;
49#[cfg(feature = "git")]
51pub mod git;
52#[cfg(feature = "graph")]
54pub mod graph;
55#[cfg(feature = "hooks")]
57pub mod hooks;
58#[cfg(feature = "ims")]
60pub mod ims;
61#[cfg(feature = "member_entitlement_management")]
63pub mod member_entitlement_management;
64#[cfg(feature = "operations")]
66pub mod operations;
67#[cfg(feature = "permissions_report")]
69pub mod permissions_report;
70#[cfg(feature = "pipelines")]
72pub mod pipelines;
73#[cfg(feature = "policy")]
75pub mod policy;
76#[cfg(feature = "processadmin")]
78pub mod processadmin;
79#[cfg(feature = "processes")]
81pub mod processes;
82#[cfg(feature = "profile")]
84pub mod profile;
85#[cfg(feature = "release")]
87pub mod release;
88#[cfg(feature = "search")]
90pub mod search;
91#[cfg(feature = "security")]
93pub mod security;
94#[cfg(feature = "security_roles")]
96pub mod security_roles;
97#[cfg(feature = "service_endpoint")]
99pub mod service_endpoint;
100#[cfg(feature = "status")]
102pub mod status;
103#[cfg(feature = "symbol")]
105pub mod symbol;
106#[cfg(feature = "test")]
108pub mod test;
109#[cfg(feature = "test_plan")]
111pub mod test_plan;
112#[cfg(feature = "test_results")]
114pub mod test_results;
115#[cfg(feature = "tfvc")]
117pub mod tfvc;
118#[cfg(feature = "token_admin")]
120pub mod token_admin;
121#[cfg(feature = "tokens")]
123pub mod tokens;
124#[cfg(feature = "wiki")]
126pub mod wiki;
127#[cfg(feature = "wit")]
129pub mod wit;
130#[cfg(feature = "work")]
132pub mod work;
133
134mod auth;
135pub use auth::Credential;
136
137pub mod date_time;
138pub mod headers;
139pub mod telemetry;
140
141pub(crate) mod serde;
142
143pub const ADO_SCOPE: &str = "499b84ac-1321-427f-aa17-267ca6975798/.default";