-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (48 loc) · 2.28 KB
/
Cargo.toml
File metadata and controls
49 lines (48 loc) · 2.28 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
[package]
name = "py-checked-exceptions"
version = "0.1.0"
edition = "2024"
license-file = "LICENSE"
description = "A static analyzer that enforces exception documentation in Python code"
homepage = "https://github.com/cstruct/py-checked-exceptions"
repository = "https://github.com/cstruct/py-checked-exceptions"
readme = "README.md"
keywords = ["python", "static-analysis"]
categories = ["command-line-utilities"]
[dependencies]
anyhow = "1.0.98"
itertools = "0.14.0"
ruff_db = { git = "https://github.com/cstruct/ruff.git", rev = "9d081b0df6bb1d514252ca91d037cfca1ee061a8", features = ["os"]}
ruff_linter = { git = "https://github.com/cstruct/ruff.git", rev = "9d081b0df6bb1d514252ca91d037cfca1ee061a8" }
ruff_python_ast = { git = "https://github.com/cstruct/ruff.git", rev = "9d081b0df6bb1d514252ca91d037cfca1ee061a8" }
ruff_text_size = { git = "https://github.com/cstruct/ruff.git", rev = "9d081b0df6bb1d514252ca91d037cfca1ee061a8" }
ruff_source_file = { git = "https://github.com/cstruct/ruff.git", rev = "9d081b0df6bb1d514252ca91d037cfca1ee061a8" }
ruff_memory_usage = { git = "https://github.com/cstruct/ruff.git", rev = "9d081b0df6bb1d514252ca91d037cfca1ee061a8" }
ty_ide = { git = "https://github.com/cstruct/ruff.git", rev = "9d081b0df6bb1d514252ca91d037cfca1ee061a8" }
ty_static = { git = "https://github.com/cstruct/ruff.git", rev = "9d081b0df6bb1d514252ca91d037cfca1ee061a8" }
ty_project = { git = "https://github.com/cstruct/ruff.git", rev = "9d081b0df6bb1d514252ca91d037cfca1ee061a8" }
ty_python_semantic = { git = "https://github.com/cstruct/ruff.git", rev = "9d081b0df6bb1d514252ca91d037cfca1ee061a8" }
once_cell = "1.21.3"
indicatif = "0.18.0"
tracing = "0.1.41"
rayon = "1.10.0"
crossbeam = { version = "0.8.4", features = ["crossbeam-channel"] }
camino = "1.1.11"
clap = { version = "4.5.43", features = ["derive", "env"] }
salsa = { git = "https://github.com/salsa-rs/salsa.git", rev = "918d35d873b2b73a0237536144ef4d22e8d57f27", default-features = false, features = [
"compact_str",
"macros",
"salsa_unstable",
"inventory",
] }
get-size2 = { version = "0.6.2", features = [
"derive",
"smallvec",
"hashbrown",
"compact-str",
] }
colored = "3.0.0"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
tracing-flame = "0.2.0"
jiff = "0.2.15"
clearscreen = "4.0.2"