-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 911 Bytes
/
Cargo.toml
File metadata and controls
41 lines (36 loc) · 911 Bytes
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
[package]
name = "rustbin"
description = "Parsers for binary file formats (mostly Windows related)."
version = "0.8.0"
authors = ["Sunil Kumar <badboy16a@gmail.com>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/sunilkr/rustbin"
keywords = ["pe", "parser", "windows"]
categories = ["parser-implementations"]
include = [
"**/*.rs",
"Cargo.toml",
"Cargo.lock",
]
[dependencies]
bitflags = { version="2", features = ["serde"] }
byteorder = "1"
chrono = { version = "0.4", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
serde_json = { version ="1", optional = true }
clap = { version = "4.5", features = ["derive"] }
derivative = "2.2"
num-traits = "0.2"
thiserror = "1.0"
[features]
default=["json"]
json = ["dep:serde_json"]
[dev-dependencies]
serde_test = "1"
[lib]
name = "rustbin"
path = "src/lib.rs"
[[bin]]
name = "rustbin"
path = "src/main.rs"