From 2714730c9dcdbe7d3971e7005d29d2bd3757f1f4 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Tue, 9 Oct 2018 22:42:07 +0300 Subject: [PATCH] Switch travis & readme to beta --- .travis.yml | 2 +- README.md | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index c8f1c5c3..323197fa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: rust rust: - - nightly + - beta script: - RUST_BACKTRACE=1 CARGO_INCREMENTAL=0 cargo test --all - RUST_BACKTRACE=1 CARGO_INCREMENTAL=0 cargo test --tests --all diff --git a/README.md b/README.md index 9130d909..d0eaeeab 100644 --- a/README.md +++ b/README.md @@ -41,9 +41,11 @@ Using salsa is as easy as 1, 2, 3... the inputs/queries you will be using. The query struct will contain the storage for all of the inputs/queries and may also contain anything else that your code needs (e.g., configuration data). - + To see an example of this in action, check out [the `hello_world` example](examples/hello_world/main.rs), which has a number of comments explaining how things work. The [`hello_world` README](examples/hello_world/README.md) has a more detailed writeup. +Salsa requires at least Rust 1.30 (beta at the time of writing). +