chiark / gitweb /
config, wip parsing
[hippotat.git] / Cargo.toml
1 # Copyright 2021 Ian Jackson and contributors to Hippotat
2 # SPDX-License-Identifier: AGPL-3.0-or-later
3 # There is NO WARRANTY.
4
5 [package]
6 name = "hippotat"
7 version = "0.0.0"
8 edition = "2018"
9 description="Asinine HTTP-over-IP"
10
11 [workspace]
12 members = ["macros"]
13
14 [dependencies]
15
16 hippotat-macros = { path = "macros" }
17
18 anyhow = "1"
19 configparser = "2"
20 env_logger = "0.9"
21 extend = "1"
22 fehler = "1"
23 hyper = "0.14"
24 ipnet = "2"
25 itertools = "0.10"
26 lazy-regex = "2"
27 regex = "1.5"
28 log = "0.4"
29 structopt = "0.3"
30 tokio = { version = "1", features = ["full"] }
31 void = "1"