20 lines
		
	
	
		
			471 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			471 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
	"name": "Rust",
 | 
						|
	"dockerFile": "Dockerfile",
 | 
						|
	"extensions": [
 | 
						|
		"rust-lang.rust",
 | 
						|
		"bungcip.better-toml",
 | 
						|
		"vadimcn.vscode-lldb"
 | 
						|
	],
 | 
						|
	"runArgs": [
 | 
						|
		// Comment out the next line to run as root instead. Linux users, 
 | 
						|
		// update Dockerfile with your user's UID/GID if not 1000.
 | 
						|
		"-u", "vscode",
 | 
						|
 | 
						|
		"--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined"
 | 
						|
	],
 | 
						|
	"settings": {
 | 
						|
		"lldb.adapterType": "bundled",
 | 
						|
		"terminal.integrated.shell.linux": "/bin/bash"
 | 
						|
	}
 | 
						|
} |