-
-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathCargo.toml
More file actions
99 lines (93 loc) · 2.5 KB
/
Copy pathCargo.toml
File metadata and controls
99 lines (93 loc) · 2.5 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[package]
name = "bacon"
version = "3.25.0"
authors = ["dystroy <denys.seguret@gmail.com>"]
repository = "https://github.com/Canop/bacon"
description = "background rust compiler"
edition = "2024"
keywords = ["rust", "background", "compiler", "watch", "inotify"]
license = "AGPL-3.0"
categories = ["command-line-utilities", "development-tools"]
readme = "README.md"
rust-version = "1.85"
exclude = [
"/.github/",
"/bacon.json",
"/bacon.toml",
"/build-scripts/",
"/deny.toml",
"/flake.lock",
"/flake.nix",
"/fmt.sh",
"/img/",
"/install.sh",
"/rustfmt.toml",
"/website/",
]
[features]
default = []
clipboard = ["arboard"]
sound = ["rodio"]
[dependencies]
anyhow = "1.0"
arboard = { version = "3.4", default-features = false, optional = true }
cargo_metadata = "0.19"
clap = { version = "4.6", features = ["derive", "cargo"] }
clap-help = "1.6"
clap_complete = { version = "4.6", features = ["unstable-dynamic"] }
cli-log = "2.1"
crokey = "1.5"
ctrlc = "3.4"
directories-next = "2.0.0"
gix = { version = "0.87", default-features = false, features = [ "sha1", "index", "excludes", "parallel" ] }
glob = "0.3"
iq = { version = "0.5", features = ["template"] }
lazy-regex = "3.6"
notify = "8.2.0"
paste = "1.0"
rodio = { version = "0.21", optional = true, default-features = false, features = [ "mp3", "playback", "tracing" ] }
rustc-hash = "2"
schemars = "1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
termimad = "0.35"
toml = "1"
unicode-width = "0.2"
vte = "0.15"
[dev-dependencies]
pretty_assertions = "1.4"
[lints.clippy]
bool_to_int_with_if = "allow"
collapsible_else_if = "allow"
collapsible_if = "allow"
default_trait_access = "allow"
derive_partial_eq_without_eq = "allow"
get_first = "allow"
if_not_else = "allow"
if_same_then_else = "allow"
items_after_statements = "allow"
len_without_is_empty = "allow"
map_entry = "allow"
match_same_arms = "allow"
missing_errors_doc = "allow"
must_use_candidate = "allow"
new_without_default = "allow"
return_self_not_must_use = "allow"
single_match_else = "allow"
struct_excessive_bools = "allow"
too_many_lines = "allow"
unnecessary_debug_formatting = "allow"
while_let_on_iterator = "allow"
wildcard_imports = "allow"
[profile.release]
debug = false
lto = "fat"
strip = "symbols"
codegen-units = 1
[patch.crates-io]
# clap-help = { path = "../clap-help" }
# termimad = { path = "../termimad" }
# crokey = { path = "../crokey" }
# coolor = { path = "../coolor" }
# iq = { path = "../iq" }
# lazy-regex = { path = "../lazy-regex" }