Skip to content

Commit e939b31

Browse files
atouchetweihanglo
authored andcommitted
Update some URLs and Readme
1 parent 43e36bb commit e939b31

File tree

3 files changed

+11
-17
lines changed

3 files changed

+11
-17
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ name = "jobserver"
33
version = "0.1.29"
44
authors = ["Alex Crichton <[email protected]>"]
55
license = "MIT OR Apache-2.0"
6-
repository = "https://github.com/alexcrichton/jobserver-rs"
7-
homepage = "https://github.com/alexcrichton/jobserver-rs"
6+
repository = "https://github.com/rust-lang/jobserver-rs"
7+
homepage = "https://github.com/rust-lang/jobserver-rs"
88
documentation = "https://docs.rs/jobserver"
99
description = """
10-
An implementation of the GNU make jobserver for Rust
10+
An implementation of the GNU Make jobserver for Rust.
1111
"""
1212
edition = "2021"
1313
rust-version = "1.63"

README.md

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,33 @@
11
# jobserver-rs
22

3-
An implementation of the GNU make jobserver for Rust
3+
An implementation of the GNU Make jobserver for Rust.
44

5-
[![Crates.io](https://img.shields.io/crates/v/jobserver.svg?maxAge=2592000)](https://crates.io/crates/jobserver)
5+
[![crates.io](https://img.shields.io/crates/v/jobserver.svg?maxAge=2592000)](https://crates.io/crates/jobserver)
66

77
[Documentation](https://docs.rs/jobserver)
88

99
## Usage
1010

11-
First, add this to your `Cargo.toml`:
11+
Add this to your `Cargo.toml`:
1212

1313
```toml
1414
[dependencies]
1515
jobserver = "0.1"
1616
```
1717

18-
Next, add this to your crate:
19-
20-
```rust
21-
extern crate jobserver;
22-
```
23-
2418
# License
2519

2620
This project is licensed under either of
2721

2822
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
29-
http://www.apache.org/licenses/LICENSE-2.0)
23+
https://www.apache.org/licenses/LICENSE-2.0)
3024
* MIT license ([LICENSE-MIT](LICENSE-MIT) or
31-
http://opensource.org/licenses/MIT)
25+
https://opensource.org/license/mit)
3226

3327
at your option.
3428

3529
### Contribution
3630

3731
Unless you explicitly state otherwise, any contribution intentionally submitted
38-
for inclusion in jobserver-rs by you, as defined in the Apache-2.0 license, shall be
39-
dual licensed as above, without any additional terms or conditions.
32+
for inclusion in jobserver-rs by you, as defined in the Apache-2.0 license,
33+
shall be dual licensed as above, without any additional terms or conditions.

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
//! compatible with `make` on Windows. It is, however, compatible with
7777
//! `mingw32-make`.
7878
//!
79-
//! [docs]: http://make.mad-scientist.net/papers/jobserver-implementation/
79+
//! [docs]: https://make.mad-scientist.net/papers/jobserver-implementation/
8080
8181
#![deny(missing_docs, missing_debug_implementations)]
8282
#![doc(html_root_url = "https://docs.rs/jobserver/0.1")]

0 commit comments

Comments
 (0)