Skip to content
This repository was archived by the owner on May 15, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
# novonotes_run_loop
# novonotes_run_loop has moved to novonotes/wxp

> [!IMPORTANT]
> **This repository is archived and no longer maintained.**
>
> Go to **[`novonotes/wxp/crates/run_loop`](https://github.com/novonotes/wxp/tree/main/crates/run_loop)**
> for the latest source, issues, and pull requests.
>
> New dependency pins should use the `novonotes_run_loop` package from
> [`novonotes/wxp`](https://github.com/novonotes/wxp), not this repository.

A platform-independent run loop interface for Rust.
A fork of [irondash_run_loop](https://github.com/irondash/irondash/tree/main/run_loop) with enhanced safety and error handling for DLL environments.
Expand Down Expand Up @@ -122,6 +131,15 @@ fn main() {

For information on using the test helpers and test harness, see the [Testing Guide](docs/testing.md).

## Installation

Use the `novonotes_run_loop` package from the `novonotes/wxp` monorepo:

```toml
[dependencies]
novonotes_run_loop = { git = "https://github.com/novonotes/wxp.git", package = "novonotes_run_loop", rev = "<latest commit hash on main branch>" }
```

## License

MIT License (same as the original project)
Expand Down
22 changes: 21 additions & 1 deletion README_JA.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
# novonotes_run_loop
# novonotes_run_loop は novonotes/wxp に移動しました

> [!IMPORTANT]
> **このリポジトリは archive され、今後は更新されません。**
>
> 最新のソース、issue、pull request は
> **[`novonotes/wxp/crates/run_loop`](https://github.com/novonotes/wxp/tree/main/crates/run_loop)**
> を参照してください。
>
> 新しい依存指定では、このリポジトリではなく
> [`novonotes/wxp`](https://github.com/novonotes/wxp) の `novonotes_run_loop`
> package を使ってください。

プラットフォーム独立なランループインターフェースを提供する Rust クレート。
[irondash_run_loop](https://github.com/irondash/irondash/tree/main/run_loop) をベースに、DLL 環境での安全性やエラーハンドリングなどを強化したフォークです。
Expand Down Expand Up @@ -120,6 +131,15 @@ fn main() {

run_loop のテストヘルパーとテストハーネスの使い方については、[テストガイド](docs/testing.md)を参照してください。

## インストール方法

`novonotes/wxp` monorepo の `novonotes_run_loop` package を利用してください。

```toml
[dependencies]
novonotes_run_loop = { git = "https://github.com/novonotes/wxp.git", package = "novonotes_run_loop", rev = "<main ブランチの最新コミットハッシュ>" }
```

## ライセンス

MIT License(オリジナルプロジェクトと同じ)
Expand Down
Loading