-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
41 lines (35 loc) · 997 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
34
35
36
37
38
39
40
41
[package]
name = "funzzy"
version = "1.5.0"
authors = ["Cristian Oliveira <[email protected]>"]
description = "Yet another fancy watcher inspired by entr."
license = "MIT"
repository = "https://github.com/cristianoliveira/funzzy"
edition = "2021"
default-run = "funzzy" # the binary to run when `cargo run` is called
[profile.release]
lto = true # See https://doc.rust-lang.org/cargo/reference/profiles.html#lto
[features]
test-integration-e2e = ["test-integration-file-system", "test-integration"]
test-integration-file-system = []
test-integration = []
[dependencies]
docopt = "1.1.1"
serde = "1.0" # if you're using `derive(Deserialize)`
serde_derive = "1.0" # if you're using `derive(Deserialize)`
notify = "4.0.0"
yaml-rust = "0.4.5"
glob="0.2.11"
notify-debouncer-mini = "0.3.0"
nix = "0.26.2"
[dev-dependencies]
assert_cmd = "2.0.14"
predicates = "3.1.0"
pretty_assertions = "1.4.1"
[[bin]]
name = "funzzy"
path = "src/main.rs"
# alias
[[bin]]
name = "fzz"
path = "src/main.rs"