39 lines
		
	
	
		
			926 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			926 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "blue_pill_rtic"
 | 
						|
version = "0.1.0"
 | 
						|
authors = ["Levi Pearson <levipearson@gmail.com>"]
 | 
						|
description = "Base binary crate for STM32F103 Blue Pill boards"
 | 
						|
categories = ["embedded", "no-std"]
 | 
						|
edition = "2018"
 | 
						|
 | 
						|
[dependencies]
 | 
						|
cortex-m = "0.6.2"
 | 
						|
cortex-m-rt = "0.6.12"
 | 
						|
#cortex-m-semihosting = "0.3.5"
 | 
						|
# alternate panic impls, choose only one!
 | 
						|
#panic-halt = "0.2.0"
 | 
						|
#panic-semihosting = "0.5.3" # requires cortex-m-semihosting
 | 
						|
#panic-itm = "0.4.1"
 | 
						|
#panic-abort = "0.3.2"
 | 
						|
#panic-ramdump = "0.1.1"
 | 
						|
#panic-persist = "0.2.1"
 | 
						|
panic-rtt-target = { version = "0.1.0", features = ["cortex-m"] }
 | 
						|
embedded-hal = "0.2.3"
 | 
						|
nb = "0.1.2"
 | 
						|
rtt-target = { version = "0.2.0", features = ["cortex-m"] }
 | 
						|
cortex-m-rtic = "0.5.0"
 | 
						|
 | 
						|
[dependencies.stm32f1xx-hal]
 | 
						|
version = "0.6.1"
 | 
						|
features = ["rt", "stm32f103", "medium"]
 | 
						|
 | 
						|
[[bin]]
 | 
						|
name = "blue_pill_rtic"
 | 
						|
test = false
 | 
						|
bench = false
 | 
						|
 | 
						|
[profile.release]
 | 
						|
lto = true
 | 
						|
codegen-units = 1
 | 
						|
debug = true
 |