cardamon 0.2.0

Cardamon is a tool to help development teams measure the power consumption and carbon emissions of their software.
Documentation
pub mod m20240822_095823_create_run_table;
pub mod m20240822_095830_create_metrics_table;
pub mod m20240822_095838_create_iteration_table;
pub mod m20241109_180400_add_region_column;
pub mod m20241110_191154_add_ci_column;

pub use sea_orm_migration::prelude::*;

pub struct Migrator;

#[async_trait::async_trait]
impl MigratorTrait for Migrator {
    fn migrations() -> Vec<Box<dyn MigrationTrait>> {
        vec![
            Box::new(m20240822_095823_create_run_table::Migration),
            Box::new(m20240822_095830_create_metrics_table::Migration),
            Box::new(m20240822_095838_create_iteration_table::Migration),
            Box::new(m20241109_180400_add_region_column::Migration),
            Box::new(m20241110_191154_add_ci_column::Migration),
        ]
    }
}