-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
110 lines (92 loc) · 2.29 KB
/
Cargo.toml
File metadata and controls
110 lines (92 loc) · 2.29 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
100
101
102
103
104
105
106
107
108
109
110
# SPDX-License-Identifier: MIT OR Apache-2.0
[workspace]
resolver = "2"
members = [
"crates/goguard-cli",
"crates/goguard-lsp",
"crates/goguard-mcp",
"crates/goguard-agent",
"crates/goguard-ecosystem",
"crates/goguard-learn",
"crates/goguard-telemetry",
"crates/goguard-core",
"crates/goguard-cal",
"crates/goguard-ir",
"crates/goguard-types",
"crates/goguard-db",
"crates/goguard-diagnostics",
"crates/goguard-nil",
"crates/goguard-errcheck",
"crates/goguard-concurrency",
"crates/goguard-ownership",
"crates/goguard-exhaustive",
"crates/goguard-taint",
"crates/goguard-ts",
"crates/goguard-ts-null",
"crates/goguard-ts-error",
"crates/goguard-ts-taint",
"crates/goguard-ts-exh",
"crates/goguard-ts-leak",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
rust-version = "1.83"
license = "MIT OR Apache-2.0"
repository = "https://github.com/NextStat/GoGuard"
description = "Rust-level safety analyzer for Go — AI-agent-native static analysis"
[workspace.dependencies]
# Parsing
tree-sitter = "0.26"
tree-sitter-go = "0.25"
# Incremental computation
salsa = "0.26"
# LSP (community fork - tower-lsp is unmaintained!)
tower-lsp-server = "0.23"
tower = "0.5"
# Diagnostics
ariadne = "0.6"
miette = "7.6"
# Parsing (query language)
winnow = "0.7"
# TypeScript/JavaScript frontend (OXC)
oxc_allocator = "0.115.0"
oxc_ast = "0.115.0"
oxc_ast_visit = "0.115.0"
oxc_cfg = "0.115.0"
oxc_diagnostics = "0.115.0"
oxc_parser = "0.115.0"
oxc_semantic = "0.115.0"
oxc_span = "0.115.0"
oxc_syntax = "0.115.0"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "1"
flatbuffers = "25.12"
# Async
tokio = { version = "1", features = ["full"] }
# CLI
clap = { version = "4", features = ["derive"] }
rustyline = "17"
# Parallelism
rayon = "1"
# Testing
insta = { version = "1", features = ["yaml"] }
assert_cmd = "2"
predicates = "3"
tempfile = "3"
# MCP (official SDK - NOT jsonrpc-core which is deprecated!)
rmcp = { version = "0.16", features = ["server", "transport-io", "macros"] }
# JSON Schema (for MCP tool params)
schemars = "1"
# Git
gix = "0.80"
# JavaScript runtime
boa_engine = "0.21"
# Error handling
thiserror = "2"
anyhow = "1"
# Logging
tracing = "0.1"
tracing-subscriber = "0.3"