-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 733 Bytes
/
Copy pathCargo.toml
File metadata and controls
24 lines (21 loc) · 733 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
[package]
name = "msp430fr2355"
version = "0.6.1"
edition = "2018"
authors = ["YuhanLiin <linyuhan0315@hotmail.com>"]
description = "Peripheral access crate for MSP430FR2355 microcontroller"
keywords = ["no-std", "msp430", "ti", "launchpad"]
repository = "https://github.com/YuhanLiin/msp430fr2355"
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/msp430fr2355"
[dependencies]
critical-section = { version = "1.0", optional = true }
msp430 = "0.4.0"
portable-atomic = { version = "0.3.16", default-features = false }
msp430-rt = { version = "0.4.0", optional = true }
vcell = "0.1.0"
[features]
rt = ["msp430-rt/device"]
[package.metadata.docs.rs]
targets = ["msp430-none-elf"]
cargo-args = ["-Z", "build-std=core"]