Skip to content

Commit 01ebca6

Browse files
committed
Rename crate embedded-hal-bus
1 parent 0631aba commit 01ebca6

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed
File renamed without changes.

embedded-hal-shared/Cargo.toml renamed to embedded-hal-bus/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ authors = [
33
"The Embedded HAL Team and Contributors <[email protected]>",
44
]
55
categories = ["embedded", "hardware-support", "no-std"]
6-
description = "Device-sharing mechanisms for embedded-hal, a Hardware Abstraction Layer (HAL) for embedded systems"
7-
documentation = "https://docs.rs/embedded-hal-shared"
6+
description = "Bus/Device connection mechanisms for embedded-hal, a Hardware Abstraction Layer (HAL) for embedded systems"
7+
documentation = "https://docs.rs/embedded-hal-bus"
88
edition = "2018"
99
keywords = ["hal", "IO"]
1010
license = "MIT OR Apache-2.0"
11-
name = "embedded-hal-shared"
11+
name = "embedded-hal-bus"
1212
readme = "README.md"
1313
repository = "https://github.com/rust-embedded/embedded-hal"
1414
version = "0.1.0-alpha.1"
File renamed without changes.
File renamed without changes.

embedded-hal-shared/README.md renamed to embedded-hal-bus/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
[![crates.io](https://img.shields.io/crates/d/embedded-hal-shared.svg)](https://crates.io/crates/embedded-hal-shared)
2-
[![crates.io](https://img.shields.io/crates/v/embedded-hal-shared.svg)](https://crates.io/crates/embedded-hal-shared)
3-
[![Documentation](https://docs.rs/embedded-hal-shared/badge.svg)](https://docs.rs/embedded-hal-shared)
1+
[![crates.io](https://img.shields.io/crates/d/embedded-hal-bus.svg)](https://crates.io/crates/embedded-hal-bus)
2+
[![crates.io](https://img.shields.io/crates/v/embedded-hal-bus.svg)](https://crates.io/crates/embedded-hal-bus)
3+
[![Documentation](https://docs.rs/embedded-hal-bus/badge.svg)](https://docs.rs/embedded-hal-bus)
44
<!--
5-
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.46+-blue.svg)
5+
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.54+-blue.svg)
66
-->
77

8-
# `embedded-hal-shared`
8+
# `embedded-hal-bus`
99

10-
Device-sharing mechanisms for [`embedded-hal`], a Hardware Abstraction Layer (HAL) for embedded systems.
10+
Bus/Device connection mechanisms for [`embedded-hal`], a Hardware Abstraction Layer (HAL) for embedded systems.
1111

1212
It is possible to connect several peripherals to a bus like SPI or I2C.
1313
To support this, `embedded-hal` provides the `SpiBus` and `SpiDevice` traits in the case of SPI, for example.
@@ -24,12 +24,12 @@ This project is developed and maintained by the [HAL team][team].
2424

2525
## [API reference]
2626

27-
[API reference]: https://docs.rs/embedded-hal-shared
27+
[API reference]: https://docs.rs/embedded-hal-bus
2828

2929
<!--
3030
## Minimum Supported Rust Version (MSRV)
3131
32-
This crate is guaranteed to compile on stable Rust 1.46 and up. It *might*
32+
This crate is guaranteed to compile on stable Rust 1.54 and up. It *might*
3333
compile with older versions but that may change in any new patch release.
3434
-->
3535

embedded-hal-shared/src/lib.rs renamed to embedded-hal-bus/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Device-sharing mechanisms for [`embedded-hal`], a Hardware Abstraction Layer (HAL) for embedded systems.
1+
//! Bus/Device connection mechanisms for [`embedded-hal`], a Hardware Abstraction Layer (HAL) for embedded systems.
22
//!
33
//! It is possible to connect several peripherals to a bus like SPI or I2C.
44
//! To support this, `embedded-hal` provides the `SpiBus` and `SpiDevice` traits in the case of SPI, for example.
File renamed without changes.

0 commit comments

Comments
 (0)