Skip to content

Commit 82c9e00

Browse files
committed
Revert "postgres-types feature implementation (rkyv#532)"
This reverts commit 158a5cc.
1 parent b83701d commit 82c9e00

File tree

5 files changed

+1
-172
lines changed

5 files changed

+1
-172
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- bytecheck
5252
external:
5353
- ''
54-
- hashbrown indexmap smallvec smol_str arrayvec tinyvec uuid bytes thin-vec triomphe postgres-types
54+
- hashbrown indexmap smallvec smol_str arrayvec tinyvec uuid bytes thin-vec triomphe
5555

5656
steps:
5757
- uses: actions/checkout@v4

rkyv/Cargo.toml

-4
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@ tinyvec = { version = "1.5", optional = true, default-features = false }
4242
triomphe = { version = "0.1", optional = true, default-features = false }
4343
uuid = { version = "1.3", optional = true, default-features = false }
4444

45-
postgres-types = { version = "0.2", optional = true, default-features = false }
46-
postgres-protocol = { version = "0.6.7", optional = true, default-features = false }
47-
4845
[features]
4946
default = ["std", "bytecheck"]
5047
little_endian = []
@@ -63,7 +60,6 @@ hashbrown = ["dep:hashbrown"]
6360
indexmap = ["dep:indexmap", "alloc"]
6461
triomphe = ["dep:triomphe", "alloc"]
6562
uuid = ["dep:uuid", "bytecheck?/uuid"]
66-
postgres-types = ["std", "dep:postgres-types", "bytes", "dep:postgres-protocol"]
6763

6864
[package.metadata.docs.rs]
6965
features = ["bytecheck"]

rkyv/src/impls/mod.rs

-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ mod hashbrown;
2323

2424
#[cfg(feature = "indexmap")]
2525
mod indexmap;
26-
#[cfg(feature = "postgres-types")]
27-
mod pg_types;
2826
#[cfg(feature = "smallvec")]
2927
mod smallvec;
3028
#[cfg(feature = "smol_str")]

rkyv/src/impls/pg_types.rs

-163
This file was deleted.

rkyv/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,6 @@
151151
//! - [`tinyvec`](https://docs.rs/tinyvec)
152152
//! - [`triomphe`](https://docs.rs/triomphe)
153153
//! - [`uuid`](https://docs.rs/uuid)
154-
//! - [`postgres-types`](https://docs.rs/postgres-types) (`ToSql` implentations
155-
//! on rkyv types)
156154
//!
157155
//! ## Compatibility
158156
//!

0 commit comments

Comments
 (0)