ece_421_sam_cynthia_aditya_trees 0.1.1

A simple, smart pointer implementation of Red Black and AVL trees
Documentation
{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug executable 'project2_part1'",
            "cargo": {
                "args": [
                    "build",
                    "--bin=project2_part1",
                    "--package=project2_part1"
                ],
                "filter": {
                    "name": "project2_part1",
                    "kind": "bin"
                }
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        },
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug unit tests in executable 'project2_part1'",
            "cargo": {
                "args": [
                    "test",
                    "--no-run",
                    "--bin=project2_part1",
                    "--package=project2_part1"
                ],
                "filter": {
                    "name": "project2_part1",
                    "kind": "bin"
                }
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        }
    ]
}