1
Fork 0
gravatar-rs/Cargo.toml

22 lines
462 B
TOML
Raw Permalink 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"
2022-09-26 10:15:37 +00:00
repository = "https://git.bauke.xyz/Holllo/gravatar-rs"
2022-09-26 10:09:40 +00:00
license = "MIT OR Apache-2.0"
2024-01-21 11:43:22 +00:00
version = "0.2.3"
2022-09-26 10:12:45 +00:00
authors = ["Holllo <helllo@holllo.org>"]
2022-04-02 12:05:23 +00:00
edition = "2021"
keywords = ["gravatar", "ivatar", "libravatar"]
[lib]
path = "source/lib.rs"
[dependencies]
md5 = "0.7.0"
2024-01-21 11:26:27 +00:00
urlencoding = "2.1.3"
2022-04-02 13:14:14 +00:00
[dev-dependencies]
2024-01-21 11:26:27 +00:00
insta = "1.34.0"