-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
31 lines (29 loc) · 892 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
[package]
name = "phanalist"
version = "0.1.21"
edition = "2021"
lincese = "MIT"
description = "Performant static analyzer for PHP, which is extremely easy to use. It helps you catch common mistakes in your PHP code."
readme = "./README.md"
categories = ["development-tools"]
include = ["/Cargo.toml", "/LICENSE", "/README.md", "/src/**"]
keywords = ["PHP", "Refactoring", "Phanalist"]
license = "MIT"
repository = "https://github.com/denzyldick/phanalist"
[dependencies]
clap = { version = "4.1.4", features = ["derive"] }
cli-table = "0.4.7"
colored = "2.0.0"
jwalk = "0.8.1"
php-parser-rs = { git = "https://github.com/php-rust-tools/parser", version = "0.1.3" }
serde = "1.0.152"
serde_json = "1.0.93"
serde_yaml = "0.9.21"
walkdir = "2.3.2"
indicatif = "0.17.7"
exitcode = "1.1.2"
memory-stats = "1.0.0"
human_bytes = "0.4"
serde-sarif = "=0.5.0"
[lib]
crate-type = ["cdylib", "rlib"]