Skip to content

Commit 7fd4524

Browse files
authored
Merge pull request #1221 from jayhwkns/main
Correct `dotenv` dependency to `dotenvy`
2 parents 90bb435 + aec6a30 commit 7fd4524

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

auth/simple-auth-server/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
- [rust-argon2](https://crates.io/crates/rust-argon2) // crate for hashing passwords using the cryptographically-secure Argon2 hashing algorithm.
2222
- [chrono](https://crates.io/crates/chrono) // Date and time library for Rust.
2323
- [diesel](https://crates.io/crates/diesel) // A safe, extensible ORM and Query Builder for PostgreSQL, SQLite, and MySQL.
24-
- [dotenv](https://crates.io/crates/dotenv) // A dotenv implementation for Rust.
24+
- [dotenvy](https://crates.io/crates/dotenvy) // A well-maintained dotenv implementation for Rust.
2525
- [derive_more](https://crates.io/crates/derive_more) // Convenience macros to derive traits easily
2626
- [env_logger](https://crates.io/crates/env_logger) // A logging implementation for log which is configured via an environment variable.
2727
- [futures](https://crates.io/crates/futures) // An implementation of futures and streams featuring zero allocations, composability, and iterator-like interfaces.

databases/postgres/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
- `tokio_postgres`
66
- use of `tokio_pg_mapper` for postgres data mapping
77
- `deadpool_postgres` for connection pooling
8-
- `dotenv` + `config` for configuration
8+
- `dotenvy` + `confik` for configuration
99

1010
## Instructions
1111

0 commit comments

Comments
 (0)