-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
57 lines (44 loc) · 1.04 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "fac"
version = "0.5.4"
authors = ["[email protected]"]
edition = "2018"
description = "build tool"
license = "GPL-2.0+"
repository = "https://github.com/droundy/fac"
homepage = "https://physics.oregonstate.edu/~droundy/fac"
documentation = "https://physics.oregonstate.edu/~droundy/fac/documentation.html"
readme = "README.md"
[badges]
travis-ci = { repository = "droundy/fac", branch = "master" }
appveyor = { repository = "droundy/fac", branch = "master", service = "github"}
[lib]
name = "fac"
path = "src/lib.rs"
[[bin]]
name = "fac"
path = "src/main.rs"
doc = false
[dependencies]
libc = "^0.2"
bigbro = "0.5"
clap = "3.0.14"
num_cpus = "1.13.1"
metrohash = "1.0.6"
notify = "4.0.17"
tinyset = "0.4.10"
pathdiff = "0.2.0"
git-version = "0.3.4"
internment = { version = "0.6.0", features = ["tinyset"] }
termcolor = "1.0.5"
atty = "0.2.0"
ctrlc = "3.2.1"
lazy_static = "1.4.0"
crude-profiler = "^0.1.7"
[dev-dependencies]
quickcheck = "1.0.3"
[features]
# Treat warnings as a build error.
strict = []
[profile.release]
debug = true