Skip to content

Commit

Permalink
Merge pull request async-rs#47 from taiki-e/url
Browse files Browse the repository at this point in the history
Update URLs
  • Loading branch information
taiki-e authored Dec 26, 2020
2 parents 0f0c1e6 + d6cbaf6 commit 4d23d0a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ authors = ["Stjepan Glavina <[email protected]>"]
edition = "2018"
description = "Async I/O and timers"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/stjepang/async-io"
homepage = "https://github.com/stjepang/async-io"
repository = "https://github.com/smol-rs/async-io"
homepage = "https://github.com/smol-rs/async-io"
documentation = "https://docs.rs/async-io"
keywords = ["mio", "epoll", "kqueue", "iocp", "wepoll"]
categories = ["asynchronous", "network-programming", "os"]
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# async-io

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

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

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

## Implementation
Expand Down
10 changes: 5 additions & 5 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//!
//! For concrete async networking types built on top of this crate, see [`async-net`].
//!
//! [many other]: https://github.com/stjepang/async-io/tree/master/examples
//! [many other]: https://github.com/smol-rs/async-io/tree/master/examples
//! [`async-net`]: https://docs.rs/async-net
//!
//! # Implementation
Expand Down Expand Up @@ -411,8 +411,8 @@ impl Stream for Timer {
/// For higher-level primitives built on top of [`Async`], look into [`async-net`] or
/// [`async-process`] (on Unix).
///
/// [`async-net`]: https://github.com/stjepang/async-net
/// [`async-process`]: https://github.com/stjepang/async-process
/// [`async-net`]: https://github.com/smol-rs/async-net
/// [`async-process`]: https://github.com/smol-rs/async-process
///
/// ### Supported types
///
Expand All @@ -423,8 +423,8 @@ impl Stream for Timer {
/// [`Stdin`][`std::io::Stdin`], [`Stdout`][`std::io::Stdout`], or [`Stderr`][`std::io::Stderr`]
/// because all operating systems have issues with them when put in non-blocking mode.
///
/// [timerfd]: https://github.com/stjepang/async-io/blob/master/examples/linux-timerfd.rs
/// [inotify]: https://github.com/stjepang/async-io/blob/master/examples/linux-inotify.rs
/// [timerfd]: https://github.com/smol-rs/async-io/blob/master/examples/linux-timerfd.rs
/// [inotify]: https://github.com/smol-rs/async-io/blob/master/examples/linux-inotify.rs
///
/// ### Concurrent I/O
///
Expand Down

0 comments on commit 4d23d0a

Please sign in to comment.