Skip to content

Commit

Permalink
Update some URLs and Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
atouchet authored and weihanglo committed Apr 11, 2024
1 parent 43e36bb commit e939b31
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 17 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ name = "jobserver"
version = "0.1.29"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/alexcrichton/jobserver-rs"
homepage = "https://github.com/alexcrichton/jobserver-rs"
repository = "https://github.com/rust-lang/jobserver-rs"
homepage = "https://github.com/rust-lang/jobserver-rs"
documentation = "https://docs.rs/jobserver"
description = """
An implementation of the GNU make jobserver for Rust
An implementation of the GNU Make jobserver for Rust.
"""
edition = "2021"
rust-version = "1.63"
Expand Down
20 changes: 7 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,39 +1,33 @@
# jobserver-rs

An implementation of the GNU make jobserver for Rust
An implementation of the GNU Make jobserver for Rust.

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

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

## Usage

First, add this to your `Cargo.toml`:
Add this to your `Cargo.toml`:

```toml
[dependencies]
jobserver = "0.1"
```

Next, add this to your crate:

```rust
extern crate jobserver;
```

# License

This project is licensed under either of

* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
http://www.apache.org/licenses/LICENSE-2.0)
https://www.apache.org/licenses/LICENSE-2.0)
* MIT license ([LICENSE-MIT](LICENSE-MIT) or
http://opensource.org/licenses/MIT)
https://opensource.org/license/mit)

at your option.

### Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in jobserver-rs by you, as defined in the Apache-2.0 license, shall be
dual licensed as above, without any additional terms or conditions.
for inclusion in jobserver-rs by you, as defined in the Apache-2.0 license,
shall be dual licensed as above, without any additional terms or conditions.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
//! compatible with `make` on Windows. It is, however, compatible with
//! `mingw32-make`.
//!
//! [docs]: http://make.mad-scientist.net/papers/jobserver-implementation/
//! [docs]: https://make.mad-scientist.net/papers/jobserver-implementation/

#![deny(missing_docs, missing_debug_implementations)]
#![doc(html_root_url = "https://docs.rs/jobserver/0.1")]
Expand Down

0 comments on commit e939b31

Please sign in to comment.