File tree 4 files changed +9
-1
lines changed
4 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 84
84
- run : docker compose up -d
85
85
- uses : sfackler/actions/rustup@master
86
86
with :
87
- version : 1.75 .0
87
+ version : 1.81 .0
88
88
- run : echo "version=$(rustc --version)" >> $GITHUB_OUTPUT
89
89
id : rust-version
90
90
- uses : actions/cache@v3
Original file line number Diff line number Diff line change @@ -491,6 +491,8 @@ impl WrongType {
491
491
/// | `chrono::DateTime<FixedOffset>` | TIMESTAMP WITH TIME ZONE |
492
492
/// | `chrono::NaiveDate` | DATE |
493
493
/// | `chrono::NaiveTime` | TIME |
494
+ /// | `cidr::IpCidr` | CIDR |
495
+ /// | `cidr::IpInet` | INET |
494
496
/// | `time::PrimitiveDateTime` | TIMESTAMP |
495
497
/// | `time::OffsetDateTime` | TIMESTAMP WITH TIME ZONE |
496
498
/// | `time::Date` | DATE |
@@ -842,6 +844,8 @@ pub enum IsNull {
842
844
/// | `chrono::DateTime<FixedOffset>` | TIMESTAMP WITH TIME ZONE |
843
845
/// | `chrono::NaiveDate` | DATE |
844
846
/// | `chrono::NaiveTime` | TIME |
847
+ /// | `cidr::IpCidr` | CIDR |
848
+ /// | `cidr::IpInet` | INET |
845
849
/// | `time::PrimitiveDateTime` | TIMESTAMP |
846
850
/// | `time::OffsetDateTime` | TIMESTAMP WITH TIME ZONE |
847
851
/// | `time::Date` | DATE |
Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ circle-ci = { repository = "sfackler/rust-postgres" }
24
24
array-impls = [" tokio-postgres/array-impls" ]
25
25
with-bit-vec-0_6 = [" tokio-postgres/with-bit-vec-0_6" ]
26
26
with-chrono-0_4 = [" tokio-postgres/with-chrono-0_4" ]
27
+ with-cidr-0_2 = [" tokio-postgres/with-cidr-0_2" ]
28
+ with-cidr-0_3 = [" tokio-postgres/with-cidr-0_3" ]
27
29
with-eui48-0_4 = [" tokio-postgres/with-eui48-0_4" ]
28
30
with-eui48-1 = [" tokio-postgres/with-eui48-1" ]
29
31
with-geo-types-0_6 = [" tokio-postgres/with-geo-types-0_6" ]
Original file line number Diff line number Diff line change @@ -30,6 +30,8 @@ runtime = ["tokio/net", "tokio/time"]
30
30
array-impls = [" postgres-types/array-impls" ]
31
31
with-bit-vec-0_6 = [" postgres-types/with-bit-vec-0_6" ]
32
32
with-chrono-0_4 = [" postgres-types/with-chrono-0_4" ]
33
+ with-cidr-0_2 = [" postgres-types/with-cidr-0_2" ]
34
+ with-cidr-0_3 = [" postgres-types/with-cidr-0_3" ]
33
35
with-eui48-0_4 = [" postgres-types/with-eui48-0_4" ]
34
36
with-eui48-1 = [" postgres-types/with-eui48-1" ]
35
37
with-geo-types-0_6 = [" postgres-types/with-geo-types-0_6" ]
You can’t perform that action at this time.
0 commit comments