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

#1735 in Web programming

Download history 6/week @ 2024-12-02 2/week @ 2024-12-09 50/week @ 2025-01-06 33/week @ 2025-01-13 46/week @ 2025-01-20 31/week @ 2025-01-27 25/week @ 2025-02-03 78/week @ 2025-02-10 53/week @ 2025-02-17 42/week @ 2025-02-24 31/week @ 2025-03-03 22/week @ 2025-03-10 23/week @ 2025-03-17

119 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
~235K SLoC