-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
45 lines (39 loc) · 956 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
40
41
42
43
44
45
[package]
name = "scalpel-bin"
version = "2.0.0"
authors = ["Bernhard Schuster <bernhard@ahoi.io>", "Korbinian Maier <korbinian.maier@tum.de>"]
license = "Apache-2.0 OR MIT"
readme = "README.md"
categories = ["development-tools", "command-line-utilities", "embedded"]
keywords = ["binary", "modify", "hex", "merge", "tool"]
repository = "https://github.com/drahnr/scalpel"
description = "binary modification tool, cut, stitch, replace, sign"
edition = "2018"
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
docopt = "1.0"
serde = "1.0"
serde_derive = "1.0"
log = "0.4"
env_logger = "0.7"
lazy_static = "1.4.0"
bytes = "0.5"
regex = "^1.3.6"
failure = "^0.1.2"
failure_derive = "^0.1.2"
common_failures = "^0.1.0"
rand = "0.7"
ihex = "1.1"
tree_magic = "0.2"
[dev-dependencies]
rand = "0.7"
[[bin]]
name = "scalpel"
path = "src/main.rs"
plugin = false
proc-macro = false
harness = true
test = true
[profile.release]
lto = true