From dcd220dfaf1d731d7649d24807009a7229f5e2f2 Mon Sep 17 00:00:00 2001 From: Alex Touchet Date: Fri, 25 Nov 2022 20:47:09 -0800 Subject: [PATCH] Update listed version number --- Cargo.toml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3759d7a9..59afe20f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ description = """ A logging implementation for `log` which is configured via an environment variable. """ -repository = "https://github.com/rust-cli/env_logger/" +repository = "https://github.com/rust-cli/env_logger" categories = ["development-tools::debugging"] keywords = ["logging", "log", "logger"] license = "MIT OR Apache-2.0" diff --git a/README.md b/README.md index d4b5763d..7b31421b 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Implements a logger that can be configured via environment variables. It must be added along with `log` to the project dependencies: -```bash +```console $ cargo add log env_logger ``` @@ -83,7 +83,7 @@ Tests can use the `env_logger` crate to see log messages generated during that t log = "0.4.0" [dev-dependencies] -env_logger = "0.9.0" +env_logger = "0.10.0" ``` ```rust