Rust语言实现网页分析器
A simple web analytics in Rust https://github.com/kooparse/bast
Rust和WebAssembly多线程系统库
A multithreading library for Rust and WebAssembly https://github.com/w3reality/wasm-mt
用Rust语言清除Gitignored垃圾
Using Rust to Delete Gitignored Cruft https://www.forrestthewoods.com/blog/using-rust-to-delete-gitignored-cruft/
native-dialog - 跨平台文件选取器和消息框开发库
native-dialog - A cross-platform file picker and message box library. https://github.com/balthild/native-dialog-rs
cargo add native-dialog
用法:
cargo add native-dialoguse native_dialog::*;
let dialog = OpenMultipleFile {
dir: None,
filter: None,
};
let result = dialog.show().unwrap();
let message = format!("{:?}", result);
let dialog = MessageConfirm {
title: "Do you want to open these files?",
text: &message,
typ: MessageType::Info,
};
let result = dialog.show().unwrap();
assert_eq!(result, true);
Ropey 1.2 - 一个rust语言可编程文本编辑缓存
Ropey 1.2 - an editable text buffer for Rust https://crates.io/crates/ropey/1.2.0
本文分享自微信公众号 - Rust语言中文社区(rust-china)。
如有侵权,请联系 support@oschina.cn 删除。
本文参与“OSC源创计划”,欢迎正在阅读的你也加入,一起分享。
来源:oschina
链接:https://my.oschina.net/u/4581704/blog/4375537