Adds BotServ as a new module crate (fedserv-botserv) and a persisted bot
registry: a typed Bot{nick,user,host,gecos} threaded through the event log
(new bots map folded in apply, snapshotted, Local scope). BOT ADD/DEL/LIST
gated on the typed Priv::Admin. BotServ is a default service (uid suffix
AAAAAD). Next slices: introduce bots on the network, ASSIGN to channels, and
in-channel fantasy commands. Data + oper-gated engine tests.
37 lines
1.1 KiB
TOML
37 lines
1.1 KiB
TOML
[workspace]
|
|
members = ["api", "inspircd", "chanserv", "nickserv", "example", "botserv"]
|
|
|
|
[package]
|
|
name = "fedserv"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
description = "Federated IRC services daemon (protocol-agnostic core, InspIRCd link first)"
|
|
|
|
[dependencies]
|
|
fedserv-api = { path = "api" }
|
|
fedserv-inspircd = { path = "inspircd" }
|
|
fedserv-chanserv = { path = "chanserv" }
|
|
fedserv-nickserv = { path = "nickserv" }
|
|
fedserv-example = { path = "example" }
|
|
fedserv-botserv = { path = "botserv" }
|
|
tokio = { version = "1", features = ["net", "io-util", "rt-multi-thread", "macros", "time", "sync", "process"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
toml = "0.8"
|
|
argon2 = { version = "0.5", features = ["std"] }
|
|
base64 = "0.22"
|
|
sha2 = "0.10"
|
|
hmac = "0.12"
|
|
pbkdf2 = { version = "0.12", default-features = false, features = ["hmac"] }
|
|
subtle = "2"
|
|
anyhow = "1"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
tokio-rustls = "0.26.4"
|
|
rustls-pemfile = "2.2.0"
|
|
tonic = { version = "0.12", features = ["tls"] }
|
|
prost = "0.13"
|
|
tokio-stream = "0.1"
|
|
|
|
[build-dependencies]
|
|
tonic-build = "0.12"
|