import echoircd — from-scratch irc daemon in native rust
This commit is contained in:
commit
9b12791774
38 changed files with 9757 additions and 0 deletions
23
Cargo.toml
Normal file
23
Cargo.toml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
[package]
|
||||
name = "echoircd"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
description = "A small, dependency-light IRC daemon in Rust — InspIRCd-inspired command/module API."
|
||||
license = "MIT"
|
||||
|
||||
[[bin]]
|
||||
name = "echoircd"
|
||||
path = "src/main.rs"
|
||||
|
||||
[lib]
|
||||
name = "echoircd"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
# TLS backend (InspIRCd ships ssl_openssl / ssl_gnutls as modules; this is our
|
||||
# openssl backend — the crate keeps all `unsafe` internal, so the daemon stays
|
||||
# `#![forbid(unsafe_code)]`). A pure-Rust `rustls` backend can slot in beside it.
|
||||
openssl = "0.10"
|
||||
|
||||
[profile.release]
|
||||
opt-level = 3
|
||||
Loading…
Add table
Add a link
Reference in a new issue