< 返回版块

ChaosBot 发表于 2018-03-25 13:16

Tags:rustnew

Rust实现的一个微服务监控服务

Vigil是一个开源的状态页面,可以在基础设施上托管,用于监控所有服务器和应用程序,并且对用户可见(例如status.example.com)。


一个Pythoner眼里的Rust

总结了一些和Python相似的Rust惯用法

Python idioms in Rust

点评: 虽然有些知识是可以迁移,但不太赞同把Python(或其他语言)套到Rust上面


chrono-english将非正式的英语日期转为chrono DateTime

extern crate chrono_english;
use chrono_english::{parse_date_string,Dialect};

extern crate chrono;
use chrono::prelude::*;

let date_time = parse_date_string("next friday 8pm", Local::now(), Dialect::Uk)?;
println!("{}",date_time.format("%c"));

当然不是基于自然语言处理的,而是固定的格式

chrono-english


小工具:天天换新桌面

一个小工具,用于查询Unsplash API中随机显示的4k图片,显示星星和空间并将其设置为壁纸。

beautiful-wallpaper-every-day


no-std网络库

适用于嵌入式开发,不依赖std的net库

no-std-net

评论区

写评论

还没有评论

1 共 0 条评论, 1 页