19 lines
		
	
	
		
			536 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			536 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [package]
 | |
| name = "embassy-stm32f0-examples"
 | |
| version = "0.1.0"
 | |
| authors = ["Thales Fragoso <thales.fragosoz@gmail.com>"]
 | |
| edition = "2018"
 | |
| resolver = "2"
 | |
| 
 | |
| # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 | |
| 
 | |
| [dependencies]
 | |
| cortex-m = "0.7.3"
 | |
| cortex-m-rt = "0.7.0"
 | |
| defmt = "0.3"
 | |
| defmt-rtt = "0.3"
 | |
| panic-probe = "0.3"
 | |
| embassy = { path = "../../embassy", features = ["defmt"] }
 | |
| embassy-stm32 = { path = "../../embassy-stm32", features = ["defmt", "memory-x", "stm32f030f4", "time-driver-tim3"] }
 | |
| 
 |