cf-gears-toolkit-utils 0.6.4

ToolKit utils library
Documentation
# ToolKit Utils

Small utility helpers used by Gears / ToolKit.

## Overview

The `cf-gears-toolkit-utils` crate currently provides optional serde support for `humantime`.

## Usage

```rust
use serde::{Deserialize, Serialize};
use std::time::Duration;

#[derive(Serialize, Deserialize)]
struct Foo {
    #[serde(with = "toolkit_utils::humantime_serde")]
    timeout: Duration,
}
```

## License

Licensed under Apache-2.0.