awesome-repositories.com
博客
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 个仓库

Awesome GitHub RepositoriesFFI Invocation

Mechanisms for calling functions from external C libraries using foreign function interfaces.

Distinct from C Libraries: Distinct from general C Libraries: focuses on the act of invoking external functions from within Rust, not the libraries themselves.

Explore 3 awesome GitHub repositories matching operating systems & systems programming · FFI Invocation. Refine with filters or upvote what's useful.

Awesome FFI Invocation GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • crazyguitar/pysheeetcrazyguitar 的头像

    crazyguitar/pysheeet

    8,150在 GitHub 上查看↗

    pysheeet 是一个技术参考库,提供了一系列精选的代码片段和实现模式,用于高级 Python 开发、系统集成和高性能计算。它充当实现底层网络编程、原生 C 扩展以及异步和并发编程的综合指南。 该项目为大语言模型的开发和部署提供了专门的框架,包括用于分布式 GPU 推理和高性能服务的工具。它还包括用于高性能计算集群编排的详细模式,涵盖 GPU 资源分配和多节点工作负载管理。 该库涵盖了广泛的功能,包括安全网络通信和加密、对象关系映射和数据库管理,以及复杂数据结构和算法的实现。它还提供用于内存管理、通过外部函数接口(FFI)进行原生互操作以及系统级 OS 集成的实用程序。

    Implements the invocation of functions from shared libraries using foreign function interfaces.

    Python
    在 GitHub 上查看↗8,150
  • rust-lang/rust-by-examplerust-lang 的头像

    rust-lang/rust-by-example

    8,026在 GitHub 上查看↗

    This project is an interactive programming education resource and tutorial designed for learning the Rust programming language and systems programming concepts. It provides a collection of runnable and editable code examples that serve as a practical reference for language syntax and implementation. The resource features an interactive code sandbox that allows users to execute and test code snippets in real time. It emphasizes the verification of technical accuracy by executing embedded code blocks during the build process to ensure all examples remain functional. The content covers a compre

    Demonstrates how to link and execute functions from external C libraries using extern blocks.

    Handlebars
    在 GitHub 上查看↗8,026
  • dtolnay/cxxdtolnay 的头像

    dtolnay/cxx

    6,664在 GitHub 上查看↗

    CXX is a code generator that produces a safe, zero-overhead FFI bridge between Rust and C++. It lets functions and data types from either language be used directly in the other, with static type safety enforced at compile time and no copying, serialization, or runtime checks across the boundary. The bridge supports the full range of cross-language interactions: Rust can call C++ functions and use C++ types, and C++ can call Rust functions and use Rust types. Standard library types like strings, vectors, and smart pointers are mapped automatically between the two languages, while opaque types

    Invokes C++ functions from Rust through a statically analyzed FFI bridge with full type safety.

    Rust
    在 GitHub 上查看↗6,664
  1. Home
  2. Operating Systems & Systems Programming
  3. C Libraries
  4. FFI Invocation

探索子标签

  • C++ Function InvocationsCalling C++ functions from Rust through a statically analyzed FFI bridge with full type safety. **Distinct from FFI Invocation:** Distinct from FFI Invocation: targets C++ functions specifically, not general C library FFI calls.