File: Cargo.toml

package info (click to toggle)
hippotat 1.3.1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 696 kB
  • sloc: sh: 407; makefile: 132; perl: 84; python: 79; ansic: 34
file content (75 lines) | stat: -rw-r--r-- 1,931 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
# Copyright 2021-2022 Ian Jackson and contributors to Hippotat
# SPDX-License-Identifier: GPL-3.0-or-later WITH LicenseRef-Hippotat-OpenSSL-Exception
# There is NO WARRANTY.

[package]
name = "hippotat"
version = "1.3.1"
edition = "2018"
description="Asinine HTTP-over-IP"
license="GPL-3.0-or-later"
# ^ Actually, it's WITH LicenseRef-Hippotat-OpenSSL-Exception
repository="https://salsa.debian.org/iwj/hippotat"
homepage="https://www.chiark.greenend.org.uk/~ianmdlvl/hippotat/current/docs/"
rust-version = "1.63"

[workspace]
members = ["macros"]

[[bin]]
name="hippotat"
path="client/client.rs"

[[bin]]
name="hippotatd"
path="server/server.rs"

[dependencies]

derive-deftly = "1"
hippotat-macros = { version = "=1.3.1", path = "macros" }

backtrace = "0.3.74"
base64 = ">=0.21, <0.23"
cfg-if = "1"
# clap 3 would work too at the time of writing, but it lacks the `wrap_help`
# feature - that's built-in there.
clap = { version = "4", features = ["derive", "wrap_help"] }
easy-ext = "1"
educe = ">=0.4.1, <0.7"
either = "1.5.1"
env_logger = ">=0.9, <0.12"
eyre = "0.6"
fehler = "1"
futures = "0.3"
heck = ">=0.4, <0.6"
hyper = { version = "1", features = ["full"] }
hyper-util = "0.1.10"
indenter = "0.3"
ipnet = "2.3"
itertools = ">=0.10.1, <0.15"
lazy-regex = ">=2.4, <4"
lazy_static = "1.4"
libc = "0.2" # just for EISDIR due to IsADirectory
log = "0.4.14"
memchr = "2"
mime = "0.3.4"
nix = { version = ">=0.25, <0.32", features = ["fs", "process", "signal", "term", "uio"] }
parking_lot = ">= 0.11, < 0.13"
pin-project-lite = "0.2"
reqwest = { version = "0.12.8", features = [ "default-tls" ] }
regex = "1.5"
sd-notify = "0.4.1"
sha2 = "0.10"
subtle = "2"
syslog = ">=6, <8"
thiserror = ">=1.0.2, <3"
tokio = { version = "1.43", features = ["full"] }
void = "1"
http-body = "1.0.1"
http-body-util = "0.1.2"

[build-dependencies]
semver = "1.0.14"
serde = { version = "1.0.106", features = ["derive"] }
serde_json = "1.0.41"