# 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`.
		
			
				
	
	
		
			15 lines
		
	
	
		
			332 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			332 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "example-showcase"
 | 
						|
version = "0.1.0"
 | 
						|
edition = "2021"
 | 
						|
description = "Run examples"
 | 
						|
publish = false
 | 
						|
license = "MIT OR Apache-2.0"
 | 
						|
 | 
						|
[dependencies]
 | 
						|
xshell = "0.2"
 | 
						|
clap = { version = "4.0", features = ["derive"] }
 | 
						|
ron = "0.8"
 | 
						|
toml_edit = { version = "0.21", default-features = false, features = ["parse"] }
 | 
						|
pbr = "1.1"
 |