-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (33 loc) · 875 Bytes
/
Cargo.toml
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
[package]
name = "scrings"
version = "0.1.5"
edition = "2021"
license = "MIT"
repository = "https://github.com/airbus-cert/scrings"
authors = ["Airbus CERT"]
readme = "README.md"
description = "Semantic strings based on tree-sitter"
[lib]
name = "scrings"
path = "src/lib.rs"
[[bin]]
name = "scrings"
path = "src/bin/scrings.rs"
required-features = ["scrings"]
[features]
# The reason we do this is because doctests don't get cfg(test)
# See: https://github.com/rust-lang/cargo/issues/4669
integration = []
scrings = ["clap"]
[dependencies]
tree-sitter = "0.24.4"
tree-sitter-powershell = "0.24.4"
tree-sitter-bash = "0.21.0"
tree-sitter-python = "0.21.0"
tree-sitter-sequel = "0.3.2"
tree-sitter-javascript = "0.23.1"
tree-sitter-php = "0.23.11"
clap = { version = "^2.33", optional = true}
encode_unicode = "1.0.0"
tree-sitter-traversal2 = "0.2.0"
itertools = "0.13.0"