1
Fork 0

Update dependencies and project style.

This commit is contained in:
Bauke 2022-09-26 12:09:40 +02:00
parent e5312509b9
commit 72fd56f313
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
2 changed files with 8 additions and 15 deletions

13
.gitignore vendored
View File

@ -1,14 +1,7 @@
# Generated by Cargo # Generated by Cargo
# will have compiled files and executables Cargo.lock
debug/ debug/
target/ target/
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries # Code coverage results
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html coverage/
Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk
# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb

View File

@ -3,10 +3,10 @@
[package] [package]
name = "gravatar-rs" name = "gravatar-rs"
description = "Gravatar image URL library" description = "Gravatar image URL library"
authors = ["Holllo <helllo@holllo.cc>"]
version = "0.2.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Holllo/gravatar-rs" repository = "https://github.com/Holllo/gravatar-rs"
license = "MIT OR Apache-2.0"
version = "0.2.0"
authors = ["Holllo <helllo@holllo.cc>"]
edition = "2021" edition = "2021"
keywords = ["gravatar", "ivatar", "libravatar"] keywords = ["gravatar", "ivatar", "libravatar"]
@ -15,7 +15,7 @@ path = "source/lib.rs"
[dependencies] [dependencies]
md5 = "0.7.0" md5 = "0.7.0"
urlencoding = "2.1.0" urlencoding = "2.1.2"
[dev-dependencies] [dev-dependencies]
insta = "1.14.0" insta = "1.20.0"