e-tipsmemo

ごった煮

2018-04-03から1日間の記事一覧

Rust UTC timestamp

Rustでタイムスタンプがほしい時は多々ある。time crateじゃもうdepricatedなので chrono crateを使う。 $ cargo tree | grep chrono ├── chrono v0.4.1extern crate chrono; use chrono::prelude::*; #[test] fn timestamp(){ let dt = Utc::now(); println…