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(round_char_boundary)]
20#![feature(never_type)]
21#![feature(let_chains)]
22#![expect(clippy::doc_markdown, reason = "FIXME: later")]
23
24pub mod error;
25pub mod error_or_notice;
26pub mod memory_manager;
27pub mod net;
28pub mod pg_extended;
29pub mod pg_field_descriptor;
30pub mod pg_message;
31pub mod pg_protocol;
32pub mod pg_response;
33pub mod pg_server;
34pub mod types;