File tree Expand file tree Collapse file tree 3 files changed +19
-2
lines changed
native/html5ever_nif/.cargo Expand file tree Collapse file tree 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
66
77## [ Unreleased]
88
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+
919## [ 0.14.1] - 2023-05-20
1020
1121### Added
@@ -112,7 +122,8 @@ is not needed for most of people using this project.
112122
113123- Add support for OTP 24. This was achieved by updating Rustler to v0.22.
114124
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
116127[ 0.14.1 ] : https://github.com/rusterlium/html5ever_elixir/compare/v0.14.0...v0.14.1
117128[ 0.14.0 ] : https://github.com/rusterlium/html5ever_elixir/compare/v0.13.1...v0.14.0
118129[ 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 11defmodule Html5ever.Mixfile do
22 use Mix.Project
33
4- @ version "0.14.1 "
4+ @ version "0.14.2 "
55 @ repo_url "https://github.com/rusterlium/html5ever_elixir"
66
77 def project do
Original file line number Diff line number Diff line change @@ -21,3 +21,9 @@ linker = "arm-linux-gnueabihf-gcc"
2121rustflags = [
2222 "-C", "target-feature=-crt-static"
2323]
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