Compare commits

..

3 Commits

Author SHA1 Message Date
db292c2fd1 Some optimization flags. 2025-08-12 10:03:15 -05:00
Micheal Smith
4e9428c376 Added README, and LICENSE. 2025-08-12 10:01:38 -05:00
Micheal Smith
5a084b5bf0 Added chroot support. 2025-08-12 10:01:38 -05:00
2 changed files with 7 additions and 9 deletions

View File

@@ -18,3 +18,7 @@ irc = "1.1"
tokio = { version = "1", features = [ "full" ] }
tracing = "0.1"
tracing-subscriber = "0.3"
[profile.release]
lto = true
strip = true

View File

@@ -1,15 +1,9 @@
use clap::Parser;
use color_eyre::{
Result,
eyre::WrapErr,
};
use color_eyre::{Result, eyre::WrapErr};
use config::Config;
use directories::ProjectDirs;
use std::path::PathBuf;
use tracing::{
info,
instrument,
};
use tracing::{info, instrument};
// TODO: use [clap(long, short, help_heading = Some(section))]
#[derive(Clone, Debug, Parser)]
@@ -38,7 +32,7 @@ pub(crate) struct Args {
#[arg(long)]
pub(crate) model: Option<String>,
#[arg(long)]
#[arg(long = "channel")]
/// List of IRC channels to join.
pub(crate) channels: Option<Vec<String>>,