Update dependencies and project style.
This commit is contained in:
parent
e5312509b9
commit
72fd56f313
|
@ -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
|
|
||||||
|
|
10
Cargo.toml
10
Cargo.toml
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue