-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (51 loc) · 1.33 KB
/
Cargo.toml
File metadata and controls
58 lines (51 loc) · 1.33 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
[workspace]
members = [
"crates/parser",
"crates/semantic-analysis",
"crates/diff-engine",
"crates/cli",
"crates/web-ui",
"crates/mcp-server",
"crates/binary-ninja-client"
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Smart Code Diff Team"]
license = "AGPL-3.0-only"
repository = "https://github.com/opensensor/smartdiff"
description = "A next-generation code diffing tool that performs structural and semantic comparison"
[workspace.dependencies]
# Core dependencies
tokio = { version = "1.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
thiserror = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Tree-sitter dependencies
tree-sitter = "0.22.6"
tree-sitter-java = "0.21"
tree-sitter-python = "0.21"
tree-sitter-javascript = "0.21"
tree-sitter-cpp = "0.22"
tree-sitter-c = "0.21"
tree-sitter-go = "0.21"
tree-sitter-ruby = "0.21"
tree-sitter-php = "0.23"
tree-sitter-swift = "0.6"
# CLI dependencies
clap = { version = "4.0", features = ["derive"] }
colored = "2.0"
# Web dependencies
axum = "0.7"
tower = "0.4"
tower-http = { version = "0.5", features = ["cors", "fs"] }
# Algorithm dependencies
petgraph = "0.6"
rayon = "1.7"
# Testing dependencies
criterion = "0.5"
proptest = "1.0"