File tree Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 55### Changed
66
77- [ breaking-change] Renamed ` use_tokio ` feature ` async-tokio ` .
8- - Migrated to ' tokio' crate.
8+ - Migrated to ` tokio ` crate version 1 .
99- Updated ` nix ` to version 0.22.
10- - Minimmum supported Rust version updated to 1.46.0.
11- - Updated ` tokio ` to version 1.
1210- Updated ` mio ` to version 0.7.
1311- Updated ` futures ` to version 0.3.
12+ - Minimmum supported Rust version updated to 1.46.0.
1413
1514## [ 0.5.3] - 2018-04-19
1615
Original file line number Diff line number Diff line change 11[package ]
22name = " sysfs_gpio"
3- version = " 0.5.4 "
3+ version = " 0.6.0 " # remember to update html_root_url
44authors = [
55 " Paul Osborne <osbpau@gmail.com>" ,
66 " The Embedded Linux Team <embedded-linux@teams.rust-embedded.org>" ,
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ sysfs_gpio
33
44[ ![ Build Status] ( https://github.com/rust-embedded/rust-sysfs-gpio/workflows/CI/badge.svg )] ( https://github.com/rust-embedded/rust-sysfs-gpio/actions )
55[ ![ Version] ( https://img.shields.io/crates/v/sysfs-gpio.svg )] ( https://crates.io/crates/sysfs-gpio )
6+ ![ Minimum Supported Rust Version] ( https://img.shields.io/badge/rustc-1.46+-blue.svg )
67[ ![ License] ( https://img.shields.io/crates/l/sysfs-gpio.svg )] ( https://github.com/rust-embedded/rust-sysfs-gpio/blob/master/README.md#license )
78
89- [ API Documentation] ( https://docs.rs/sysfs_gpio )
@@ -27,22 +28,20 @@ To use `sysfs_gpio`, first add this to your `Cargo.toml`:
2728
2829``` toml
2930[dependencies ]
30- sysfs_gpio = " 0.5 "
31+ sysfs_gpio = " 0.6 "
3132```
3233
3334Then, add this to your crate root:
3435
3536``` rust
36- extern crate sysfs_gpio;
37+ use sysfs_gpio;
3738```
3839
3940## Example/API
4041
4142Blinking an LED:
4243
4344``` rust
44- extern crate sysfs_gpio;
45-
4645use sysfs_gpio :: {Direction , Pin };
4746use std :: thread :: sleep;
4847use std :: time :: Duration ;
You can’t perform that action at this time.
0 commit comments