[go: up one dir, main page]

File: Cargo.toml

package info (click to toggle)
rust-condure 1.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,140 kB
  • sloc: python: 267; makefile: 10
file content (120 lines) | stat: -rw-r--r-- 2,340 bytes parent folder | download
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# 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 = "2018"
name = "condure"
version = "1.9.1"
authors = ["Justin Karneges <justin@fanout.io>"]
autobins = false
description = "HTTP/WebSocket connection manager"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/fanout/condure"

[package.metadata.deb]
extended-description = """
Condure is a service that manages network connections on behalf of server
applications, in order to allow controlling the connections from multiple
processes. Applications communicate with Condure over ZeroMQ.

Condure can only manage connections for protocols it knows about. Currently
this is HTTP/1 and WebSockets.

The project was inspired by Mongrel2.
"""
separate-debug-symbols = true
build-depends = "pkg-config, libzmq3-dev"
autobins = false

[package.metadata.rpm]
package = "condure"

[package.metadata.rpm.cargo]
buildflags = ["--release"]

[package.metadata.rpm.targets.condure]
path = "/usr/bin/condure"

[profile.dev]
panic = "abort"

[profile.release]
panic = "abort"

[[bin]]
name = "condure"

[[bench]]
name = "server"
harness = false

[dependencies.arrayvec]
version = "0.7"

[dependencies.base64]
version = "0.13"

[dependencies.clap]
version = "3.2"
features = [
    "cargo",
    "wrap_help",
]

[dependencies.httparse]
version = "1.7"

[dependencies.log]
version = "0.4"

[dependencies.miniz_oxide]
version = "0.6"

[dependencies.mio]
version = "0.8"
features = [
    "os-poll",
    "os-ext",
    "net",
]

[dependencies.openssl]
version = "0.10"

[dependencies.paste]
version = "1.0"

[dependencies.sha1]
version = "0.10"

[dependencies.signal-hook]
version = "0.3"

[dependencies.slab]
version = "0.4"

[dependencies.socket2]
version = "0.4"

[dependencies.time]
version = "0.3"
features = [
    "formatting",
    "local-offset",
    "macros",
]

[dependencies.zmq]
version = "0.9"

[dev-dependencies.criterion]
version = "0.3"