From a7595f17183d59d5c5051f105c19d50ee4033c31 Mon Sep 17 00:00:00 2001 From: "glm-5.1" Date: Wed, 3 Jun 2026 06:45:22 +0000 Subject: [PATCH] fix: update repo URLs from github.com/alkdev to git.alk.dev/alkdev --- Cargo.toml | 2 +- README.md | 2 +- crates/wraith-core/src/lib.rs | 2 +- crates/wraith-napi/src/lib.rs | 2 +- crates/wraith/src/main.rs | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1089e78..4971461 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,4 +10,4 @@ resolver = "2" version = "0.1.0" edition = "2021" license = "MIT OR Apache-2.0" -repository = "https://github.com/alkdev/wraith" \ No newline at end of file +repository = "https://git.alk.dev/alkdev/wraith" \ No newline at end of file diff --git a/README.md b/README.md index 03b61a9..9bcce51 100644 --- a/README.md +++ b/README.md @@ -227,7 +227,7 @@ This is **alpha software**. While it depends on well-established libraries (russ - **API stability** — the library API (`wraith-core`) and NAPI interface may change between versions - **Performance** — no load testing or benchmarking has been done yet -Please test thoroughly and [file issues](../../issues) for any problems you encounter. +Please test thoroughly and [file issues](https://git.alk.dev/alkdev/wraith/issues) for any problems you encounter. ## License diff --git a/crates/wraith-core/src/lib.rs b/crates/wraith-core/src/lib.rs index 7250720..8071976 100644 --- a/crates/wraith-core/src/lib.rs +++ b/crates/wraith-core/src/lib.rs @@ -1,6 +1,6 @@ //! # wraith-core //! -//! Core library for [Wraith](https://github.com/alkdev/wraith), a self-hostable SSH-based +//! Core library for [Wraith](https://git.alk.dev/alkdev/wraith), a self-hostable SSH-based //! tunnel tool. This crate provides the transport abstraction, SOCKS5 server, port forwarding, //! authentication, and server handler — everything needed to build a wraith client or server //! on top of pluggable transports. diff --git a/crates/wraith-napi/src/lib.rs b/crates/wraith-napi/src/lib.rs index f5d6d9a..1a171cf 100644 --- a/crates/wraith-napi/src/lib.rs +++ b/crates/wraith-napi/src/lib.rs @@ -1,6 +1,6 @@ //! # wraith-napi //! -//! Node.js native addon for [Wraith](https://github.com/alkdev/wraith) via napi-rs. +//! Node.js native addon for [Wraith](https://git.alk.dev/alkdev/wraith) via napi-rs. //! Exposes `connect()` and `serve()` functions for programmatic SSH tunnel creation. //! //! > **Alpha software.** The NAPI interface may change between versions. diff --git a/crates/wraith/src/main.rs b/crates/wraith/src/main.rs index 9dcf263..fdd14b2 100644 --- a/crates/wraith/src/main.rs +++ b/crates/wraith/src/main.rs @@ -1,6 +1,6 @@ //! # wraith //! -//! CLI binary for [Wraith](https://github.com/alkdev/wraith), a self-hostable SSH-based tunnel +//! CLI binary for [Wraith](https://git.alk.dev/alkdev/wraith), a self-hostable SSH-based tunnel //! tool. Provides `wraith connect` (client) and `wraith serve` (server) subcommands with //! pluggable transports (TCP, TLS, iroh). //!