-
Notifications
You must be signed in to change notification settings - Fork 357
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (43 loc) · 1.32 KB
/
Cargo.toml
File metadata and controls
47 lines (43 loc) · 1.32 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
# SPDX-License-Identifier: GPL-3.0-or-later
[workspace]
members = [
"platform-checks",
"bear",
"intercept-preload",
"intercept-wrapper",
"integration-tests"
]
resolver = "3"
[workspace.package]
version = "4.0.4"
authors = ["László Nagy <rizsotto at gmail dot com>"]
repository = "https://github.com/rizsotto/Bear"
homepage = "https://github.com/rizsotto/Bear"
license = "GPL-3.0-or-later"
edition = "2024"
[workspace.dependencies]
thiserror = "2.0"
anyhow = "1.0"
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde_json = { version = "1.0", default-features = false, features = ["std"] }
serde_yml = "0.0.12"
crossbeam-channel = { version = "0.5", default-features = false, features = ["std"] }
clap = { version = "4.5", default-features = false, features = ["std", "cargo", "help", "usage", "suggestions"] }
log = { version = "0.4", default-features = false, features = ["std"] }
env_logger = { version = "0.11", default-features = false, features = ["humantime"]}
directories = "6.0"
shell-words = "1.1"
tempfile = { version = "3.19", default-features = false }
signal-hook = { version = "0.3", default-features = false }
regex = "1.0"
libc = "0.2"
which = "8.0"
cc = "1.2"
assert_cmd = "2.0"
assert_fs = "1.1"
predicates = "3.1"
[profile.release]
strip = true
lto = true
opt-level = 3
codegen-units = 1