Skip to content

Commit 03b8308

Browse files
committed
update repository location
1 parent 2ecf35c commit 03b8308

File tree

7 files changed

+19
-25
lines changed

7 files changed

+19
-25
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@
77
- Updated `tokio` to version 1.0. Feature renamed to `tokio1`.
88

99
## [0.4.0] - 2020-09-24
10+
1011
### Changed
1112
- Updated to quickcheck 0.9, tokio 0.2 and futures 0.3.
1213

13-
For information about earlier versions, please review the [commit history](https://github.com/facebookincubator/rust-partial-io/commits/main).
14+
For information about earlier versions, please review the [commit history](https://github.com/sunshowers-code/partial-io/commits/main).
1415

1516
[0.5.0]: https://github.com/facebookincubator/rust-partial-io/releases/tag/0.5.0
1617
[0.4.0]: https://github.com/facebookincubator/rust-partial-io/releases/tag/0.4.0

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ a project may be further defined and clarified by project maintainers.
5555
## Enforcement
5656

5757
Instances of abusive, harassing, or otherwise unacceptable behavior may be
58-
reported by contacting the project team at <opensource-conduct@fb.com>. All
58+
reported by contacting the project team at <conduct@sunshowers.io>. All
5959
complaints will be reviewed and investigated and will result in a response that
6060
is deemed necessary and appropriate to the circumstances. The project team is
6161
obligated to maintain confidentiality with regard to the reporter of an incident.
@@ -74,4 +74,3 @@ available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.ht
7474

7575
For answers to common questions about this code of conduct, see
7676
https://www.contributor-covenant.org/faq
77-

CONTRIBUTING.md

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# Contributing to rust-partial-io
1+
# Contributing to partial-io
22
We want to make contributing to this project as easy and transparent as
33
possible.
44

55
## Our Development Process
6-
rust-partial-io is developed on GitHub. We invite you to submit pull requests
6+
partial-io is developed on GitHub. We invite you to submit pull requests
77
as described below.
88

99
## Pull Requests
@@ -16,20 +16,10 @@ We actively welcome your pull requests.
1616
5. Make sure your code is well-formatted (using `cargo fmt`).
1717
6. If you haven't already, complete the Contributor License Agreement ("CLA").
1818

19-
## Contributor License Agreement ("CLA")
20-
In order to accept your pull request, we need you to submit a CLA. You only need
21-
to do this once to work on any of Facebook's open source projects.
22-
23-
Complete your CLA here: <https://code.facebook.com/cla>
24-
2519
## Issues
2620
We use GitHub issues to track public bugs. Please ensure your description is
2721
clear and has sufficient instructions to be able to reproduce the issue.
2822

29-
Facebook has a [bounty program](https://www.facebook.com/whitehat/) for the safe
30-
disclosure of security bugs. In those cases, please go through the process
31-
outlined on that page and do not file a public issue.
32-
3323
## License
34-
By contributing to rust-partial-io, you agree that your contributions will be
24+
By contributing to partial-io, you agree that your contributions will be
3525
licensed under the LICENSE file in the root directory of this source tree.

Cargo.toml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2018"
55
authors = ["Rain <[email protected]>"]
66
description = "Helpers to test partial, interrupted and would-block I/O operations."
77
documentation = "https://docs.rs/partial-io"
8-
repository = "https://github.com/facebookincubator/rust-partial-io"
8+
repository = "https://github.com/sunshowers-code/partial-io"
99
readme = "README.md"
1010
keywords = ["partial", "interrupted", "wouldblock", "tokio", "quickcheck"]
1111
categories = ["development-tools::testing", "asynchronous"]
@@ -22,14 +22,21 @@ exclude = [
2222
futures = { version = "0.3", optional = true }
2323
pin-project = { version = "1.0.4", optional = true }
2424
quickcheck = { version = "1.0.3", optional = true }
25-
rand = { version = "0.8.5", features = ["getrandom", "small_rng"], optional = true }
25+
rand = { version = "0.8.5", features = [
26+
"getrandom",
27+
"small_rng",
28+
], optional = true }
2629
tokio = { version = "1.21.1", optional = true }
2730

2831
[dev-dependencies]
2932
itertools = "0.10.5"
3033
lazy_static = "1.4.0"
3134
quickcheck = "1.0.3"
32-
tokio = { version = "1.21.1", features = ["io-util", "macros", "rt-multi-thread"] }
35+
tokio = { version = "1.21.1", features = [
36+
"io-util",
37+
"macros",
38+
"rt-multi-thread",
39+
] }
3340

3441
[[example]]
3542
name = "buggy_write"
@@ -40,8 +47,5 @@ futures03 = ["futures", "pin-project"]
4047
tokio1 = ["futures03", "tokio"]
4148
quickcheck1 = ["quickcheck", "rand"]
4249

43-
[badges]
44-
travis-ci = { repository = "facebookincubator/rust-partial-io" }
45-
4650
[package.metadata.docs.rs]
4751
all-features = true

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![partial-io on crates.io](https://img.shields.io/crates/v/partial-io)](https://crates.io/crates/partial-io)
44
[![Documentation (latest release)](https://docs.rs/partial-io/badge.svg)](https://docs.rs/partial-io/)
5-
[![Documentation (main)](https://img.shields.io/badge/docs-main-brightgreen)](https://facebookincubator.github.io/rust-partial-io/rustdoc/partial_io/)
5+
[![Documentation (main)](https://img.shields.io/badge/docs-main-brightgreen)](https://sunshowers-code.github.io/partial-io/rustdoc/partial_io/)
66
[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
77

88
Helpers for testing I/O behavior with partial, interrupted and blocking reads and writes.

README.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![partial-io on crates.io](https://img.shields.io/crates/v/partial-io)](https://crates.io/crates/partial-io)
44
[![Documentation (latest release)](https://docs.rs/partial-io/badge.svg)](https://docs.rs/partial-io/)
5-
[![Documentation (main)](https://img.shields.io/badge/docs-main-brightgreen)](https://facebookincubator.github.io/rust-partial-io/rustdoc/partial_io/)
5+
[![Documentation (main)](https://img.shields.io/badge/docs-main-brightgreen)](https://sunshowers-code.github.io/partial-io/rustdoc/partial_io/)
66
[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
77

88
{{readme}}

publish-docs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set -e
99
pushd ..
1010

1111
if test ! -d partial-io-gh-pages ; then
12-
git clone -b gh-pages [email protected]:facebookincubator/rust-partial-io.git partial-io-gh-pages
12+
git clone -b gh-pages [email protected]:sunshowers-code/partial-io.git partial-io-gh-pages
1313
fi
1414
cd partial-io-gh-pages
1515

0 commit comments

Comments
 (0)