alien-core 1.10.5

Deploy software into your customers' cloud accounts and keep it fully managed
Documentation
mod stack;
pub use stack::*;

mod stack_input;
pub use stack_input::*;

pub mod permissions;
pub use permissions::*;

mod platform;
pub use platform::*;

pub mod runtime_environment;
pub use runtime_environment::*;

mod build_targets;
pub use build_targets::*;

mod error;
pub use error::*;

mod resource;
pub use resource::*;

mod ownership;
pub use ownership::*;

mod tags;
pub use tags::*;

mod load_balancer;
pub use load_balancer::*;

mod kubernetes_naming;
pub use kubernetes_naming::*;

mod resources;
pub use resources::*;

pub mod events;
pub use events::*;

pub mod app_events;
pub use app_events::*;

mod id_utils;
pub use id_utils::*;

mod stack_state;
pub use stack_state::*;

mod stack_settings;
pub use stack_settings::*;

mod public_urls;
pub use public_urls::*;

pub mod bindings;
pub use bindings::*;

mod external_bindings;
pub use external_bindings::*;

mod client_config;
pub use client_config::*;

mod deployment;
pub use deployment::*;

mod dev_status;
pub use dev_status::*;

mod heartbeat;
pub use heartbeat::*;

pub mod presigned;
pub use presigned::*;

pub mod embedded_config;
pub mod sync;

pub mod commands_types;
pub use commands_types::*;

pub mod debug_session;

pub mod compute_planner;
pub mod crontab_to_eventbridge;
pub mod file_utils;
pub mod image_rewrite;
pub mod import;
pub mod instance_catalog;
pub use import::*;

pub use alien_macros::alien_event;

pub const VERSION: &str = env!("CARGO_PKG_VERSION");