1
Fork 0
gravatar-rs/Cargo.toml

22 lines
458 B
TOML
Raw Normal View History

2022-04-02 12:05:23 +00:00
# https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "gravatar-rs"
description = "Gravatar image URL library"
authors = ["Holllo <helllo@holllo.cc>"]
2022-04-02 20:18:57 +00:00
version = "0.2.0"
2022-04-02 12:05:23 +00:00
license = "MIT OR Apache-2.0"
repository = "https://github.com/Holllo/gravatar-rs"
edition = "2021"
keywords = ["gravatar", "ivatar", "libravatar"]
[lib]
path = "source/lib.rs"
[dependencies]
md5 = "0.7.0"
urlencoding = "2.1.0"
2022-04-02 13:14:14 +00:00
[dev-dependencies]
insta = "1.14.0"