chiark / gitweb /
cargo metadata: Claim the licence is GPL
[hippotat.git] / macros / Cargo.toml
1 # Copyright 2021-2022 Ian Jackson and contributors to Hippotat
2 # SPDX-License-Identifier: GPL-3.0-or-later WITH LicenseRef-Hippotat-OpenSSL-Exception
3 # There is NO WARRANTY.
4
5 [package]
6 name = "hippotat-macros"
7 version = "1.0.0"
8 edition = "2018"
9 description="Asinine HTTP-over-IP, proc-macros"
10 license="GPL-3.0-or-later"
11 # ^ Actually, it's WITH LicenseRef-Hippotat-OpenSSL-Exception
12 repository="https://salsa.debian.org/iwj/hippotat"
13 homepage="https://www.chiark.greenend.org.uk/~ianmdlvl/hippotat/current/docs/"
14
15 [dependencies]
16 itertools = "0.10"
17 syn = { version = "1", features=["extra-traits"] }
18 proc-macro2 = "1"
19 quote = "1"
20
21 [lib]
22 path = "macros.rs"
23 proc-macro = true