kinetics 0.15.1

Kinetics is a hosting platform for Rust applications that allows you to deploy all types of workloads by writing **only Rust code**.
Documentation
// Public structs for kinetics API.
pub mod api;

// Backend dev tools need DeployConfig.
mod config;

pub mod credentials;

// Export cli error type for use cli::run.
pub mod error;

// Export Function type for use with cli::run struct.
pub mod function;

// Reexport macros, so that users only import things from kinetics crate.
pub mod macros;

// Used with cli::run struct.
pub mod project;

mod envs;
mod secrets;

// Used with tools::config.
pub mod sqldb;

// Mostly abstractions over such things like queue, config, http
pub mod tools;