awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
hansihe avatar

hansihe/Rustler

0
View on GitHub↗
4,806 نجوم·243 تفرعات·Rust·Apache-2.0·8 مشاهداتdocs.rs/crate/rustler↗

Rustler

Rustler هي مجموعة أدوات وواجهة لبناء إضافات أصلية آمنة وعالية الأداء تدمج كود Rust مع الجهاز الافتراضي BEAM. توفر جسراً لكتابة دوال أصلية بلغة Rust تتكامل مع Erlang و Elixir.

يركز المشروع على منع تعطل الجهاز الافتراضي عن طريق التقاط ذعر Rust أثناء تنفيذ الدوال الأصلية. ويستخدم واجهة آمنة لتغليف المؤشرات الخام وتوفير تجريدات آمنة للأنواع للإضافات الأصلية.

تغطي مجموعة الأدوات تجميع البيانات عبر اللغات من خلال تحويل المصطلحات القائم على السمات (Traits) وتدير دورة حياة كائنات الذاكرة عبر إدارة الموارد المحسوبة بالمرجع. تسمح هذه القدرات باستبدال الكود المفسر بدوال Rust مجمعة لتحسين سرعة التنفيذ.

Features

  • Erlang NIF Development - Provides a comprehensive toolkit for writing high-performance native functions (NIFs) in Rust for Erlang and Elixir.
  • BEAM NIF Bridges - Acts as a bridge for writing native functions in Rust that integrate with the Erlang virtual machine and Elixir.
  • Safe Panic Wrappers - Implements automatic panic catching in Rust native functions to prevent the BEAM virtual machine from crashing.
  • Rust Native Extensions - Ships a toolkit for implementing high-performance Rust native extensions that safely handle data terms.
  • Safe VM Interfaces - Provides a safe interface that prevents BEAM virtual machine crashes by catching Rust panics.
  • Rust-Erlang Integration - Connects Rust code with Erlang systems to leverage memory safety and speed while maintaining stability.
  • Rust Native Extensions - Provides a toolkit for building high-performance native extensions in Rust for the BEAM virtual machine.
  • Trait-Based Term Conversions - Uses generic traits to encode and decode data between Rust types and Erlang terms.
  • Runtime Crash Prevention - Wraps Rust code in panic handlers to prevent internal language errors from crashing the host virtual machine.
  • Reference Counting - Implements reference counting to track Rust memory objects and trigger cleanup via the BEAM garbage collector.
  • Cross-Runtime Resource Management - Manages Rust memory structures that can be safely passed to and released by the Erlang garbage collector.
  • C FFI Bridges - Utilizes a C FFI bridge to map Rust functions to the Erlang VM native interface.
  • Cross-Language Data Exchange - Facilitates the bidirectional movement of data between the Rust native layer and the Erlang runtime.
  • Safe Pointer Abstractions - Encapsulates unsafe raw pointers into a type-safe Rust API to prevent memory corruption bugs.
  • Memory Lifecycle Management - Implements a mechanism for passing memory structure references to external code and automatically releasing them via the GC.
  • Native Module Optimizations - Enables replacing slow interpreted BEAM code with compiled Rust functions to improve execution speed.
  • Native Implemented Functions - Safe NIF development using the Rust language.

سجل النجوم

مخطط تاريخ النجوم لـ hansihe/rustlerمخطط تاريخ النجوم لـ hansihe/rustler

بحث بالذكاء الاصطناعي

استكشف المزيد من المستودعات الرائعة

صف ما تحتاجه بلغة بسيطة — وسيقوم الذكاء الاصطناعي بترتيب آلاف المشاريع مفتوحة المصدر المنسقة حسب الصلة.

Start searching with AI

بدائل مفتوحة المصدر لـ Rustler

