Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Commit

Permalink
fix: move away from rust-algo.club domain
Browse files Browse the repository at this point in the history
  • Loading branch information
weihanglo committed Sep 19, 2024
1 parent ba9f36e commit 87dd512
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.0.1"
edition = '2018'
authors = ["Weihang Lo <me@weihanglo.tw>"]
description = "Learn algorithms and data structures with Rust"
homepage = "https://rust-algo.club"
homepage = "https://weihanglo.tw/rust-algorithm-club"
repository = "https://github.com/weihanglo/rust-algorithm-club"

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# Rust Algorithm Club

> ### 🚧 🚧 This repo is under construction. Most materials are written in Chinese. [Check it out here](https://rust-algo.club) if you are able to read Chinese.
> ### 🚧 🚧 This repo is under construction. Most materials are written in Chinese. [Check it out here](https://weihanglo.tw/rust-algorithm-club) if you are able to read Chinese.
Welcome to the Rust Algorithm Club! This repository was originally inspired by [Swift Algorithm Club][swift-algorithm-club]. All algorithms here would be explained and implemented in [Rust programming language][rust]!
You can find out more on the [Rust Algorithm Club][main-site] main site. Just pick up some algorithms you are interested in and start learning. If you are brave enough, we recommend you the [auto-generated API documentation][generated-doc]. Go and fight with the source code.
Expand All @@ -18,9 +18,9 @@ This project along with its source code are on [GitHub][source-code] and we are
[swift-algorithm-club]: https://github.com/raywenderlich/swift-algorithm-club
[rust]: https://www.rust-lang.org/
[source-code]: https://github.com/weihanglo/rust-algorithm-club
[main-site]: https://rust-algo.club
[main-site]: https://weihanglo.tw/rust-algorithm-club/
[ci-status]: https://github.com/weihanglo/rust-algorithm-club/actions?query=workflow%3ACI
[generated-doc]: https://rust-algo.club/doc/rust_algorithm_club/
[generated-doc]: https://weihanglo.tw/rust-algorithm-club/doc/rust_algorithm_club/
[edition-guide]: https://rust-lang.github.io/edition-guide/rust-2018

## General Concepts
Expand Down
1 change: 0 additions & 1 deletion src/CNAME

This file was deleted.

4 changes: 2 additions & 2 deletions src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
[swift-algorithm-club]: https://github.com/raywenderlich/swift-algorithm-club
[rust]: https://www.rust-lang.org/
[source-code]: https://github.com/weihanglo/rust-algorithm-club
[main-site]: https://rust-algo.club
[main-site]: https://weihanglo.tw/rust-algorithm-club
[ci-status]: https://github.com/weihanglo/rust-algorithm-club/actions?query=workflow%3ACI
[generated-doc]: https://rust-algo.club/doc/rust_algorithm_club/
[generated-doc]: https://weihanglo.tw/rust-algorithm-club/doc/rust_algorithm_club/
[edition-guide]: https://rust-lang.github.io/edition-guide/rust-2018

## 基礎概念
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
//! ![](https://rust-algo.club/logo.svg)
//! ![](https://weihanglo.tw/rust-algorithm-club/logo.svg)
//!
//! # Welcome to Rust algorithm club!

#![warn(missing_docs)]
#![warn(dead_code)]
#![deny(deprecated)]
#![deny(nonstandard_style)]
#![doc(html_logo_url = "https://rust-algo.club/favicon.png")]
#![doc(html_logo_url = "https://weihanglo.tw/rust-algorithm-club/favicon.png")]

pub mod collections;
pub mod searching;
Expand Down

0 comments on commit 87dd512

Please sign in to comment.