git-stratum 0.3.2

High(er) level repository for mining git repositories, this library abstracts git2-rs for efficient processing.
Documentation
{
    "name": "Rust Container",
    "build": {
        "dockerfile": "Dockerfile"
    },
    "containerEnv": {
        // Set to non-empty string to init lib by default.
        "INIT_LIB": ""
    },
    "postCreateCommand": "bash .devcontainer/post-create.sh",
    "mounts": [
        {
            "source": "${localEnv:HOME}/.gitconfig",
            "target": "/home/vscode/.gitconfig",
            "type": "bind",
            "readonly": true
        },
        {
            "source": "${localEnv:HOME}/.ssh/",
            "target": "/home/vscode/.ssh/",
            "type": "bind",
            "readonly": true
        }
    ],
    "remoteUser": "vscode",
    "customizations": {
        "vscode": {
            // Set *default* container specific settings.json values on container create.
            "settings": { 
                "lldb.executable": "/usr/bin/lldb",
                // VS Code don't watch files under ./target
                "files.watcherExclude": {
                        "**/target/**": true
                },
                "rust-analyzer.checkOnSave.command": "clippy"
            },
            "extensions": [
                "vadimcn.vscode-lldb",
                "mutantdino.resourcemonitor",
                "rust-lang.rust-analyzer",
                "tamasfe.even-better-toml",
                "serayuzgur.crates"
            ]
        }
    },
}