2025-03-06 22:24:39 +00:00
|
|
|
[package]
|
2025-04-28 18:10:57 +01:00
|
|
|
name = "libloot-cpp"
|
2025-08-02 10:56:27 +01:00
|
|
|
description = "A C++ wrapper around libloot."
|
|
|
|
|
publish = false
|
2025-07-31 17:21:05 +01:00
|
|
|
version.workspace = true
|
2025-08-02 10:56:27 +01:00
|
|
|
repository.workspace = true
|
2025-07-31 17:21:05 +01:00
|
|
|
edition.workspace = true
|
|
|
|
|
license.workspace = true
|
2025-03-06 22:24:39 +00:00
|
|
|
|
|
|
|
|
[dependencies]
|
2025-09-28 21:07:41 +01:00
|
|
|
cxx = { version = "1.0.142", features = ["c++17"] }
|
|
|
|
|
delegate = ">= 0.5.1, < 0.14"
|
2025-03-06 22:24:39 +00:00
|
|
|
libloot = { path = ".." }
|
2025-03-17 21:21:51 +00:00
|
|
|
libloot-ffi-errors = { path = "../ffi-errors" }
|
2025-03-06 22:24:39 +00:00
|
|
|
|
|
|
|
|
[build-dependencies]
|
2025-09-28 21:07:41 +01:00
|
|
|
cxx-build = "1.0.142"
|
2025-03-06 22:24:39 +00:00
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
crate-type = ["staticlib"]
|
2025-07-20 21:09:46 +01:00
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|