12 lines
313 B
Rust
12 lines
313 B
Rust
|
|
//! mailer-bin: Standalone Rust binary for the @serve.zone/mailer network stack.
|
||
|
|
|
||
|
|
fn main() {
|
||
|
|
println!(
|
||
|
|
"mailer-bin v{} (core: {}, smtp: {}, security: {})",
|
||
|
|
env!("CARGO_PKG_VERSION"),
|
||
|
|
mailer_core::version(),
|
||
|
|
mailer_smtp::version(),
|
||
|
|
mailer_security::version(),
|
||
|
|
);
|
||
|
|
}
|