forked from nrf-rs/microbit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 710 Bytes
/
Cargo.toml
File metadata and controls
31 lines (26 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "microbit-v2"
version = "0.16.0"
description = "Board support crate for the BBC Micro:bit V2"
edition = "2018"
readme = "../README.md"
rust-version = "1.79.0"
repository = "https://github.com/nrf-rs/microbit"
authors = [
"Daniel Egger <daniel@eggers-club.de>",
"Michael Droogleever <droogmic@gmail.com>",
"Rob Young <rob@robyoung.digital>",
]
categories = ["hardware-support", "embedded", "no-std"]
keywords = ["arm", "cortex-m", "nrf", "hal"]
license = "0BSD"
[lib]
name = "microbit"
path = "src/lib.rs"
[dependencies]
[dependencies.microbit-common]
path = "../microbit-common"
features = ["v2"]
version = "=0.16.0"
[features]
embedded-hal-02 = ["microbit-common/embedded-hal-02"]