Skip to main content

pgwire/
lib.rs

1// Copyright 2022 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(trusted_len)]
17#![feature(error_generic_member_access)]
18#![feature(str_as_str)]
19#![feature(register_tool)]
20#![register_tool(rw)]
21#![expect(clippy::doc_markdown, reason = "FIXME: later")]
22
23pub mod error;
24pub mod error_or_notice;
25pub mod ldap_auth;
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;