1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
[package]
name = "pushpin"
version = "1.41.0"
authors = ["Justin Karneges <jkarneges@fastly.com>"]
description = "Reverse proxy for realtime web services"
repository = "https://github.com/fastly/pushpin"
readme = "README.md"
license = "Apache-2.0"
edition = "2018"
rust-version = "1.75"
default-run = "pushpin"
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
[lib]
crate-type = ["rlib", "staticlib"]
[dependencies]
arrayvec = "0.7"
base64 = "0.22"
clap = { version = "4", features = ["cargo", "string", "wrap_help", "derive"] }
config = "0.15"
httparse = "1.7"
ipnet = "2"
jsonwebtoken = "9"
libc = "0.2"
log = "0.4"
miniz_oxide = "0.7"
mio = { version = "1", features = ["os-poll", "os-ext", "net"] }
notify = "8"
openssl = "0.10"
paste = "1.0"
rustls = "0.23"
rustls-native-certs = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha1 = "0.10"
signal-hook = "0.3"
slab = "0.4"
socket2 = "0.5"
thiserror = "1.0"
zmq = "0.9"
time = { version = "0.3", features = ["formatting", "local-offset", "macros"] }
url = "2.3"
[dev-dependencies]
criterion = "0.5"
env_logger = { version = "0.11", default-features = false }
test-log = "0.2"
[build-dependencies]
pkg-config = "0.3"
time = { version = "0.3", features = ["formatting", "local-offset", "macros"] }
cbindgen = ">=0.27, <0.30"
[[bench]]
name = "server"
harness = false
[[bench]]
name = "client"
harness = false
[[bin]]
name = "pushpin-connmgr"
test = false
bench = false
[[bin]]
name = "m2adapter"
test = false
bench = false
[[bin]]
name = "pushpin-proxy"
test = false
bench = false
[[bin]]
name = "pushpin-handler"
test = false
bench = false
[[bin]]
name = "pushpin"
test = false
bench = false
[[bin]]
name = "pushpin-publish"
test = false
bench = false
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(qt_lib_prefix, values("Qt", "Qt6", "Qt5"))'] }
[lints.clippy]
uninlined_format_args = "allow"
|