Skip to content

Commit

Permalink
docs: Document about no_std support
Browse files Browse the repository at this point in the history
  • Loading branch information
siketyan committed Sep 24, 2022
1 parent 62732d7 commit 343a9a4
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,14 @@ Add to your Cargo.toml as a dependency as follows:
apdu = "0.2"
```

## 馃洜 no_std support
apdu-core crate does support no_std environments.
If you are using this crate in no_std, turn `std` feature off by disabling default features:

```toml
[dependencies]
apdu-core = { version = "0.2", default-features = false }
```

## 馃搫 Documentation
See [docs.rs](https://docs.rs/apdu/).

0 comments on commit 343a9a4

Please sign in to comment.