quick-protobuf, protobuf解析器的Rust 实现 快速 protobuf一个用于序列化/反序列化 protobuf 文件的纯 Rust 库。文档文档描述这个库打算提供一个简单但快速的( 最小分配) protobuf解析器实现。它同时提供:pb pb,代码生成工具:每个
2022-03-21 14:37:50 160KB 开源
1
ed25519-dalek:在Rust中快速高效地进行ed25519签名和验证
2022-03-18 11:25:01 157KB rust cryptography signing verification
1
模糊哈希 纯Rust模糊哈希实现。 用法 散列文件 use fuzzyhash :: FuzzyHash; let fuzzy = FuzzyHash :: file ( "/path/to/file" ). unwrap (); // `FuzzyHash` implements `Display` so this works: println! ( "fuzzy hash of file: {}" , fuzzy); 哈希数据 use fuzzyhash :: FuzzyHash; // Anything that implements `AsRef<[u8]>` can be immediately hashed let data = vec! [ 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 10 ]; let fuzzy = FuzzyHash
2022-03-15 09:14:42 29KB Rust
1
cube-solver-kociemba:Rust中实现的Kociemba算法
2022-03-10 00:21:12 8KB Rust
1
SEUIF97 SEUIF97 is the high-speed shared library of IAPWS-IF97. It is suitable for computation-intensive calculations,such as heat cycle calculations, simulations of non-stationary processes, real-time process monitoring and optimizations. Through the high-speed library, the results of the IAPWS-IF97 are accurately produced at about 3x speed-up compared to the repeated squaring method for fast com
2022-03-07 09:23:05 2.69MB python java rust pascal
1
热门 此存储库提供了HotStuff共识协议的2链变体的最小实现。 该代码库被设计为小巧,高效,易于基准测试和修改。 它尚未设计成可以在生产环境中运行,而是使用了真正的加密( ),网络( )和存储( )。 快速开始 HotStuff用Rust编写,但是所有基准测试脚本都用Python编写并与运行。 要在本地计算机上部署4个节点的测试平台并进行基准测试,请克隆存储库并安装python依赖项: $ git clone https://github.com/asonnino/hotstuff.git $ cd hotstuff/benchmark $ pip install -r requirements.txt 您还需要 ,它在后台运行所有节点和客户端。 最后,使用结构运行本地基准测试: $ fab local 第一次运行此命令可能会花费很长时间(在release模式下编译rust
2022-03-05 21:39:54 117KB research consensus byzantine-fault-tolerance Rust
1
Rust WASI 示例 一个实现玩具程序,用于演示将 Rust 编译为并使用运行它。 配置 首先,让我们克隆 repo: git clone https://github.com/wasmerio/rust-wasi-example.git cd rust-wasi-example 确保你每晚都有最新版本的 Rust 并运行: rustup target add wasm32-wasi --toolchain nightly 建造 cargo +nightly build --target=wasm32-wasi --release cp target/wasm32-unknown-wasi/release/wasi-example.wasm . 跑步 # Install wasmer curl https://get.wasmer.io -sSfL | sh # Run the
2022-03-01 20:52:38 5KB Rust
1
rustdesk是什么:RustDesk是一款优秀的免费开源的远程控制软件,采用rust语言编写,无需任何配置开箱即用,采用TLS 1.3端到端加密协议保护用户的通信安全,用户可以完全掌控数据,不用担心安全问题,自定义画面质量且允许用户在客户端程序里调节bitrate和quantizer改变画面传输质量,RustDesk远程控制软件内置文件传输和TCP隧道功能,使用内置文件管理器可以方便地与远程电脑互传文件,设置TCP隧道也很容易,更是贴心提供了快捷RDP模式,一键就可以实现基于TCP隧道的RDP连接,威航软件园测试发现RustDesk和系统自带远程桌面相比拥有绝对的优势,安全快速稳定,还允许用户通过安装RustDesk提供的服务器程序建立自己的网络,妥妥的TeamViewer和Anydesk的替代工具,那么大家想知道RustDesk好用吗,威航软件园提供最新版本的RustDesk下载,如需安卓平台请大家点击下载RustDesk安卓版。
2022-02-21 09:05:01 8.4MB 网络 服务器 rust 安全
1
#GapBuffer 这个库实现了一个gapbuffer,一个动态数组,其中数组的未使用部分在插入和删除时被移动。 这优化了可能发生在文件中的任何点但往往发生在本地化集群中的插入和删除。 它目前是通过支持 RingBuf 实现的。
2022-02-21 06:04:25 5KB Rust
1
sandpile:沙堆细胞自动机
2022-02-16 02:07:00 9KB Rust
1