exact_format 0.2.1

A procedural macro for compile time string replacement without using the standard format placeholder syntax (`{}`). This is most useful when dealing with strings that contain `{ }` blocks you do no wish to interpolate e.g. writing javascript.
Documentation
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
{
	"name": "rust",
	"image": "rust",
	"customizations": {
		"vscode": {
			"extensions": [
				// general tools
				"chunsen.bracket-select",
				"dzhavat.bracket-pair-toggler",
				"oderwat.indent-rainbow",
				"fabiospampinato.vscode-git-history",
				"streetsidesoftware.code-spell-checker",
				"rebornix.toggle", // used in settings.json to add a toggle for inlay hints in rust - `ctrl+q`
				"ryuta46.multi-command", // used in settings.json to add custom command combinators
				
				// rust
				"fill-labs.dependi", // dependency validation in Cargo.toml
				"tamasfe.even-better-toml", // toml lsp
				"redhat.vscode-yaml", // yaml lsp
				"rust-lang.rust-analyzer", // rust lsp
				"vadimcn.vscode-lldb", // rust debugger
				
				
				
				
				
				// sh
				"timonwong.shellcheck", // sh lsp
				
			]
		}
	},
	"mounts": [
		// ssh
		"source=/home/henry/.ssh/,target=/root/.ssh,type=bind",
		
	],
	"runArgs": [
		"--privileged",
		"--net=host",
	],
	"remoteUser": "root",
}