ghac 0.2.0

Replace with description
Documentation
  • Coverage
  • 62.5%
    20 out of 32 items documented1 out of 9 items with examples
  • Size
  • Source code size: 29.82 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 4.04 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 19s Average build duration of successful builds.
  • all releases: 24s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Xuanwo/ghac
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Xuanwo

ghac   Build Status Latest Version

ghac is a generated proto definitions for GitHub Actions Cache service V2.

Please note:

  • ghac is a private service, and its API may change at any time. If you encounter any issues, please report them.
  • This crate only provides a generated proto definitions. For a high-level API, please refer to opendal, which allows access to all storage using the same API.

Quick Start

use prost::Message;
use ghac::v1::CreateCacheEntryRequest;

fn test() -> Result<(), Box<dyn std::error::Error>> {
    let request = CreateCacheEntryRequest {
        metadata: None,
        key: "hello, world!".to_string(),
        version: "1".to_string(),
    };
    let bs = request.encode_to_vec();
    Ok(())
}

Contributing

Check out the CONTRIBUTING.md guide for more details on getting started with contributing to this project.

Getting help

Submit issues for bug report or asking questions in discussion.

License

Licensed under Apache License, Version 2.0.