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"
repository = "https://github.com/Holllo/gravatar-rs"
2022-09-26 10:09:40 +00:00
license = "MIT OR Apache-2.0"
version = "0.2.0"
authors = ["Holllo <helllo@holllo.cc>"]
2022-04-02 12:05:23 +00:00
edition = "2021"
keywords = ["gravatar", "ivatar", "libravatar"]
[lib]
path = "source/lib.rs"
[dependencies]
md5 = "0.7.0"
2022-09-26 10:09:40 +00:00
urlencoding = "2.1.2"
2022-04-02 13:14:14 +00:00
[dev-dependencies]
2022-09-26 10:09:40 +00:00
insta = "1.20.0"