couchbase_core/
lib.rs

1/*
2 *
3 *  * Copyright (c) 2025 Couchbase, Inc.
4 *  *
5 *  * Licensed under the Apache License, Version 2.0 (the "License");
6 *  * you may not use this file except in compliance with the License.
7 *  * You may obtain a copy of the License at
8 *  *
9 *  *    http://www.apache.org/licenses/LICENSE-2.0
10 *  *
11 *  * Unless required by applicable law or agreed to in writing, software
12 *  * distributed under the License is distributed on an "AS IS" BASIS,
13 *  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 *  * See the License for the specific language governing permissions and
15 *  * limitations under the License.
16 *
17 */
18
19extern crate core;
20#[macro_use]
21extern crate lazy_static;
22
23pub mod address;
24pub mod agent;
25pub mod agent_ops;
26pub mod auth_mechanism;
27pub mod authenticator;
28pub mod cbconfig;
29mod collection_resolver_cached;
30mod collection_resolver_memd;
31mod collectionresolver;
32mod compressionmanager;
33mod configfetcher;
34mod configmanager;
35mod configparser;
36mod configwatcher;
37pub mod connection_state;
38mod crudcomponent;
39mod diagnosticscomponent;
40mod errmap;
41mod errmapcomponent;
42pub mod error;
43pub mod features;
44mod helpers;
45mod httpcomponent;
46pub mod httpx;
47mod kvclient;
48mod kvclient_ops;
49mod kvclientmanager;
50mod kvclientpool;
51pub mod memdx;
52pub mod mgmtcomponent;
53pub mod mgmtx;
54pub mod mutationtoken;
55mod networktypeheuristic;
56mod nmvbhandler;
57pub mod on_behalf_of;
58pub mod ondemand_agentmanager;
59pub mod options;
60mod parsedconfig;
61pub mod querycomponent;
62pub mod queryx;
63pub mod results;
64pub mod retry;
65pub mod retrybesteffort;
66pub mod retryfailfast;
67mod scram;
68pub mod searchcomponent;
69pub mod searchx;
70pub mod service_type;
71mod tls_config;
72mod util;
73mod vbucketmap;
74mod vbucketrouter;
75
76#[cfg(feature = "rustls-tls")]
77pub mod insecure_certverfier;
78pub mod orphan_reporter;