Skip to content

Commit 4d23d0a

Browse files
authored
Merge pull request async-rs#47 from taiki-e/url
Update URLs
2 parents 0f0c1e6 + d6cbaf6 commit 4d23d0a

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ authors = ["Stjepan Glavina <stjepang@gmail.com>"]
55
edition = "2018"
66
description = "Async I/O and timers"
77
license = "Apache-2.0 OR MIT"
8-
repository = "https://github.com/stjepang/async-io"
9-
homepage = "https://github.com/stjepang/async-io"
8+
repository = "https://github.com/smol-rs/async-io"
9+
homepage = "https://github.com/smol-rs/async-io"
1010
documentation = "https://docs.rs/async-io"
1111
keywords = ["mio", "epoll", "kqueue", "iocp", "wepoll"]
1212
categories = ["asynchronous", "network-programming", "os"]

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# async-io
22

3-
[![Build](https://github.com/stjepang/async-io/workflows/Build%20and%20test/badge.svg)](
4-
https://github.com/stjepang/async-io/actions)
3+
[![Build](https://github.com/smol-rs/async-io/workflows/Build%20and%20test/badge.svg)](
4+
https://github.com/smol-rs/async-io/actions)
55
[![License](https://img.shields.io/badge/license-MIT%2FApache--2.0-blue.svg)](
6-
https://github.com/stjepang/async-io)
6+
https://github.com/smol-rs/async-io)
77
[![Cargo](https://img.shields.io/crates/v/async-io.svg)](
88
https://crates.io/crates/async-io)
99
[![Documentation](https://docs.rs/async-io/badge.svg)](
@@ -19,7 +19,7 @@ This crate provides two tools:
1919

2020
For concrete async networking types built on top of this crate, see [`async-net`].
2121

22-
[many other]: https://github.com/stjepang/async-io/tree/master/examples
22+
[many other]: https://github.com/smol-rs/async-io/tree/master/examples
2323
[`async-net`]: https://docs.rs/async-net
2424

2525
## Implementation

src/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
//!
99
//! For concrete async networking types built on top of this crate, see [`async-net`].
1010
//!
11-
//! [many other]: https://github.com/stjepang/async-io/tree/master/examples
11+
//! [many other]: https://github.com/smol-rs/async-io/tree/master/examples
1212
//! [`async-net`]: https://docs.rs/async-net
1313
//!
1414
//! # Implementation
@@ -411,8 +411,8 @@ impl Stream for Timer {
411411
/// For higher-level primitives built on top of [`Async`], look into [`async-net`] or
412412
/// [`async-process`] (on Unix).
413413
///
414-
/// [`async-net`]: https://github.com/stjepang/async-net
415-
/// [`async-process`]: https://github.com/stjepang/async-process
414+
/// [`async-net`]: https://github.com/smol-rs/async-net
415+
/// [`async-process`]: https://github.com/smol-rs/async-process
416416
///
417417
/// ### Supported types
418418
///
@@ -423,8 +423,8 @@ impl Stream for Timer {
423423
/// [`Stdin`][`std::io::Stdin`], [`Stdout`][`std::io::Stdout`], or [`Stderr`][`std::io::Stderr`]
424424
/// because all operating systems have issues with them when put in non-blocking mode.
425425
///
426-
/// [timerfd]: https://github.com/stjepang/async-io/blob/master/examples/linux-timerfd.rs
427-
/// [inotify]: https://github.com/stjepang/async-io/blob/master/examples/linux-inotify.rs
426+
/// [timerfd]: https://github.com/smol-rs/async-io/blob/master/examples/linux-timerfd.rs
427+
/// [inotify]: https://github.com/smol-rs/async-io/blob/master/examples/linux-inotify.rs
428428
///
429429
/// ### Concurrent I/O
430430
///

0 commit comments

Comments
 (0)