cmr-peer 0.2.0

CMR peer daemon with HTTP/HTTPS/UDP listeners and multi-transport outbound delivery.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.88"
name = "cmr-peer"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CMR peer daemon with HTTP/HTTPS/UDP listeners and multi-transport outbound delivery."
homepage = "https://github.com/turtle261/competitive-message-router"
documentation = "https://docs.rs/cmr-peer"
readme = false
keywords = [
    "cmr",
    "peer",
    "routing",
    "daemon",
]
categories = [
    "network-programming",
    "command-line-utilities",
]
license = "Apache-2.0"
repository = "https://github.com/turtle261/competitive-message-router"

[features]
default = []
tui = ["dep:crossterm"]

[lib]
name = "cmr_peer"
path = "src/lib.rs"

[[bin]]
name = "cmr-peer"
path = "src/main.rs"

[[test]]
name = "config_transport"
path = "tests/config_transport.rs"

[[test]]
name = "docker_smtp"
path = "tests/docker_smtp.rs"

[dependencies.base64]
version = "0.22.1"

[dependencies.bytes]
version = "1.10.1"

[dependencies.clap]
version = "4.5.53"
features = ["derive"]

[dependencies.cmr-core]
version = "0.2.0"

[dependencies.crossterm]
version = "0.28.1"
optional = true

[dependencies.hex]
version = "0.4.3"

[dependencies.http]
version = "1.3.1"

[dependencies.http-body-util]
version = "0.1.3"

[dependencies.hyper]
version = "1.8.1"
features = [
    "client",
    "http1",
    "server",
]

[dependencies.hyper-rustls]
version = "0.27.7"
features = [
    "http1",
    "ring",
    "rustls-native-certs",
]
default-features = false

[dependencies.hyper-util]
version = "0.1.18"
features = [
    "client",
    "http1",
    "server",
    "tokio",
]

[dependencies.lettre]
version = "0.11.19"
features = [
    "builder",
    "hostname",
    "smtp-transport",
    "tokio1-rustls-tls",
]
default-features = false

[dependencies.rand]
version = "0.9.2"

[dependencies.rustls]
version = "0.23.35"
features = [
    "ring",
    "std",
]
default-features = false

[dependencies.serde]
version = "1.0.228"
features = ["derive"]

[dependencies.serde_json]
version = "1.0.145"

[dependencies.thiserror]
version = "2.0.17"

[dependencies.tokio]
version = "1.48.0"
features = [
    "fs",
    "io-util",
    "macros",
    "net",
    "process",
    "rt-multi-thread",
    "signal",
    "sync",
    "time",
]

[dependencies.tokio-rustls]
version = "0.26.4"
features = [
    "logging",
    "ring",
    "tls12",
]
default-features = false

[dependencies.tokio-stream]
version = "0.1.17"
features = ["sync"]

[dependencies.toml]
version = "0.9.8"

[dependencies.url]
version = "2.5.7"

[dev-dependencies]