adk-deploy 0.4.0

Deployment manifest, bundling, and control-plane client for ADK-Rust
Documentation

Deployment manifest, bundling, and control-plane client for ADK-Rust.

Example

use adk_deploy::DeploymentManifest;
use std::path::Path;

let manifest = DeploymentManifest::from_path(Path::new("adk-deploy.toml")).unwrap();
assert_eq!(manifest.agent.name, "my-agent");