2025-04-21 17:35:31 +01:00
|
|
|
[package]
|
|
|
|
|
name = "libloot-nodejs"
|
2025-08-02 10:56:27 +01:00
|
|
|
description = "An experimental Node.js 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 22:09:47 +01:00
|
|
|
edition.workspace = true
|
2025-07-31 17:21:05 +01:00
|
|
|
license.workspace = true
|
2025-04-21 17:35:31 +01:00
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2025-04-21 17:41:49 +01:00
|
|
|
libloot = { path = ".." }
|
|
|
|
|
libloot-ffi-errors = { path = "../ffi-errors" }
|
|
|
|
|
|
2025-04-21 17:35:31 +01:00
|
|
|
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
|
2025-07-27 09:53:52 +01:00
|
|
|
napi = { version = "3.1.3", default-features = false, features = ["napi4"] }
|
|
|
|
|
napi-derive = "3.1.1"
|
2025-04-21 17:35:31 +01:00
|
|
|
|
|
|
|
|
[build-dependencies]
|
2025-07-27 09:53:52 +01:00
|
|
|
napi-build = "2.2.3"
|
2025-07-20 21:09:46 +01:00
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|