-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
33 lines (29 loc) · 946 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
[package]
name = "minusone"
version = "0.3.0"
authors = ["Airbus CERT <[email protected]>"]
description = "A script deobfuscator"
repository = "https://github.com/airbus-cert/minusone"
readme = "README.md"
license = "MIT"
[lib]
name = "minusone"
path = "src/lib.rs"
[[bin]]
name = "minusone-cli"
path = "src/bin/minusone-cli.rs"
required-features = ["minusone-cli"]
[features]
# The reason we do this is because doctests don't get cfg(test)
# See: https://github.com/rust-lang/cargo/issues/4669
integration = []
minusone-cli = ["clap"]
[dependencies]
tree-sitter = "0.22"
tree-sitter-powershell = { git = "https://github.com/airbus-cert/tree-sitter-powershell", tag = "v1.2.0"}
clap = { version = "^2.33", optional = true}
base64 = "0.21.5"
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"
num = "0.4.3"
tree-sitter-traversal = { git = "https://github.com/airbus-cert/tree-sitter-traversal"}