From b3f24b578f624e6ac303f69dc19d33271b9259ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Hozda?= Date: Sun, 31 Jan 2021 12:56:26 +0100 Subject: [PATCH 1/2] added time crate (suggested by @jhpratt) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 78800a4..c379083 100644 --- a/README.md +++ b/README.md @@ -1028,6 +1028,7 @@ See also [About Rust’s Machine Learning Community](https://medium.com/@autumn_ * [chronotope/chrono](https://github.com/chronotope/chrono) — [![build badge](https://api.travis-ci.org/chronotope/chrono.svg?branch=master)](https://travis-ci.org/chronotope/chrono) * [yaa110/rust-persian-calendar](https://github.com/yaa110/rust-persian-calendar) — [![build badge](https://api.travis-ci.org/yaa110/rust-persian-calendar.svg?branch=master)](https://travis-ci.org/yaa110/rust-persian-calendar) * [Mnwa/ms](https://github.com/Mnwa/ms) [[ms-converter](https://crates.io/crates/ms-converter)] — it's a library for converting human-like times to milliseconds [![build badge](https://github.com/Mnwa/ms/workflows/build/badge.svg?branch=master)](https://github.com/Mnwa/ms/actions?query=workflow%3Abuild) +* [time-rs/time](https://github.com/time-rs/time) — [![build badge](https://github.com/time-rs/time/workflows/Build/badge.svg)](https://github.com/time-rs/time/actions) ### Distributed systems From 4736a77131902e304fc95eb2a5ffe6e0e54160bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Hozda?= Date: Sun, 31 Jan 2021 13:45:40 +0100 Subject: [PATCH 2/2] remove Travis-CI - going to switch to github actions --- .travis.yml | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 2a6b936..0000000 --- a/.travis.yml +++ /dev/null @@ -1,14 +0,0 @@ -language: rust -before_script: sccache --version || cargo install sccache -script: RUSTC_WRAPPER=sccache cargo run - -env: - global: - - RUST_LOG=warn - - SCCACHE_CACHE_SIZE=1G - -cache: - directories: - - ~/.cargo/bin - - ~/.cache/sccache - - results # So we don't have to check all the things every time \ No newline at end of file