-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
39 lines (34 loc) · 830 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
34
35
36
37
38
39
workspace = { members = [
"src/pyrev_ast",
"src/pyrev_ast_derive",
"src/pyrev_core",
"src/pyrev_app",
"src/pyrev_marshal",
"src/pyrev_object",
"src/pyrev_pyc",
"src/pyrev_pyc_macro",
"src/pyrev_pyinstaller",
] }
[package]
name = "pyrev"
authors = ["hacbit <[email protected]>"]
version = "1.1.0"
edition = "2021"
description = "A Python bytecode reverse engineering tool."
build = "build.rs"
license = "MIT"
[dependencies]
pyrev_app = { path = "src/pyrev_app" }
pyrev_pyc = { path = "src/pyrev_pyc" }
pyrev_pyinstaller = { path = "src/pyrev_pyinstaller" }
[profile.dev]
# Uncomment the following lines to allow clippy to break your build.
# rustflags = ["-D", "warnings"]
panic = "unwind"
lto = true
debug = true
[profile.release]
panic = "abort"
lto = true
opt-level = 3
[features]