File tree 3 files changed +19
-2
lines changed
native/html5ever_nif/.cargo
3 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 0.14.2] - 2023-05-20
10
+
11
+ ### Added
12
+
13
+ - Add precompilation target for Linux running on ARM64 machines (both musl and gnu ABI).
14
+ This is useful for projects using Nerves.
15
+
16
+ Note that this is going to require ` rustler_precompiled ` v0.6 or above, since
17
+ the that version includes ARM64 on Linux as defaults.
18
+
9
19
## [ 0.14.1] - 2023-05-20
10
20
11
21
### Added
@@ -112,7 +122,8 @@ is not needed for most of people using this project.
112
122
113
123
- Add support for OTP 24. This was achieved by updating Rustler to v0.22.
114
124
115
- [ Unreleased ] : https://github.com/rusterlium/html5ever_elixir/compare/v0.14.1...HEAD
125
+ [ Unreleased ] : https://github.com/rusterlium/html5ever_elixir/compare/v0.14.2...HEAD
126
+ [ 0.14.2 ] : https://github.com/rusterlium/html5ever_elixir/compare/v0.14.1...v0.14.2
116
127
[ 0.14.1 ] : https://github.com/rusterlium/html5ever_elixir/compare/v0.14.0...v0.14.1
117
128
[ 0.14.0 ] : https://github.com/rusterlium/html5ever_elixir/compare/v0.13.1...v0.14.0
118
129
[ 0.13.1 ] : https://github.com/rusterlium/html5ever_elixir/compare/v0.13.0...v0.13.1
Original file line number Diff line number Diff line change 1
1
defmodule Html5ever.Mixfile do
2
2
use Mix.Project
3
3
4
- @ version "0.14.1 "
4
+ @ version "0.14.2 "
5
5
@ repo_url "https://github.com/rusterlium/html5ever_elixir"
6
6
7
7
def project do
Original file line number Diff line number Diff line change @@ -21,3 +21,9 @@ linker = "arm-linux-gnueabihf-gcc"
21
21
rustflags = [
22
22
"-C", "target-feature=-crt-static"
23
23
]
24
+
25
+ # Same as above
26
+ [target.aarch64-unknown-linux-musl]
27
+ rustflags = [
28
+ "-C", "target-feature=-crt-static"
29
+ ]
You can’t perform that action at this time.
0 commit comments