hm-plugin-protocol 0.0.1

Wire-level data types shared between the hm binary and hm plugins.
Documentation
---
source: crates/hm-plugin-protocol/tests/schema_snapshots.rs
expression: schema_for!(DockerCommitArgs)
---
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "DockerCommitArgs",
  "description": "Host-fn argument struct for `hm_docker_commit`.",
  "type": "object",
  "required": [
    "container_id",
    "tag"
  ],
  "properties": {
    "container_id": {
      "type": "string"
    },
    "tag": {
      "type": "string"
    }
  }
}