const { readFileSync } = require('node:fs')
let nativeBinding = null
const loadErrors = []
const isMusl = () => {
let musl = false
if (process.platform === 'linux') {
musl = isMuslFromFilesystem()
if (musl === null) {
musl = isMuslFromReport()
}
if (musl === null) {
musl = isMuslFromChildProcess()
}
}
return musl
}
const isFileMusl = (f) => f.includes('libc.musl-') || f.includes('ld-musl-')
const isMuslFromFilesystem = () => {
try {
return readFileSync('/usr/bin/ldd', 'utf-8').includes('musl')
} catch {
return null
}
}
const isMuslFromReport = () => {
let report = null
if (typeof process.report?.getReport === 'function') {
process.report.excludeNetwork = true
report = process.report.getReport()
}
if (!report) {
return null
}
if (report.header && report.header.glibcVersionRuntime) {
return false
}
if (Array.isArray(report.sharedObjects)) {
if (report.sharedObjects.some(isFileMusl)) {
return true
}
}
return false
}
const isMuslFromChildProcess = () => {
try {
return require('child_process').execSync('ldd --version', { encoding: 'utf8' }).includes('musl')
} catch (e) {
return false
}
}
function requireNative() {
if (process.env.NAPI_RS_NATIVE_LIBRARY_PATH) {
try {
return require(process.env.NAPI_RS_NATIVE_LIBRARY_PATH);
} catch (err) {
loadErrors.push(err)
}
} else if (process.platform === 'android') {
if (process.arch === 'arm64') {
try {
return require('./macroforge.android-arm64.node')
} catch (e) {
loadErrors.push(e)
}
try {
const binding = require('@macroforge/bin-android-arm64')
const bindingPackageVersion = require('@macroforge/bin-android-arm64/package.json').version
if (bindingPackageVersion !== '0.1.12' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
throw new Error(`Native binding package version mismatch, expected 0.1.12 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
}
return binding
} catch (e) {
loadErrors.push(e)
}
} else if (process.arch === 'arm') {
try {
return require('./macroforge.android-arm-eabi.node')
} catch (e) {
loadErrors.push(e)
}
try {
const binding = require('@macroforge/bin-android-arm-eabi')
const bindingPackageVersion = require('@macroforge/bin-android-arm-eabi/package.json').version
if (bindingPackageVersion !== '0.1.12' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
throw new Error(`Native binding package version mismatch, expected 0.1.12 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
}
return binding
} catch (e) {
loadErrors.push(e)
}
} else {
loadErrors.push(new Error(`Unsupported architecture on Android ${process.arch}`))
}
} else if (process.platform === 'win32') {
if (process.arch === 'x64') {
if (process.config?.variables?.shlib_suffix === 'dll.a' || process.config?.variables?.node_target_type === 'shared_library') {
try {
return require('./macroforge.win32-x64-gnu.node')
} catch (e) {
loadErrors.push(e)
}
try {
const binding = require('@macroforge/bin-win32-x64-gnu')
const bindingPackageVersion = require('@macroforge/bin-win32-x64-gnu/package.json').version
if (bindingPackageVersion !== '0.1.12' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
throw new Error(`Native binding package version mismatch, expected 0.1.12 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
}
return binding
} catch (e) {
loadErrors.push(e)
}
} else {
try {
return require('./macroforge.win32-x64-msvc.node')
} catch (e) {
loadErrors.push(e)
}
try {
const binding = require('@macroforge/bin-win32-x64-msvc')
const bindingPackageVersion = require('@macroforge/bin-win32-x64-msvc/package.json').version
if (bindingPackageVersion !== '0.1.12' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
throw new Error(`Native binding package version mismatch, expected 0.1.12 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
}
return binding
} catch (e) {
loadErrors.push(e)
}
}
} else if (process.arch === 'ia32') {
try {
return require('./macroforge.win32-ia32-msvc.node')
} catch (e) {
loadErrors.push(e)
}
try {
const binding = require('@macroforge/bin-win32-ia32-msvc')
const bindingPackageVersion = require('@macroforge/bin-win32-ia32-msvc/package.json').version
if (bindingPackageVersion !== '0.1.12' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
throw new Error(`Native binding package version mismatch, expected 0.1.12 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
}
return binding
} catch (e) {
loadErrors.push(e)
}
} else if (process.arch === 'arm64') {
try {
return require('./macroforge.win32-arm64-msvc.node')
} catch (e) {
loadErrors.push(e)
}
try {
const binding = require('@macroforge/bin-win32-arm64-msvc')
const bindingPackageVersion = require('@macroforge/bin-win32-arm64-msvc/package.json').version
if (bindingPackageVersion !== '0.1.12' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
throw new Error(`Native binding package version mismatch, expected 0.1.12 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
}
return binding
} catch (e) {
loadErrors.push(e)
}
} else {
loadErrors.push(new Error(`Unsupported architecture on Windows: ${process.arch}`))
}
} else if (process.platform === 'darwin') {
try {
return require('./macroforge.darwin-universal.node')
} catch (e) {
loadErrors.push(e)
}
try {
const binding = require('@macroforge/bin-darwin-universal')
const bindingPackageVersion = require('@macroforge/bin-darwin-universal/package.json').version
if (bindingPackageVersion !== '0.1.12' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
throw new Error(`Native binding package version mismatch, expected 0.1.12 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
}
return binding
} catch (e) {
loadErrors.push(e)
}
if (process.arch === 'x64') {
try {
return require('./macroforge.darwin-x64.node')
} catch (e) {
loadErrors.push(e)
}
try {
const binding = require('@macroforge/bin-darwin-x64')
const bindingPackageVersion = require('@macroforge/bin-darwin-x64/package.json').version
if (bindingPackageVersion !== '0.1.12' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
throw new Error(`Native binding package version mismatch, expected 0.1.12 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
}
return binding
} catch (e) {
loadErrors.push(e)
}
} else if (process.arch === 'arm64') {
try {
return require('./macroforge.darwin-arm64.node')
} catch (e) {
loadErrors.push(e)
}
try {
const binding = require('@macroforge/bin-darwin-arm64')
const bindingPackageVersion = require('@macroforge/bin-darwin-arm64/package.json').version
if (bindingPackageVersion !== '0.1.12' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
throw new Error(`Native binding package version mismatch, expected 0.1.12 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
}
return binding
} catch (e) {
loadErrors.push(e)
}
} else {
loadErrors.push(new Error(`Unsupported architecture on macOS: ${process.arch}`))
}
} else if (process.platform === 'freebsd') {
if (process.arch === 'x64') {
try {
return require('./macroforge.freebsd-x64.node')
} catch (e) {
loadErrors.push(e)
}
try {
const binding = require('@macroforge/bin-freebsd-x64')
const bindingPackageVersion = require('@macroforge/bin-freebsd-x64/package.json').version
if (bindingPackageVersion !== '0.1.12' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
throw new Error(`Native binding package version mismatch, expected 0.1.12 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
}
return binding
} catch (e) {
loadErrors.push(e)
}
} else if (process.arch === 'arm64') {
try {
return require('./macroforge.freebsd-arm64.node')
} catch (e) {
loadErrors.push(e)
}
try {
const binding = require('@macroforge/bin-freebsd-arm64')
const bindingPackageVersion = require('@macroforge/bin-freebsd-arm64/package.json').version
if (bindingPackageVersion !== '0.1.12' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
throw new Error(`Native binding package version mismatch, expected 0.1.12 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
}
return binding
} catch (e) {
loadErrors.push(e)
}
} else {
loadErrors.push(new Error(`Unsupported architecture on FreeBSD: ${process.arch}`))
}
} else if (process.platform === 'linux') {
if (process.arch === 'x64') {
if (isMusl()) {
try {
return require('./macroforge.linux-x64-musl.node')
} catch (e) {
loadErrors.push(e)
}
try {
const binding = require('@macroforge/bin-linux-x64-musl')
const bindingPackageVersion = require('@macroforge/bin-linux-x64-musl/package.json').version
if (bindingPackageVersion !== '0.1.12' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
throw new Error(`Native binding package version mismatch, expected 0.1.12 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
}
return binding
} catch (e) {
loadErrors.push(e)
}
} else {
try {
return require('./macroforge.linux-x64-gnu.node')
} catch (e) {
loadErrors.push(e)
}
try {
const binding = require('@macroforge/bin-linux-x64-gnu')
const bindingPackageVersion = require('@macroforge/bin-linux-x64-gnu/package.json').version
if (bindingPackageVersion !== '0.1.12' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
throw new Error(`Native binding package version mismatch, expected 0.1.12 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
}
return binding
} catch (e) {
loadErrors.push(e)
}
}
} else if (process.arch === 'arm64') {
if (isMusl()) {
try {
return require('./macroforge.linux-arm64-musl.node')
} catch (e) {
loadErrors.push(e)
}
try {
const binding = require('@macroforge/bin-linux-arm64-musl')
const bindingPackageVersion = require('@macroforge/bin-linux-arm64-musl/package.json').version
if (bindingPackageVersion !== '0.1.12' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
throw new Error(`Native binding package version mismatch, expected 0.1.12 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
}
return binding
} catch (e) {
loadErrors.push(e)
}
} else {
try {
return require('./macroforge.linux-arm64-gnu.node')
} catch (e) {
loadErrors.push(e)
}
try {
const binding = require('@macroforge/bin-linux-arm64-gnu')
const bindingPackageVersion = require('@macroforge/bin-linux-arm64-gnu/package.json').version
if (bindingPackageVersion !== '0.1.12' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
throw new Error(`Native binding package version mismatch, expected 0.1.12 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
}
return binding
} catch (e) {
loadErrors.push(e)
}
}
} else if (process.arch === 'arm') {
if (isMusl()) {
try {
return require('./macroforge.linux-arm-musleabihf.node')
} catch (e) {
loadErrors.push(e)
}
try {
const binding = require('@macroforge/bin-linux-arm-musleabihf')
const bindingPackageVersion = require('@macroforge/bin-linux-arm-musleabihf/package.json').version
if (bindingPackageVersion !== '0.1.12' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
throw new Error(`Native binding package version mismatch, expected 0.1.12 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
}
return binding
} catch (e) {
loadErrors.push(e)
}
} else {
try {
return require('./macroforge.linux-arm-gnueabihf.node')
} catch (e) {
loadErrors.push(e)
}
try {
const binding = require('@macroforge/bin-linux-arm-gnueabihf')
const bindingPackageVersion = require('@macroforge/bin-linux-arm-gnueabihf/package.json').version
if (bindingPackageVersion !== '0.1.12' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
throw new Error(`Native binding package version mismatch, expected 0.1.12 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
}
return binding
} catch (e) {
loadErrors.push(e)
}
}
} else if (process.arch === 'loong64') {
if (isMusl()) {
try {
return require('./macroforge.linux-loong64-musl.node')
} catch (e) {
loadErrors.push(e)
}
try {
const binding = require('@macroforge/bin-linux-loong64-musl')
const bindingPackageVersion = require('@macroforge/bin-linux-loong64-musl/package.json').version
if (bindingPackageVersion !== '0.1.12' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
throw new Error(`Native binding package version mismatch, expected 0.1.12 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
}
return binding
} catch (e) {
loadErrors.push(e)
}
} else {
try {
return require('./macroforge.linux-loong64-gnu.node')
} catch (e) {
loadErrors.push(e)
}
try {
const binding = require('@macroforge/bin-linux-loong64-gnu')
const bindingPackageVersion = require('@macroforge/bin-linux-loong64-gnu/package.json').version
if (bindingPackageVersion !== '0.1.12' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
throw new Error(`Native binding package version mismatch, expected 0.1.12 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
}
return binding
} catch (e) {
loadErrors.push(e)
}
}
} else if (process.arch === 'riscv64') {
if (isMusl()) {
try {
return require('./macroforge.linux-riscv64-musl.node')
} catch (e) {
loadErrors.push(e)
}
try {
const binding = require('@macroforge/bin-linux-riscv64-musl')
const bindingPackageVersion = require('@macroforge/bin-linux-riscv64-musl/package.json').version
if (bindingPackageVersion !== '0.1.12' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
throw new Error(`Native binding package version mismatch, expected 0.1.12 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
}
return binding
} catch (e) {
loadErrors.push(e)
}
} else {
try {
return require('./macroforge.linux-riscv64-gnu.node')
} catch (e) {
loadErrors.push(e)
}
try {
const binding = require('@macroforge/bin-linux-riscv64-gnu')
const bindingPackageVersion = require('@macroforge/bin-linux-riscv64-gnu/package.json').version
if (bindingPackageVersion !== '0.1.12' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
throw new Error(`Native binding package version mismatch, expected 0.1.12 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
}
return binding
} catch (e) {
loadErrors.push(e)
}
}
} else if (process.arch === 'ppc64') {
try {
return require('./macroforge.linux-ppc64-gnu.node')
} catch (e) {
loadErrors.push(e)
}
try {
const binding = require('@macroforge/bin-linux-ppc64-gnu')
const bindingPackageVersion = require('@macroforge/bin-linux-ppc64-gnu/package.json').version
if (bindingPackageVersion !== '0.1.12' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
throw new Error(`Native binding package version mismatch, expected 0.1.12 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
}
return binding
} catch (e) {
loadErrors.push(e)
}
} else if (process.arch === 's390x') {
try {
return require('./macroforge.linux-s390x-gnu.node')
} catch (e) {
loadErrors.push(e)
}
try {
const binding = require('@macroforge/bin-linux-s390x-gnu')
const bindingPackageVersion = require('@macroforge/bin-linux-s390x-gnu/package.json').version
if (bindingPackageVersion !== '0.1.12' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
throw new Error(`Native binding package version mismatch, expected 0.1.12 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
}
return binding
} catch (e) {
loadErrors.push(e)
}
} else {
loadErrors.push(new Error(`Unsupported architecture on Linux: ${process.arch}`))
}
} else if (process.platform === 'openharmony') {
if (process.arch === 'arm64') {
try {
return require('./macroforge.openharmony-arm64.node')
} catch (e) {
loadErrors.push(e)
}
try {
const binding = require('@macroforge/bin-openharmony-arm64')
const bindingPackageVersion = require('@macroforge/bin-openharmony-arm64/package.json').version
if (bindingPackageVersion !== '0.1.12' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
throw new Error(`Native binding package version mismatch, expected 0.1.12 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
}
return binding
} catch (e) {
loadErrors.push(e)
}
} else if (process.arch === 'x64') {
try {
return require('./macroforge.openharmony-x64.node')
} catch (e) {
loadErrors.push(e)
}
try {
const binding = require('@macroforge/bin-openharmony-x64')
const bindingPackageVersion = require('@macroforge/bin-openharmony-x64/package.json').version
if (bindingPackageVersion !== '0.1.12' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
throw new Error(`Native binding package version mismatch, expected 0.1.12 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
}
return binding
} catch (e) {
loadErrors.push(e)
}
} else if (process.arch === 'arm') {
try {
return require('./macroforge.openharmony-arm.node')
} catch (e) {
loadErrors.push(e)
}
try {
const binding = require('@macroforge/bin-openharmony-arm')
const bindingPackageVersion = require('@macroforge/bin-openharmony-arm/package.json').version
if (bindingPackageVersion !== '0.1.12' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
throw new Error(`Native binding package version mismatch, expected 0.1.12 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
}
return binding
} catch (e) {
loadErrors.push(e)
}
} else {
loadErrors.push(new Error(`Unsupported architecture on OpenHarmony: ${process.arch}`))
}
} else {
loadErrors.push(new Error(`Unsupported OS: ${process.platform}, architecture: ${process.arch}`))
}
}
nativeBinding = requireNative()
if (!nativeBinding || process.env.NAPI_RS_FORCE_WASI) {
let wasiBinding = null
let wasiBindingError = null
try {
wasiBinding = require('./macroforge.wasi.cjs')
nativeBinding = wasiBinding
} catch (err) {
if (process.env.NAPI_RS_FORCE_WASI) {
wasiBindingError = err
}
}
if (!nativeBinding) {
try {
wasiBinding = require('@macroforge/bin-wasm32-wasi')
nativeBinding = wasiBinding
} catch (err) {
if (process.env.NAPI_RS_FORCE_WASI) {
wasiBindingError.cause = err
loadErrors.push(err)
}
}
}
if (process.env.NAPI_RS_FORCE_WASI === 'error' && !wasiBinding) {
const error = new Error('WASI binding not found and NAPI_RS_FORCE_WASI is set to error')
error.cause = wasiBindingError
throw error
}
}
if (!nativeBinding) {
if (loadErrors.length > 0) {
throw new Error(
`Cannot find native binding. ` +
`npm has a bug related to optional dependencies (https://github.com/npm/cli/issues/4828). ` +
'Please try `npm i` again after removing both package-lock.json and node_modules directory.',
{
cause: loadErrors.reduce((err, cur) => {
cur.cause = err
return cur
}),
},
)
}
throw new Error(`Failed to load native binding`)
}
module.exports = nativeBinding
module.exports.NativeMapper = nativeBinding.NativeMapper
module.exports.NativePlugin = nativeBinding.NativePlugin
module.exports.PositionMapper = nativeBinding.PositionMapper
module.exports.NativePositionMapper = nativeBinding.NativePositionMapper
module.exports.__macroforgeDebugDescriptors = nativeBinding.__macroforgeDebugDescriptors
module.exports.__macroforgeDebugGetModules = nativeBinding.__macroforgeDebugGetModules
module.exports.__macroforgeDebugLookup = nativeBinding.__macroforgeDebugLookup
module.exports.__macroforgeGetMacroNames = nativeBinding.__macroforgeGetMacroNames
module.exports.__macroforgeGetManifest = nativeBinding.__macroforgeGetManifest
module.exports.__macroforgeIsMacroPackage = nativeBinding.__macroforgeIsMacroPackage
module.exports.__macroforgeRunClone = nativeBinding.__macroforgeRunClone
module.exports.__macroforgeRunDebug = nativeBinding.__macroforgeRunDebug
module.exports.__macroforgeRunDefault = nativeBinding.__macroforgeRunDefault
module.exports.__macroforgeRunDeserialize = nativeBinding.__macroforgeRunDeserialize
module.exports.__macroforgeRunHash = nativeBinding.__macroforgeRunHash
module.exports.__macroforgeRunOrd = nativeBinding.__macroforgeRunOrd
module.exports.__macroforgeRunPartialEq = nativeBinding.__macroforgeRunPartialEq
module.exports.__macroforgeRunPartialOrd = nativeBinding.__macroforgeRunPartialOrd
module.exports.__macroforgeRunSerialize = nativeBinding.__macroforgeRunSerialize
module.exports.checkSyntax = nativeBinding.checkSyntax
module.exports.Clone = nativeBinding.Clone
module.exports.debug = nativeBinding.debug
module.exports.Debug = nativeBinding.Debug
module.exports.Default = nativeBinding.Default
module.exports.defaultValue = nativeBinding.defaultValue
module.exports.Derive = nativeBinding.Derive
module.exports.Deserialize = nativeBinding.Deserialize
module.exports.expandSync = nativeBinding.expandSync
module.exports.hash = nativeBinding.hash
module.exports.Hash = nativeBinding.Hash
module.exports.ord = nativeBinding.ord
module.exports.ord = nativeBinding.ord
module.exports.Ord = nativeBinding.Ord
module.exports.parseImportSources = nativeBinding.parseImportSources
module.exports.partialEq = nativeBinding.partialEq
module.exports.PartialEq = nativeBinding.PartialEq
module.exports.PartialOrd = nativeBinding.PartialOrd
module.exports.serde = nativeBinding.serde
module.exports.serde = nativeBinding.serde
module.exports.Serialize = nativeBinding.Serialize
module.exports.transformSync = nativeBinding.transformSync