-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (55 loc) · 1.57 KB
/
Copy pathCargo.toml
File metadata and controls
59 lines (55 loc) · 1.57 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
[workspace]
resolver = "2"
members = [
"crates/rulepath_auth",
"crates/rulepath_cli",
"crates/rulepath_config",
"crates/rulepath_dataflow",
"crates/rulepath_diagnostics",
"crates/rulepath_frameworks",
"crates/rulepath_infer",
"crates/rulepath_ir",
"crates/rulepath_lang_python",
"crates/rulepath_lang_typescript",
"crates/rulepath_orms",
"crates/rulepath_parsers",
"crates/rulepath_reporters",
"crates/rulepath_rules",
"crates/rulepath_sarif",
"crates/rulepath_workspace",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0-only"
authors = ["Brian Corder"]
repository = "https://github.com/BrianCorder/rulepath"
description = "Rust-native business logic and invariant analysis for web applications."
[workspace.dependencies]
anyhow = "=1.0.102"
camino = { version = "=1.2.2", features = ["serde1"] }
clap = { version = "=4.6.1", features = ["derive"] }
ignore = "=0.4.25"
lasso = "=0.7.3"
miette = { version = "=7.6.0", features = ["fancy"] }
oxc_allocator = "=0.128.0"
oxc_ast = "=0.128.0"
oxc_parser = "=0.128.0"
oxc_span = "=0.128.0"
petgraph = "=0.8.3"
rayon = "=1.12.0"
schemars = { version = "=1.2.1", features = ["derive"] }
serde = { version = "=1.0.228", features = ["derive"] }
serde_json = "=1.0.149"
serde_yaml = "=0.9.34"
thiserror = "=2.0.18"
tree-sitter = "=0.26.8"
tree-sitter-python = "=0.25.0"
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
module_name_repetitions = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
too_many_arguments = "allow"