Files
libloot/nodejs/Cargo.toml
T

26 lines
601 B
TOML
Raw Permalink Normal View History

[package]
name = "libloot-nodejs"
2025-08-02 10:56:27 +01:00
description = "An experimental Node.js wrapper around libloot."
publish = false
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
license.workspace = true
[lib]
crate-type = ["cdylib"]
[dependencies]
2025-04-21 17:41:49 +01:00
libloot = { path = ".." }
libloot-ffi-errors = { path = "../ffi-errors" }
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
2025-08-04 22:22:46 +00:00
napi = { version = "3.1.6", default-features = false, features = ["napi4"] }
2025-08-13 09:35:02 +00:00
napi-derive = "3.2.2"
[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