aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: e8c44822bd4abc656677f9faa1c6b375fda56e5e (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
28
29
30
31
32
33
[package]
name = "makers"
version = "0.6.1"
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"]

[features]
default = ['full']
full = ['dirs', 'glob']

[dependencies]
dirs = { version = "3.0.1", optional = true }
env_logger = "0.8.3"
eyre = "0.6.5"
glob = { version = "0.3.0", optional = true }
jane-eyre = "0.3.0"
lazy_static = "1.4.0"
log = "0.4.14"
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"