-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (46 loc) · 1.35 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
[package]
name = "explorant"
version = "0.1.0"
authors = ["zaporter <[email protected]>"]
description = "Trace based code exploration tool"
readme = "README.md"
homepage = "https://github.com/zaporter/Explorant"
repository = "https://github.com/zaporter/Explorant"
keywords = ["explore", "trace", "understand", "codebase"]
edition = "2021"
[dependencies]
librr_rs = {git="https://github.com/zaporter/librr_rs"}
procspawn = "0.10"
fallible-iterator = { version = "0.2.0"}
actix-web = "4"
regex = "1"
typed-arena = "2"
actix-files = "0.6"
port_scanner = "0.1"
actix-cors = "0.6.2"
anyhow={version="1.0",features=["backtrace"]}
serde_json="1.0"
gml_parser= "0.1.1"
log = "0.4"
gimli = "0.26.2"
serial_test = "0.8.0"
rust-lapper = {git = "https://github.com/zaporter/rust-lapper"}
rand = "0.8.5"
nix= "0.25"
object="0.29"
iced-x86 = {version="1.17.0",features=["code_asm"]}
dot-writer="0.1.3"
symbolic-common={version="9.1"}
procmaps = {git = "https://github.com/zaporter/procmaps"}
itertools="0.10"
env_logger="0.9"
serde= {version="1.0", features=["derive"]}
json5="0.4"
clap={version="4.0",features=["derive"]}
[dependencies.uuid]
version = "1.1.2"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]