Brittling -> Brittle

This commit is contained in:
Andreas Tsouchlos 2026-01-02 01:38:11 +02:00
parent bc0f71956b
commit 59b4ad5f2c
7 changed files with 8 additions and 8 deletions

4
Cargo.lock generated
View File

@ -154,7 +154,7 @@ name = "brittle"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"ammonia", "ammonia",
"brittling_macros", "brittle_macros",
"clap", "clap",
"crossterm", "crossterm",
"env_logger", "env_logger",
@ -173,7 +173,7 @@ dependencies = [
] ]
[[package]] [[package]]
name = "brittling_macros" name = "brittle_macros"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"quote", "quote",

View File

@ -22,5 +22,5 @@ static_cell = "2.1.1"
textwrap = "0.16.2" textwrap = "0.16.2"
tokio = { version = "1.48.0", features = ["full"] } tokio = { version = "1.48.0", features = ["full"] }
unicode-general-category = "1.1.0" unicode-general-category = "1.1.0"
brittling_macros = { path = "macros" } brittle_macros = { path = "macros" }
futures = "0.3.31" futures = "0.3.31"

View File

@ -1,5 +1,5 @@
[package] [package]
name = "brittling_macros" name = "brittle_macros"
version = "0.1.0" version = "0.1.0"
edition = "2024" edition = "2024"

View File

@ -21,7 +21,7 @@ use crate::{
}, },
status_error, status_info, status_error, status_info,
}; };
use brittling_macros::component; use brittle_macros::component;
use seeding::{SeedingAction, SeedingComponent}; use seeding::{SeedingAction, SeedingComponent};
use snowballing::{SnowballingAction, SnowballingComponent}; use snowballing::{SnowballingAction, SnowballingComponent};

View File

@ -5,7 +5,7 @@ use crate::{
app::{GlobalAction, run::Action}, app::{GlobalAction, run::Action},
literature::Publication, literature::Publication,
}; };
use brittling_macros::component; use brittle_macros::component;
#[derive(Serialize, Deserialize, Default)] #[derive(Serialize, Deserialize, Default)]
pub struct SeedingComponent { pub struct SeedingComponent {

View File

@ -1,4 +1,4 @@
use brittling_macros::component; use brittle_macros::component;
use ratatui::widgets::ListState; use ratatui::widgets::ListState;
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};

View File

@ -39,7 +39,7 @@ async fn run(args: &Args) -> Result<(), Box<dyn Error>> {
} }
#[derive(Parser)] #[derive(Parser)]
#[command(name = "Brittling")] #[command(name = "Brittle")]
#[command(about = "A tool to perform snowballing for literature studies", long_about = None)] #[command(about = "A tool to perform snowballing for literature studies", long_about = None)]
struct Args { struct Args {
#[arg(short, long)] #[arg(short, long)]