The latest version of chrono, v0.4.16, permits removing its dependency on the long-deprecated time v0.1 crate by disabling the "oldtime" feature. For backwards compatibility, chrono is leaving the "oldtime" feature on by default, so disabling the "oldtime" feature requires disabling all default features and then re-enabling the one default feature ("clock") that rust-postgres needs. Note that this change does not cause any backwards-compatibility problems for users of rust-postgres. The "oldtime" feature controls only whether `time_v01::Duration` and `chrono::Duration` are the same type and does not affect any of the APIs used by rust-postgres. |
||
---|---|---|
.circleci | ||
codegen | ||
docker | ||
postgres | ||
postgres-derive | ||
postgres-derive-test | ||
postgres-native-tls | ||
postgres-openssl | ||
postgres-protocol | ||
postgres-types | ||
test | ||
tokio-postgres | ||
.gitignore | ||
Cargo.toml | ||
docker-compose.yml | ||
LICENSE | ||
README.md | ||
THIRD_PARTY |
Rust-Postgres
PostgreSQL support for Rust.
postgres 
A native, synchronous PostgreSQL client.
tokio-postgres 
A native, asynchronous PostgreSQL client.
postgres-types 
Conversions between Rust and Postgres types.
postgres-native-tls 
TLS support for postgres and tokio-postgres via native-tls.
postgres-openssl 
TLS support for postgres and tokio-postgres via openssl.