It currently contains whoever was first to write some code for the crate, even if many more people have contributed to it later. The field is "sort of" deprecated, it was made optional recently: https://rust-lang.github.io/rfcs/3052-optional-authors-field.html Due the the reasons listed there I believe removing it is better than setting it to generic fluff like "The Embassy contributors".
		
			
				
	
	
		
			26 lines
		
	
	
		
			845 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			845 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [package]
 | |
| edition = "2021"
 | |
| name = "embassy-boot-stm32l1-examples"
 | |
| version = "0.1.0"
 | |
| 
 | |
| [dependencies]
 | |
| embassy = { version = "0.1.0", path = "../../../embassy", features = ["nightly", "time-tick-32768hz"] }
 | |
| embassy-stm32 = { version = "0.1.0", path = "../../../embassy-stm32", features = ["unstable-traits", "nightly", "stm32l151cb-a", "time-driver-any", "exti"]  }
 | |
| embassy-boot-stm32 = { version = "0.1.0", path = "../../../embassy-boot/stm32" }
 | |
| embassy-embedded-hal = { version = "0.1.0", path = "../../../embassy-embedded-hal" }
 | |
| 
 | |
| defmt = { version = "0.3", optional = true }
 | |
| defmt-rtt = { version = "0.3", optional = true }
 | |
| panic-reset = { version = "0.1.1" }
 | |
| embedded-hal = { version = "0.2.6" }
 | |
| 
 | |
| cortex-m = "0.7.3"
 | |
| cortex-m-rt = "0.7.0"
 | |
| 
 | |
| [features]
 | |
| defmt = [
 | |
|       "dep:defmt",
 | |
|       "embassy-stm32/defmt",
 | |
|       "embassy-boot-stm32/defmt",
 | |
| ]
 |