71 lines
2.0 KiB
TOML
71 lines
2.0 KiB
TOML
[package]
|
|
name = "xmpp-proxy"
|
|
version = "1.0.0"
|
|
authors = ["moparisthebest <admin@moparisthebest.com>"]
|
|
|
|
description = "XMPP reverse proxy and outgoing proxy"
|
|
repository = "https://code.moparisthebest.com/moparisthebest/xmpp-proxy"
|
|
keywords = ["xmpp", "proxy"]
|
|
|
|
license = "AGPL-3.0-or-later"
|
|
readme = "README.md"
|
|
|
|
edition = "2018"
|
|
|
|
include = [
|
|
"**/*.rs",
|
|
"Cargo.toml",
|
|
"*.md",
|
|
"xmpp-proxy.toml",
|
|
]
|
|
|
|
[dependencies]
|
|
toml = "0.5"
|
|
serde_derive = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
futures = "0.3"
|
|
die = "0.2"
|
|
anyhow = "1.0"
|
|
tokio = { version = "1.9", features = ["net", "rt", "rt-multi-thread", "macros", "io-util"] }
|
|
|
|
# logging deps
|
|
log = "0.4"
|
|
rand = { version = "0.8", optional = true, features = [] }
|
|
env_logger = { version = "0.9", optional = true, features = [] }
|
|
|
|
# incoming deps
|
|
tokio-rustls = { version = "0.23", optional = true }
|
|
|
|
# outgoing deps
|
|
lazy_static = { version = "1.4", optional = true }
|
|
webpki-roots = { version = "0.22", optional = true }
|
|
trust-dns-resolver = { version = "0.20", optional = true }
|
|
#trust-dns-resolver = { version = "0.20", features = ["dns-over-rustls"], optional = true }
|
|
|
|
# quic deps
|
|
quinn = { version = "0.8", optional = true }
|
|
|
|
# shared deps needed by quic and incoming
|
|
rustls = { version = "0.20.2", optional = true }
|
|
rustls-pemfile = { version = "0.2.1", optional = true }
|
|
|
|
# websocket deps
|
|
tokio-tungstenite = { version = "0.16", optional = true }
|
|
|
|
[features]
|
|
default = ["incoming", "outgoing", "quic", "websocket", "logging"]
|
|
#default = ["incoming", "outgoing"]
|
|
#default = ["incoming", "quic"]
|
|
#default = ["outgoing", "quic"]
|
|
#default = ["quic"]
|
|
#default = ["outgoing"]
|
|
#default = ["incoming"]
|
|
incoming = ["tokio-rustls", "rustls-pemfile", "rustls"]
|
|
outgoing = ["tokio-rustls", "trust-dns-resolver", "webpki-roots", "lazy_static", "rustls"]
|
|
quic = ["quinn", "rustls-pemfile", "rustls", "webpki-roots"]
|
|
websocket = ["tokio-tungstenite", "tokio-rustls", "rustls-pemfile", "rustls"]
|
|
logging = ["rand", "env_logger"]
|
|
|
|
[package.metadata.cargo-all-features]
|
|
skip_optional_dependencies = true
|