forked from cloudhubs/source-code-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (44 loc) · 1.12 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "source-code-parser"
version = "0.1.0"
authors = ["nnazo <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rust-code-analysis = "0.0.18"
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.78"
derive_more = "0.99.11"
derive-new = "0.5.8"
itertools = "0.10.0"
enum_dispatch = "0.3.5"
regex = "1.5.5"
rune = "0.12.0"
once_cell = "1.7.2"
tracing = "0.1.29"
source-code-parser-macro = { path = "source-code-parser-macro" }
bitmaps = "3.1.0"
enum-ordinalize = "3.1.10"
thiserror = "1.0.30"
[target.'cfg(unix)'.dev-dependencies]
iai = "0.1.1"
criterion = { version = "0.3.4", features = ["real_blackbox"] }
jemallocator = "0.3.2"
jemalloc-ctl = "0.3.3"
statistical = "1.0.0"
pprof = { version = "0.5.0", features = ["flamegraph", "criterion"] }
[workspace]
members = [
"source-code-parser-web",
"source-code-parser-macro",
"source-code-parser-macro-test"
]
[[bench]]
name = "iai"
harness = false
[[bench]]
name = "criterion"
harness = false
[[bench]]
name = "mem_bench"
harness = false