vec-tree 0.1.1

A safe tree using an arena allocator that allows deletion without suffering from the ABA problem by using generational indices.
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 tests in vec_tree",
            "cargo": {
                "args": [
                    "test"
                ],
                "filter": { "kind": "test" }
            },
            "args": [],
            "cwd": "${workspaceFolder}",
        },
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug vec_tree",
            "cargo": {
                "args": [
                    "build",
                    "--bin=vec_tree"
                ]
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        }
    ]
}