Files
shadowsocks-rust/src/lib.rs
ClaytonKnittel 8416f6dab8 refactor: change error handling to be strongly-typed (#1834)
* Refactor error handling to be strongly-typed.

* Remove unused function.

* Remove comment.

* Add module + type docstrings.

* Make error module private.

* Fix windows build.
2025-01-07 19:25:30 +08:00

21 lines
423 B
Rust

//! Shadowsocks service command line utilities
pub mod allocator;
pub mod config;
#[cfg(unix)]
pub mod daemonize;
pub mod error;
#[cfg(feature = "logging")]
pub mod logging;
pub mod monitor;
pub mod password;
pub mod service;
pub mod sys;
pub mod vparser;
/// Build timestamp in UTC
pub const BUILD_TIME: &str = build_time::build_time_utc!();
/// shadowsocks version
pub const VERSION: &str = env!("CARGO_PKG_VERSION");