-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (31 loc) · 868 Bytes
/
Cargo.toml
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 = "make_ultra"
version = "0.2.4"
authors = ["CoolOppo <CoolOppo@users.noreply.github.com>"]
edition = "2018"
description = "A simple task-runner which tracks changes in files and runs commands based on rules in parallel."
license = "MIT OR Apache-2.0 OR Unlicense"
keywords = ["task", "build", "make"]
categories = ["command-line-utilities", "development-tools::build-utils"]
repository = "https://github.com/CoolOppo/make-ultra"
[dependencies]
bincode = "1.1.2"
cached = "0.8.0"
clap = "2.32.0"
crossbeam = "0.7.1"
hashbrown = {version = "0.1.8", features = ["serde"]}
ignore = "0.4.6"
lazy_static = "1.2.0"
maplit = "1.0.1"
parking_lot = {version = "0.7.1"}
petgraph = "0.4.13"
rayon = "1.0.3"
regex = "1.1.0"
serde = "1.0.85"
serde_derive = "1.0.85"
serde_regex = "0.3.1"
snap = "0.2"
toml = "0.4.10"
[profile.release]
lto = 'thin'
panic = 'abort'