cxx 1.0.69

Safe interop between Rust and C++
Documentation
{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Run cxx demo",
            "type": "lldb",
            "request": "launch",
            "cargo": {
                "args": ["build", "--manifest-path", "demo/Cargo.toml"],
                "filter": {
                    "name": "demo",
                    "kind": "bin"
                }
            }
        },
        {
            "name": "Debug cargo tests",
            "type": "lldb",
            "request": "launch",
            "cargo": {
                "args": ["test", "--no-run"],
                "filter": {
                    "name": "test",
                    "kind": "test"
                }
            }
        }
    ]
}