Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
"env_logger",
"extend",
"fehler",
+ "hippotat-macros",
"hyper",
"itertools",
"lazy-regex",
"void",
]
+[[package]]
+name = "hippotat-macros"
+version = "0.0.0"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn",
+]
+
[[package]]
name = "http"
version = "0.2.4"
edition = "2018"
description="Asinine HTTP-over-IP"
+[workspace]
+members = ["macros"]
+
[dependencies]
+
+hippotat-macros = { path = "macros" }
+
anyhow = "1"
configparser = "2"
env_logger = "0.9"
--- /dev/null
+# Copyright 2021 Ian Jackson and contributors to Hippotat
+# SPDX-License-Identifier: AGPL-3.0-or-later
+# There is NO WARRANTY.
+
+[package]
+name = "hippotat-macros"
+version = "0.0.0"
+edition = "2018"
+description="Asinine HTTP-over-IP, proc-macros"
+
+[dependencies]
+syn = "1"
+proc-macro2 = "1"
+quote = "1"
+
+[lib]
+path = "macros.rs"
+proc-macro = true
--- /dev/null
+// Copyright 2021 Ian Jackson and contributors to Hippotat
+// SPDX-License-Identifier: AGPL-3.0-or-later
+// There is NO WARRANTY.
+