-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (43 loc) · 1.3 KB
/
Cargo.toml
File metadata and controls
47 lines (43 loc) · 1.3 KB
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
39
40
41
42
43
44
45
46
47
[profile.release]
lto = "thin"
codegen-units = 1
[profile.bench]
lto = "thin"
codegen-units = 1
[workspace]
resolver = "2"
members = [
"crates/php-ast",
"crates/php-lexer",
"crates/php-parser",
"crates/phpdoc-parser",
"crates/php-printer",
"crates/php-wasm",
"tools/ast-stats",
]
[workspace.package]
version = "0.13.0"
edition = "2021"
license = "BSD-3-Clause"
authors = ["jorgsowa"]
repository = "https://github.com/jorgsowa/rust-php-parser"
homepage = "https://github.com/jorgsowa/rust-php-parser"
[workspace.dependencies]
php-ast = { path = "crates/php-ast", version = "0.13.0" }
php-lexer = { path = "crates/php-lexer", version = "0.13.0" }
php-rs-parser = { path = "crates/php-parser", version = "0.13.0" }
phpdoc-parser = { path = "crates/phpdoc-parser", version = "0.13.0" }
php-printer = { path = "crates/php-printer", version = "0.13.0" }
miette = { version = "7", features = ["fancy"] }
thiserror = "2"
serde = { version = "1", features = ["derive"] }
insta = "1"
serde_json = { version = "1" }
criterion = { version = "0.8", features = ["html_reports"] }
walkdir = "2"
ignore = "0.4"
mimalloc = { version = "0.1", default-features = false }
memchr = "2"
bumpalo = { version = "3", features = ["collections"] }
pprof = { version = "0.15", features = ["flamegraph", "criterion"] }
rayon = "1"