-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
71 lines (60 loc) · 1.7 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "mmap-loader"
authors = ["Andrew Buck"]
description = "A Portable Executable manual map loader"
documentation = "https://docs.rs/crate/mmap-loader"
version = "0.5.3"
edition = "2021"
license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/MrElectrify/mmap-loader-rs"
keywords = ["pe", "map", "manual-map"]
[features]
server = []
[[bin]]
name = "mmap-offset-server"
path = "src/offset-server.rs"
required-features = ["server"]
[profile.release]
codegen-units = 1
panic = "abort"
lto = true
[[example]]
name = "print_return"
path = "examples/print_return.rs"
[[example]]
name = "print_return_tls"
path = "examples/print_return_tls.rs"
[[example]]
name = "print_return_with_dll"
path = "examples/print_return_with_dll.rs"
[[example]]
name = "print_return_no_server"
path = "examples/print_return_no_server.rs"
[build-dependencies]
tonic-build = { version = "0.11", features = ["prost"] }
[dependencies]
anyhow = "1"
lazy_static = "1.4"
log = { version = "0.4", features = [
"max_level_debug",
"release_max_level_warn",
] }
memoffset = "0.9"
ntapi = "0.4"
pdb = "0.8"
prost = "0.12"
reqwest = "0.12"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
simple_logger = { version = "4.3" }
thiserror = "1.0"
tokio = { version = "1.37", features = ["fs", "macros", "rt-multi-thread"] }
tonic = { version = "0.11", features = ["tls", "tls-roots"] }
winapi = { version = "0.3", features = ["impl-default", "fileapi", "guiddef", "handleapi", "memoryapi", "std", "winbase", "ntdef", "ntstatus", "libloaderapi", "winnt", "winerror"] }
[dev-dependencies]
serial_test = "3.0"
[package.metadata.docs.rs]
features = ["server"]
targets = ["x86_64-pc-windows-gnu", "x86_64-unknown-linux-gnu"]