-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (31 loc) · 847 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
[package]
name = "linkstore"
version = "2.0.0"
edition = "2021"
authors = ["William Venner <[email protected]>"]
description = "Library for embedding, manipulating and retrieving data embedded in binaries using linker sections"
license = "MIT"
repository = "https://github.com/WilliamVenner/linkstore"
keywords = ["linker", "elf", "pe", "binary", "linkstore"]
categories = ["development-tools::build-utils", "development-tools::ffi", "encoding"]
[workspace]
members = ["tests"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[profile.linkstore-test-release]
inherits = "release"
lto = true
debug = false
opt-level = "s"
[features]
default = ["embedder", "store"]
embedder = []
store = []
[dependencies]
goblin = "0.6"
thiserror = "1"
ouroboros = "0.15"
sealed = "0.4"
[dev-dependencies]
libloading = "0.7"