Files
libloot/cpp/Cargo.toml
T
Oliver Hamlet 8cf7a0adf1 Add more Cargo package fields
Explicitly disable publishing the FFI wrappers, since there's no point them being on crates.io.
2025-08-02 11:16:25 +01:00

24 lines
454 B
TOML

[package]
name = "libloot-cpp"
description = "A C++ wrapper around libloot."
publish = false
version.workspace = true
repository.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
cxx = { version = "1.0", features = ["c++17"] }
delegate = "0.13.4"
libloot = { path = ".." }
libloot-ffi-errors = { path = "../ffi-errors" }
[build-dependencies]
cxx-build = "1.0"
[lib]
crate-type = ["staticlib"]
[lints]
workspace = true