calyx 0.7.1

Compiler Infrastructure for Hardware Accelerator Generation
// For format details, see https://aka.ms/vscode-remote/devcontainer.json or this file's README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.134.0/containers/rust
{
	"name": "Calyx Development Environment",
	// Defaults to building the container locally
	"build": {
		"dockerfile": "../Dockerfile"
	},
	"runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined" ],
    "workspaceFolder": "/home/calyx",
    "workspaceMount": "source=${localWorkspaceFolder},target=/home/calyx,type=bind,consistency=delegated",

	// Set *default* container specific settings.json values on container create.
	"settings": { 
		"files.watcherExclude": {
			"**/target/**": true
		}
	},

	// Add the IDs of extensions you want installed when the container is created.
	"extensions": [
		"matklad.rust-analyzer"
	]
}