-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (51 loc) · 1.64 KB
/
Cargo.toml
File metadata and controls
57 lines (51 loc) · 1.64 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
[package]
name = "casr"
authors = ["Andrey Fedotov <splashgitar@gmail.com>", "Alexey Vishnyakov <pmvishnya@gmail.com>", "Georgy Savidov <avgor46@ispras.ru>", "Ilya Yegorov <Yegorov_Ilya@ispras.ru>"]
version = "2.12.1"
description = "Collect crash reports, triage, and estimate severity."
keywords = ["gdb", "crash", "stacktrace", "triage", "coredump"]
readme = "../README.md"
repository = "https://github.com/ispras/casr.git"
edition = "2024"
license = "Apache-2.0"
exclude = ["/tests"]
[dependencies]
lettre = "0.11.15"
secrecy = "0.8"
shell-words = "1.1"
anyhow = "1.0"
clap = { version = "4.5", features = ["wrap_help", "cargo", "env"] }
chrono = "0.4"
goblin = "0.9"
log = "0.4"
simplelog = "0.12"
cursive = { version = "0.21", default-features = false, features = ["termion-backend"] }
cursive_tree_view = "0.9"
gdb-command = "0.7"
nix = { version = "0.29", features = ["fs"] }
rayon = "1.10"
num_cpus = "1.16"
is_executable = "1.0"
linux-personality = "2.0"
colored = "3.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
regex = "1"
libc = "0"
walkdir = "2"
reqwest = { version = "0.12", features = ["json", "multipart", "rustls-tls"], default-features = false, optional = true }
tokio = { version = "1", features = ["rt", "macros"], optional = true }
toml = { version = "0.8", optional = true }
wait-timeout = "0.2"
which = "7.0"
copy_dir = "0.1"
libcasr = { path = "../libcasr", version = "2.12.1", features = ["serde", "exploitable"] }
[features]
dojo = ["dep:reqwest", "dep:tokio", "dep:toml"]
[package.metadata.docs.rs]
features = ["dojo"]
[[bin]]
name = "casr-dojo"
required-features = ["dojo"]
[dev-dependencies]
lsb_release = "0.1"