-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (31 loc) · 900 Bytes
/
Cargo.toml
File metadata and controls
38 lines (31 loc) · 900 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-tcl"
version = "0.1.1"
edition.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
description = "Tcl/SDC/UPF parser for CodeGraph - extracts code entities, EDA commands, and SDC constraints from Tcl source files"
keywords = ["tcl", "sdc", "parser", "code-analysis", "tree-sitter", "eda"]
categories = ["parser-implementations", "development-tools"]
[dependencies]
codegraph.workspace = true
codegraph-parser-api.workspace = true
serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true
tree-sitter = "0.22"
rayon = "1.10"
[build-dependencies]
cc = "1.0"
[dev-dependencies]
tempfile = "3.0"
criterion = "0.5"
[[bench]]
name = "parsing"
harness = false
[lib]
name = "codegraph_tcl"
path = "src/lib.rs"