forked from mdaffin/teensy-3-rust
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
31 lines (28 loc) · 890 Bytes
/
Cargo.toml
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]
authors = [
"Michael Daffin <[email protected]>",
"Philipp Oppermann <[email protected]>",
"Jonathan 'theJPster' Pallant <[email protected]>",
"Marc Brinkmann"
]
keywords = ["arm", "bare-metal", "blink", "lm4f120", "launchpad"]
license = "MIT"
name = "stellaris-launchpad"
readme = "README.md"
version = "0.11.2"
description = "A bare-metal crate supporting the Texas Instruments Stellaris LM4F120 Launchpad (and most likely the Tiva-C TM4C120 Launchpad too)"
repository = "https://github.com/thejpster/stellaris-launchpad"
categories = ["hardware-support"]
homepage = "https://www.thejpster.org.uk"
[profile.release]
lto = true
debug = true
opt-level = "s"
[dependencies]
cortex-m = "0.6"
cortex-m-rt = "0.6"
volatile-register = "0.2"
embedded-hal = "0.2"
tm4c123x-hal = "0.10"
[badges]
travis-ci = { repository = "thejpster/stellaris-launchpad", branch = "master" }