مشاريع مفتوحة المصدر مشابهة، مرتبة حسب عدد الميزات المشتركة مع Rustler.
  • rusterlium/rustlerالصورة الرمزية لـ rusterlium

    rusterlium/rustler

    4,806عرض على GitHub↗

    Rustler is a native function wrapper and foreign function interface that enables the development of high-performance extensions for the BEAM virtual machine. It serves as a bridge for writing native functions in Rust that can be called from Erlang environments. The project focuses on maintaining memory safety to prevent system crashes and memory corruption when executing compiled code. It achieves this by wrapping native calls in safe abstractions and applying Rust's ownership and borrowing rules to the management of external memory and structured data objects. The library provides mechanism

    Rustbindingelixirerlang
    عرض على GitHub↗4,806
  • nodejs/node-addon-apiالصورة الرمزية لـ nodejs

    nodejs/node-addon-api

    2,400عرض على GitHub↗

    This project provides a header-only C++ wrapper for the Node-API, serving as a framework for building high-performance native addons for Node.js. It acts as a bridge between C++ and JavaScript, offering an object-oriented interface that simplifies the creation of compiled extensions while managing the complexities of the language boundary. The library distinguishes itself by providing type-safe abstractions for data marshalling and memory management, ensuring that native and script-side objects are tracked and reclaimed correctly. It includes mechanisms for coordinating asynchronous tasks bet

    C++nodenodejs
    عرض على GitHub↗2,400
  • nswbmw/node-in-debuggingالصورة الرمزية لـ nswbmw

    nswbmw/node-in-debugging

    6,457عرض على GitHub↗

    This project is a comprehensive technical guide and diagnostic manual for analyzing memory, performance, and asynchronous behavior within Node.js applications. It provides detailed methods for asynchronous tracing, memory diagnostics, and performance analysis to resolve runtime errors and execution bottlenecks. The resource distinguishes itself by covering advanced diagnostic workflows, including the use of flame graphs for CPU profiling, the capture and comparison of heap snapshots for memory leak detection, and the mapping of asynchronous call stacks. It also provides technical guidance on

    debugdebuggingguide
    عرض على GitHub↗6,457
  • python/cpythonالصورة الرمزية لـ python

    python/cpython

    73,265عرض على GitHub↗

    CPython is the primary, community-maintained reference implementation of the Python programming language. It functions as a high-level, interpreted execution environment that compiles source code into platform-independent bytecode for processing by a stack-based virtual machine. The runtime manages memory through a combination of reference counting and generational cyclic garbage collection, while dynamic type dispatching determines object behavior at runtime based on metadata stored within object headers. The project is distinguished by its C-based architecture, which provides a stable forei

    Python
    عرض على GitHub↗73,265
عرض جميع البدائل الـ 30 لـ Rustler→

الأسئلة الشائعة

ما هي وظيفة hansihe/rustler؟

Rustler هي مجموعة أدوات وواجهة لبناء إضافات أصلية آمنة وعالية الأداء تدمج كود Rust مع الجهاز الافتراضي BEAM. توفر جسراً لكتابة دوال أصلية بلغة Rust تتكامل مع Erlang و Elixir.

ما هي الميزات الرئيسية لـ hansihe/rustler؟

الميزات الرئيسية لـ hansihe/rustler هي: Erlang NIF Development, BEAM NIF Bridges, Safe Panic Wrappers, Rust Native Extensions, Safe VM Interfaces, Rust-Erlang Integration, Trait-Based Term Conversions, Runtime Crash Prevention.

ما هي البدائل مفتوحة المصدر لـ hansihe/rustler؟

تشمل البدائل مفتوحة المصدر لـ hansihe/rustler: rusterlium/rustler — Rustler is a native function wrapper and foreign function interface that enables the development of high-performance… nodejs/node-addon-api — This project provides a header-only C++ wrapper for the Node-API, serving as a framework for building high-performance… nswbmw/node-in-debugging — This project is a comprehensive technical guide and diagnostic manual for analyzing memory, performance, and… python/cpython — CPython is the primary, community-maintained reference implementation of the Python programming language. It functions… asticode/go-astilectron — go-astilectron is a cross-platform GUI framework and binding that enables the creation of desktop software by… dop251/goja — Goja is a JavaScript engine and ECMAScript compliant interpreter implemented entirely in Go. It serves as an embedded…