15 releases

0.3.1 Nov 18, 2022
0.1.15 Aug 25, 2021
0.1.13 Jul 7, 2021
0.1.11 Jun 21, 2021

#2222 in Web programming

Download history 36/week @ 2024-01-04 29/week @ 2024-01-11 35/week @ 2024-01-18 43/week @ 2024-01-25 10/week @ 2024-02-15 36/week @ 2024-02-22 10/week @ 2024-02-29 5/week @ 2024-03-07

55 downloads per month

Apache-2.0

30KB
586 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 MailChimp API.
  • For more information, the MailChimp API is documented at docs.mailchimp.com.
  • Example:
  • use mailchimp_api::MailChimp;
  • use serde::{Deserialize, Serialize};
  • async fn get_subscribers() {
  • // Initialize the MailChimp client.
    
  • let mailchimp = MailChimp::new_from_env("", "", "");
    
  • // Get the subscribers for a mailing list.
    
  • let subscribers = mailchimp.get_subscribers("some_id").await.unwrap();
    
  • println!("{:?}", subscribers);
    
  • }
  • 
    

Dependencies

~5–19MB
~278K SLoC