aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 4c5ffbfe70fe88eea69b4e2b617389fc6e0fb082 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "makers"
version = "0.1.0"
authors = ["boringcactus / Melody Horn <melody@boringcactus.com>"]
edition = "2018"
description = "a POSIX-compatible make implemented in Rust"
readme = "README.md"
repository = "https://code.boringcactus.com/makers/"
license-file = "LICENSE.md"
keywords = ["build", "make"]
categories = ["development-tools"]

[dependencies]
dirs = "3.0.1"
eyre = "0.6.5"
glob = "0.3.0"
jane-eyre = "0.3.0"
lazy_static = "1.4.0"
nom = "6.1.2"
regex = "1.4.5"
structopt = "0.3.21"

[dev-dependencies]
tempfile = "3.2.0"

# [target.'cfg(unix)'.dependencies]
# signal-hook = "0.3.7"