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: README.md
+9-4
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ The package can be installed by adding `blake3` to your list of dependencies in
12
12
```elixir
13
13
defdepsdo
14
14
[
15
-
{:blake3, "~> 0.4.1"}
15
+
{:blake3, "~> 0.0.0+development"}
16
16
]
17
17
end
18
18
```
@@ -21,7 +21,7 @@ run `mix deps.get` and `mix deps.compile` to pull and build the bindings
21
21
22
22
## Configuration
23
23
24
-
There are feature options in the rust implementation that allow for additional SIMD instructions and multithreading. They can be set though environment variable or `Mix.Config`.
24
+
There are feature options in the rust implementation that allow for additional SIMD instructions and multithreading. They can be set though environment variable or `Mix.Config`.
25
25
26
26
```shell
27
27
export BLAKE3_SIMD_MODE=neon
@@ -36,8 +36,8 @@ config :blake3,
36
36
rayon::true
37
37
```
38
38
39
-
*`neon` enables ARM NEON support
40
-
*`rayon` enables Rayon-based multithreading
39
+
-`neon` enables ARM NEON support
40
+
-`rayon` enables Rayon-based multithreading
41
41
42
42
When changing configuration you will need to call `mix deps.compile` to enable the features.
43
43
@@ -54,4 +54,9 @@ When changing configuration you will need to call `mix deps.compile` to enable t
0 commit comments