You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .travis.yml
+18-12Lines changed: 18 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,10 @@
1
1
language: rust
2
2
rust: nightly
3
-
cache:
4
-
- cargo
3
+
# cache:
4
+
# - apt
5
+
# - cargo
5
6
git:
6
-
depth: 1
7
+
depth: 10
7
8
8
9
addons:
9
10
apt:
@@ -12,9 +13,9 @@ addons:
12
13
13
14
env:
14
15
global:
15
-
- FMT_VERSION=nightly-2018-09-18
16
-
- CLIPPY_VERSION=nightly-2018-09-18
17
-
- DOCS_RS_VERSION=nightly-2018-09-18# should be nightly-2018-06-03 but packed_simd fails https://github.com/onur/docs.rs/blob/32102ce458b34f750ef190182116d9583491a64b/Vagrantfile#L50
16
+
- FMT_VERSION=nightly-2018-10-14
17
+
- CLIPPY_VERSION=nightly-2018-10-14
18
+
- DOCS_RS_VERSION=nightly-2018-10-14# should be nightly-2018-06-03 but packed_simd fails https://github.com/onur/docs.rs/blob/32102ce458b34f750ef190182116d9583491a64b/Vagrantfile#L50
18
19
19
20
matrix:
20
21
include:
@@ -58,22 +59,27 @@ before_script: |
58
59
script: |
59
60
( set -o errexit;set -o pipefail; set -o xtrace;set -o nounset;
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ A goal of this library is to enable composition of these algorithms; for example
22
22
Run your application with `RUSTFLAGS="-C target-cpu=native"` to benefit from the SIMD-acceleration like so:
23
23
24
24
```bash
25
-
RUSTFLAGS="-C target-cpu=native" cargo run --release
25
+
RUSTFLAGS="-C target-cpu=native" cargo run --release
26
26
```
27
27
28
28
See [this gist](https://gist.github.com/debasishg/8172796) for a good list of further algorithms to be implemented. Other resources are [Probabilistic data structures – Wikipedia](https://en.wikipedia.org/wiki/Category:Probabilistic_data_structures), [DataSketches – A similar Java library originating at Yahoo](https://datasketches.github.io/), and [Algebird – A similar Java library originating at Twitter](https://github.com/twitter/algebird).
Copy file name to clipboardExpand all lines: src/lib.rs
+7-14Lines changed: 7 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -14,23 +14,15 @@
14
14
//! Run your application with `RUSTFLAGS="-C target-cpu=native"` to benefit from the SIMD-acceleration like so:
15
15
//!
16
16
//! ```bash
17
-
//! RUSTFLAGS="-C target-cpu=native" cargo run --release
17
+
//! RUSTFLAGS="-C target-cpu=native" cargo run --release
18
18
//! ```
19
19
//!
20
20
//! See [this gist](https://gist.github.com/debasishg/8172796) for a good list of further algorithms to be implemented. Other resources are [Probabilistic data structures – Wikipedia](https://en.wikipedia.org/wiki/Category:Probabilistic_data_structures), [DataSketches – A similar Java library originating at Yahoo](https://datasketches.github.io/), and [Algebird – A similar Java library originating at Twitter](https://github.com/twitter/algebird).
21
21
//!
22
22
//! As these implementations are often in hot code paths, unsafe is used, albeit only when necessary to a) achieve the asymptotically optimal algorithm or b) mitigate an observed bottleneck.
0 commit comments