pgwire/lib.rs
1// Copyright 2025 RisingWave Labs
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#![feature(trait_alias)]
16#![feature(iterator_try_collect)]
17#![feature(trusted_len)]
18#![feature(buf_read_has_data_left)]
19#![feature(never_type)]
20#![feature(error_generic_member_access)]
21#![feature(str_as_str)]
22#![feature(register_tool)]
23#![register_tool(rw)]
24#![expect(clippy::doc_markdown, reason = "FIXME: later")]
25
26pub mod error;
27pub mod error_or_notice;
28pub mod ldap_auth;
29pub mod memory_manager;
30pub mod net;
31pub mod pg_extended;
32pub mod pg_field_descriptor;
33pub mod pg_message;
34pub mod pg_protocol;
35pub mod pg_response;
36pub mod pg_server;
37pub mod types;