Skip to content

Commit 4459bc4

Browse files
committed
Update readme
1 parent a64f9fc commit 4459bc4

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
# rust-sysfs-pwm
1+
# sysfs-pwm
22

3-
[![Build Status](https://travis-ci.org/rust-embedded/rust-sysfs-pwm.svg?branch=master)](https://travis-ci.org/rust-embedded/rust-sysfs-pwm)
3+
[![Build Status](https://github.com/rust-embedded/rust-sysfs-pwm/workflows/CI/badge.svg)](https://github.com/rust-embedded/rust-sysfs-pwm/actions)
44
[![Version](https://img.shields.io/crates/v/sysfs-pwm.svg)](https://crates.io/crates/sysfs-pwm)
5+
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.28+-blue.svg)
56
[![License](https://img.shields.io/crates/l/sysfs-pwm.svg)](README.md#license)
67

78
- [API Documentation](https://docs.rs/sysfs-pwm)
@@ -17,13 +18,13 @@ To use `sysfs-pwm`, first add this to your `Cargo.toml`:
1718
```toml
1819
[dependencies]
1920
# or latest version
20-
sysfs-pwm = "^0.1.0"
21+
sysfs-pwm = "0.2.0"
2122
```
2223

2324
Then, add this to your crate root:
2425

2526
```rust
26-
extern crate sysfs_pwm;
27+
use sysfs_pwm;
2728
```
2829

2930
## MSRV (Minimum Supported Rust Version)
@@ -54,7 +55,7 @@ machine (although it could be). In those cases, you will need to
5455
cross-compile. The [instructions here][rust-cross] provide great details on cross
5556
compiling for your platform.
5657

57-
[rust-cross]: https://github.com/japaric/rust-cross
58+
[rust-cross]: https://github.com/cross-rs/cross
5859

5960
## Running the Example
6061

0 commit comments

Comments
 (0)