syd 3.52.0

rock-solid application kernel
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// Syd: rock-solid application kernel
// src/bins/mod.rs: Binary entry points for multicall support.
//
// Copyright (c) 2026 Ali Polatel <alip@chesswob.org>
//
// SPDX-License-Identifier: GPL-3.0

//! Binary entry points for multicall support.
//!
//! This module contains the core logic for Syd's utility binaries,
//! extracted so they can be used both as standalone binaries and
//! as subcommands of a multicall binary.

/// PTY to STDIO bidirectional forwarder (syd-pty).
pub mod pty;
/// SOCKS Proxy Forwarder (syd-tor).
pub mod tor;