hifitime 2.3.2

Precise date and time handling in Rust built on top of TwoFloat with leap second support
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 unit tests in library 'hifitime'",
            "cargo": {
                "args": [
                    "test",
                    "--no-run",
                    "--lib",
                    "--package=hifitime"
                ],
                "filter": {
                    "name": "hifitime",
                    "kind": "lib"
                }
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        },
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug integration test 'lib'",
            "cargo": {
                "args": [
                    "test",
                    "--no-run",
                    "--test=lib",
                    "--package=hifitime"
                ],
                "filter": {
                    "name": "lib",
                    "kind": "test"
                }
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        },
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug integration test 'sim'",
            "cargo": {
                "args": [
                    "test",
                    "--no-run",
                    "--test=sim",
                    "--package=hifitime"
                ],
                "filter": {
                    "name": "sim",
                    "kind": "test"
                }
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        },
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug integration test 'datetime'",
            "cargo": {
                "args": [
                    "test",
                    "--no-run",
                    "--test=datetime",
                    "--package=hifitime"
                ],
                "filter": {
                    "name": "datetime",
                    "kind": "test"
                }
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        },
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug integration test 'julian'",
            "cargo": {
                "args": [
                    "test",
                    "--no-run",
                    "--test=julian",
                    "--package=hifitime"
                ],
                "filter": {
                    "name": "julian",
                    "kind": "test"
                }
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        }
    ]
}