rename: rename to sermo
Some checks failed
build / test-alpine (push) Successful in 1m0s
build / test-debian (push) Failing after 1m22s

This commit is contained in:
user0-07161 2026-02-12 01:09:01 +01:00
parent 522ded016a
commit c6af8917c9
3 changed files with 10 additions and 9 deletions

View file

@ -1,18 +1,18 @@
[package]
name = "irs"
name = "sermo"
version = "0.1.0"
edition = "2024"
[dependencies]
async-trait = "0.1.89"
clap = { version = "4.5.53", features = ["derive"] }
tokio = { version = "1.48.0", features = ["full"] }
clap = { version = "4.5.58", features = ["derive"] }
tokio = { version = "1.49.0", features = ["full"] }
console-subscriber = { version = "0.5.0", optional = true }
tracing = "0.1.44"
tracing-subscriber = "0.3.22"
thiserror = "2.0.17"
anyhow = "1.0.100"
toml = "0.9.10"
thiserror = "2.0.18"
anyhow = "1.0.101"
toml = "1.0.0"
serde = { version = "1.0.228", features = ["derive"] }
once_cell = "1.21.3"

View file

@ -1,4 +1,5 @@
# IRS - *an IRCd written in Rust*
# sermo - *an IRCd written in Rust*
![Rust](https://img.shields.io/badge/rust-%23000000.svg?style=for-the-badge&logo=rust&logoColor=orange)
![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg?style=for-the-badge)
![IRC](https://img.shields.io/badge/irc-black?style=for-the-badge)

View file

@ -19,7 +19,7 @@ fn get_config_path() -> Result<PathBuf, ConfigReadError> {
if cfg!(target_os = "linux") {
if let Some(mut homedir) = home_dir() {
homedir.push(".config");
homedir.push("irs");
homedir.push("sermo");
homedir.push("config.toml");
if homedir.exists() {
@ -27,7 +27,7 @@ fn get_config_path() -> Result<PathBuf, ConfigReadError> {
}
}
let dir = PathBuf::from("/etc/irs/config.toml");
let dir = PathBuf::from("/etc/sermo/config.toml");
if dir.exists() {
dir
} else {