-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (32 loc) · 886 Bytes
/
Cargo.toml
File metadata and controls
38 lines (32 loc) · 886 Bytes
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
# Copyright 2024-2026 Andrey Vasilevsky <anvanster@gmail.com>
# SPDX-License-Identifier: Apache-2.0
[package]
name = "codegraph-csharp"
version = "0.1.2"
edition.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
description = "C# parser for CodeGraph - extracts code entities and relationships from C# source files"
keywords = ["csharp", "parser", "code-analysis"]
categories = ["parser-implementations", "development-tools"]
[dependencies]
# Workspace dependencies
codegraph.workspace = true
codegraph-parser-api.workspace = true
serde.workspace = true
thiserror.workspace = true
# C# parser
tree-sitter = "0.22"
tree-sitter-c-sharp = "0.21"
rayon = "1.10"
[dev-dependencies]
serde_json.workspace = true
tempfile = "3.0"
criterion = "0.5"
[[bench]]
name = "parsing"
harness = false
[lib]
name = "codegraph_csharp"
path = "src/lib.rs"