-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (38 loc) · 1.15 KB
/
Cargo.toml
File metadata and controls
47 lines (38 loc) · 1.15 KB
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
[package]
name = "bfbb"
version = "0.3.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Library for interacting with SpongeBob SquarePants: Battle for Bikini Bottom"
repository = "https://github.com/BfBBModdingTools/bfbb"
keywords = ["spongebob", "bfbb"]
rust-version = "1.65"
[package.metadata.docs.rs]
all-features = true
[[example]]
name = "game-interface"
required-features = ["game-interface"]
[[example]]
name = "hooking"
required-features = ["game-interface"]
[features]
game-interface = [
"dep:process-memory",
"dep:proc-maps",
"dep:sysinfo",
"dep:winapi",
]
[dependencies]
tap = "1"
serde = { version = "1", features = ["derive"], optional = true }
strum = "0.24"
strum_macros = "0.24"
thiserror = "1"
log = "0.4"
#Memory Shenanigans
process-memory = { version = "0.5", optional = true } # For reading external process memory
proc-maps = { version = "0.3", optional = true } # For querying memory maps
sysinfo = { version = "0.28", optional = true } # For getting PID by name
bytemuck = { version = "1.12", features = ["derive"] }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", optional = true }