# Objective - The [`build-templated-pages`](4778fbeb65/tools/build-templated-pages) tool is used to render the Markdown templates in the [docs-template](4778fbeb65/docs-template) folder. - It depends on out outdated version of `toml_edit`. ## Solution - Bump `toml_edit` to 0.21, disabling all features except `parse`.
		
			
				
	
	
		
			14 lines
		
	
	
		
			360 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			360 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "build-templated-pages"
 | 
						|
version = "0.12.0"
 | 
						|
edition = "2021"
 | 
						|
description = "handle templated pages in Bevy repository"
 | 
						|
publish = false
 | 
						|
license = "MIT OR Apache-2.0"
 | 
						|
 | 
						|
[dependencies]
 | 
						|
toml_edit = { version = "0.21", default-features = false, features = ["parse"] }
 | 
						|
tera = "1.15"
 | 
						|
serde = { version = "1.0", features = ["derive"] }
 | 
						|
bitflags = "2.3"
 |