1
Fork 0

Update Holllo email.

This commit is contained in:
Bauke 2022-09-26 12:12:45 +02:00
parent a73c981a82
commit d38c3bbebd
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
7 changed files with 13 additions and 13 deletions

View File

@ -6,7 +6,7 @@ description = "Gravatar image URL library"
repository = "https://github.com/Holllo/gravatar-rs"
license = "MIT OR Apache-2.0"
version = "0.2.0"
authors = ["Holllo <helllo@holllo.cc>"]
authors = ["Holllo <helllo@holllo.org>"]
edition = "2021"
keywords = ["gravatar", "ivatar", "libravatar"]

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2022 Holllo <helllo@holllo.cc>
Copyright (c) 2022 Holllo <helllo@holllo.org>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@ -17,11 +17,11 @@
//!
//! let generator = Generator::default();
//!
//! let gravatar_url = generator.generate("helllo@holllo.cc");
//! let gravatar_url = generator.generate("helllo@holllo.org");
//!
//! assert_eq!(
//! gravatar_url,
//! "https://www.gravatar.com/avatar/ebff9105dce4954b1bdb57fdab079ff3"
//! "https://www.gravatar.com/avatar/e9a2c03d607ec80a5b725ad42c19ee36"
//! );
//! ```
//!
@ -79,11 +79,11 @@ impl Generator {
/// ```rust
/// use gravatar_rs::Generator;
///
/// let hash = Generator::hash_email("helllo@holllo.cc");
/// let hash = Generator::hash_email("helllo@holllo.org");
///
/// assert_eq!(
/// hash,
/// "ebff9105dce4954b1bdb57fdab079ff3"
/// "e9a2c03d607ec80a5b725ad42c19ee36"
/// );
/// ```
///

View File

@ -1,7 +1,7 @@
use gravatar_rs::Generator;
const BAUKE_EMAIL: &str = "me@bauke.xyz";
const HOLLLO_EMAIL: &str = "helllo@holllo.cc";
const HOLLLO_EMAIL: &str = "helllo@holllo.org";
#[test]
fn test_hash_email() {

View File

@ -4,5 +4,5 @@ expression: urls
---
[
"https://cdn.libravatar.org/avatar/ecd836ee843ff0ab75d4720bd40c2baf.jpg?d=identicon&f=y&s=128&r=pg",
"https://cdn.libravatar.org/avatar/ebff9105dce4954b1bdb57fdab079ff3.jpg?d=identicon&f=y&s=128&r=pg",
"https://cdn.libravatar.org/avatar/e9a2c03d607ec80a5b725ad42c19ee36.jpg?d=identicon&f=y&s=128&r=pg",
]

View File

@ -7,14 +7,14 @@ expression: snapshot
"generate-gravatar",
[
"https://www.gravatar.com/avatar/ecd836ee843ff0ab75d4720bd40c2baf",
"https://www.gravatar.com/avatar/ebff9105dce4954b1bdb57fdab079ff3",
"https://www.gravatar.com/avatar/e9a2c03d607ec80a5b725ad42c19ee36",
],
),
(
"generate-libravatar",
[
"https://cdn.libravatar.org/avatar/ecd836ee843ff0ab75d4720bd40c2baf",
"https://cdn.libravatar.org/avatar/ebff9105dce4954b1bdb57fdab079ff3",
"https://cdn.libravatar.org/avatar/e9a2c03d607ec80a5b725ad42c19ee36",
],
),
]

View File

@ -17,14 +17,14 @@ expression: snapshot
),
(
"hash-holllo",
"ebff9105dce4954b1bdb57fdab079ff3",
"e9a2c03d607ec80a5b725ad42c19ee36",
),
(
"hash-holllo-whitespace",
"ebff9105dce4954b1bdb57fdab079ff3",
"e9a2c03d607ec80a5b725ad42c19ee36",
),
(
"hash-holllo-casing",
"ebff9105dce4954b1bdb57fdab079ff3",
"e9a2c03d607ec80a5b725ad42c19ee36",
),
]