6 releases

0.1.5 May 6, 2021
0.1.4 May 6, 2021
0.1.2 Apr 12, 2021
0.1.0 Dec 30, 2020

#3 in #tailscale

Download history 35/week @ 2024-07-20 50/week @ 2024-07-27 29/week @ 2024-08-03 101/week @ 2024-08-10 34/week @ 2024-08-17 38/week @ 2024-08-24 48/week @ 2024-08-31 32/week @ 2024-09-07 45/week @ 2024-09-14 71/week @ 2024-09-21 129/week @ 2024-09-28 101/week @ 2024-10-05 38/week @ 2024-10-12 64/week @ 2024-10-19 22/week @ 2024-10-26 19/week @ 2024-11-02

160 downloads per month

Apache-2.0

10KB
158 lines

cio

cargo-build cargo-clippy cargo-test rustfmt cloud-run

Helper functions and types for doing the activities of a CIO.

Configuration

Runtime Flags

Specific runtime behaviors can be controlled via environment variables. Flags are disabled by default and setting the variable to true will enable the feature.

Flag Description
RFD_PDFS_IN_GITHUB Enables committing of rendered RFD PDFs back to their source repo
RFD_PDFS_IN_GOOGLE_DRIVE Enables writing of rendered RFD PDFs to Google Drive

The architecture for this application server and all it's surroundings is:

arch.png


lib.rs:

  • A rust library for interacting with the Tailscale API.
  • For more information, the Tailscale API is still in beta. The docs are
  • here: https://github.com/tailscale/tailscale/blob/main/api.md
  • Example:
  • use serde::{Deserialize, Serialize};
  • use tailscale_api::Tailscale;
  • async fn get_devices() {
  • // Initialize the Tailscale client.
    
  • let tailscale = Tailscale::new_from_env();
    
  • // List the devices.
    
  • let devices = tailscale.list_devices().await.unwrap();
    
  • println!("{:?}", devices);
    
  • }
  • 
    

Dependencies

~5–17MB
~232K SLoC