Files
libloot/nodejs/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

26 lines
601 B
TOML

[package]
name = "libloot-nodejs"
description = "An experimental Node.js wrapper around libloot."
publish = false
version.workspace = true
repository.workspace = true
edition.workspace = true
license.workspace = true
[lib]
crate-type = ["cdylib"]
[dependencies]
libloot = { path = ".." }
libloot-ffi-errors = { path = "../ffi-errors" }
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
napi = { version = "3.1.3", default-features = false, features = ["napi4"] }
napi-derive = "3.1.1"
[build-dependencies]
napi-build = "2.2.3"
[lints]
workspace = true