Skip to content

Commit f9cf06c

Browse files
committed
Update hashavatar to 0.4.2 and migrate URLs to GitHub
1 parent 86113ad commit f9cf06c

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ documentation = "https://github.com/valkyoth/hashavatar-api"
1111
[dependencies]
1212
aws-config = { version = "1.8.16", default-features = false, features = ["rt-tokio"] }
1313
aws-sdk-s3 = { version = "1.131.0", default-features = false, features = ["rt-tokio", "sigv4a"] }
14-
hashavatar = "0.4.1"
14+
hashavatar = "0.4.2"
1515
image = { version = "0.25.10", default-features = false, features = ["png"] }
1616
axum = { version = "0.8.9", default-features = false, features = ["http1", "tokio", "query", "json"] }
1717
serde = { version = "1.0.228", default-features = false, features = ["derive"] }

Cargo.toml.split-template

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ version = "0.4.0"
44
edition = "2024"
55
description = "Public avatar API and landing page for hashavatar"
66
license = "EUPL-1.2"
7-
repository = "https://repoheim.eu/valkyoth/hashavatar-api"
8-
homepage = "https://repoheim.eu/valkyoth/hashavatar-api"
9-
documentation = "https://repoheim.eu/valkyoth/hashavatar-api"
7+
repository = "https://github.com/valkyoth/hashavatar-api"
8+
homepage = "https://github.com/valkyoth/hashavatar-api"
9+
documentation = "https://github.com/valkyoth/hashavatar-api"
1010

1111
[dependencies]
12-
hashavatar = "0.4.1"
12+
hashavatar = "0.4.2"
1313
axum = { version = "0.8.9", default-features = false, features = ["http1", "tokio", "query", "json"] }
1414
serde = { version = "1.0.228", default-features = false, features = ["derive"] }
1515
serde_json = { version = "1.0.149", default-features = false, features = ["std"] }

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
This project is licensed under the European Union Public Licence v1.2 (`EUPL-1.2`).
22

33
Repository:
4-
- https://repoheim.eu/valkyoth/hashavatar-api
4+
- https://github.com/valkyoth/hashavatar-api
55

66
Official licence text:
77
- https://interoperable-europe.ec.europa.eu/collection/eupl/eupl-text-eupl-12

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const DEFAULT_PORT: u16 = 8080;
2929
const DEFAULT_ID: &str = "cat@hashavatar.app";
3030
const SITE_NAME: &str = "hashavatar.app";
3131
const SITE_URL: &str = "https://hashavatar.app";
32-
const REPOSITORY_URL: &str = "https://repoheim.eu/valkyoth/hashavatar-api";
32+
const REPOSITORY_URL: &str = "https://github.com/valkyoth/hashavatar-api";
3333
const CRATE_URL: &str = "https://crates.io/crates/hashavatar/";
3434
const DEFAULT_NAMESPACE_TENANT: &str = "public";
3535
const DEFAULT_NAMESPACE_STYLE: &str = "v2";
@@ -2074,7 +2074,7 @@ fn render_privacy_html() -> String {
20742074
</section>
20752075
<section class="card">
20762076
<h2>Repository And Crate</h2>
2077-
<p>You can inspect the implementation in the public <a class="inline-link" href="https://repoheim.eu/valkyoth/hashavatar-api" target="_blank" rel="noreferrer">API repository</a> and the reusable avatar renderer in the <a class="inline-link" href="https://crates.io/crates/hashavatar/" target="_blank" rel="noreferrer">Rust crate</a>.</p>
2077+
<p>You can inspect the implementation in the public <a class="inline-link" href="https://github.com/valkyoth/hashavatar-api" target="_blank" rel="noreferrer">API repository</a> and the reusable avatar renderer in the <a class="inline-link" href="https://crates.io/crates/hashavatar/" target="_blank" rel="noreferrer">Rust crate</a>.</p>
20782078
</section>
20792079
"#,
20802080
)

0 commit comments

Comments
 (0)