28 lines
493 B
TOML
28 lines
493 B
TOML
[package]
|
|
name = "sdk-generator"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
[lib]
|
|
name = "sdk_generator_version"
|
|
path = "src/lib.rs"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
log = "0.4.0"
|
|
anyhow = "1.0"
|
|
pdb-helper = {path = "../pdb-helper"}
|
|
|
|
simple_logger = "*"
|
|
|
|
unreal-sdk = {path = "../unreal-sdk"}
|
|
|
|
[dependencies.windows]
|
|
version = "0.44"
|
|
features = [
|
|
"Win32_Foundation",
|
|
"Win32_System_Threading",
|
|
] |