# 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.1.12" 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] hippotat-macros = { version = "1.1.3", path = "macros" } backtrace = "0.3.3" 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.6" 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 = "0.14.7", features = ["full"] } hyper-tls = "0.5" indenter = "0.3" ipnet = "2.3" itertools = ">=0.10.1, <0.14" 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.30", features = ["fs", "process", "signal", "term", "uio"] } parking_lot = ">= 0.11, < 0.13" pin-project-lite = "0.2" regex = "1.5" sha2 = "0.10" subtle = "2" syslog = ">=6, <8" thiserror = "1.0.2" tokio = { version = "1.7", features = ["full"] } void = "1" [build-dependencies] semver = "1.0.14" serde = { version = "1.0.106", features = ["derive"] } serde_json = "1.0.41"