From 72fd56f313fde0b54e25a04f5c62d9c4b9136faa Mon Sep 17 00:00:00 2001 From: Bauke Date: Mon, 26 Sep 2022 12:09:40 +0200 Subject: [PATCH] Update dependencies and project style. --- .gitignore | 13 +++---------- Cargo.toml | 10 +++++----- 2 files changed, 8 insertions(+), 15 deletions(-) diff --git a/.gitignore b/.gitignore index 6985cf1..c31fef4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,14 +1,7 @@ # Generated by Cargo -# will have compiled files and executables +Cargo.lock debug/ target/ -# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries -# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html -Cargo.lock - -# These are backup files generated by rustfmt -**/*.rs.bk - -# MSVC Windows builds of rustc generate these, which store debugging information -*.pdb +# Code coverage results +coverage/ diff --git a/Cargo.toml b/Cargo.toml index ffe3626..ec26d5a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,10 +3,10 @@ [package] name = "gravatar-rs" description = "Gravatar image URL library" -authors = ["Holllo "] -version = "0.2.0" -license = "MIT OR Apache-2.0" repository = "https://github.com/Holllo/gravatar-rs" +license = "MIT OR Apache-2.0" +version = "0.2.0" +authors = ["Holllo "] edition = "2021" keywords = ["gravatar", "ivatar", "libravatar"] @@ -15,7 +15,7 @@ path = "source/lib.rs" [dependencies] md5 = "0.7.0" -urlencoding = "2.1.0" +urlencoding = "2.1.2" [dev-dependencies] -insta = "1.14.0" +insta = "1.20.0"