chiark / gitweb /
server: route wip, do sending
[hippotat.git] / macros / Cargo.toml
1 # Copyright 2021 Ian Jackson and contributors to Hippotat
2 # SPDX-License-Identifier: GPL-3.0-or-later
3 # There is NO WARRANTY.
4
5 [package]
6 name = "hippotat-macros"
7 version = "0.0.0"
8 edition = "2018"
9 description="Asinine HTTP-over-IP, proc-macros"
10 license="GPL-3.0-or-later"
11 repository="https://salsa.debian.org/iwj/hippotat"
12
13 [dependencies]
14 itertools = "0.10"
15 syn = "1"
16 proc-macro2 = "1"
17 quote = "1"
18
19 [lib]
20 path = "macros.rs"
21 proc-macro = true