Skip to content

Commit

Permalink
Update to target-lexicon 0.13.0
Browse files Browse the repository at this point in the history
Pulling in bytecodealliance/target-lexicon#115 to lay the foundation for
some big-endian work in Pulley
  • Loading branch information
alexcrichton committed Dec 6, 2024
1 parent 66989d9 commit 85fa4e5
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ byte-array-literals = { path = "crates/wasi-preview1-component-adapter/byte-arra
regalloc2 = "0.11.1"

# cap-std family:
target-lexicon = "0.12.16"
target-lexicon = "0.13.0"
cap-std = "3.4.1"
cap-rand = { version = "3.4.1", features = ["small_rng"] }
cap-fs-ext = "3.4.1"
Expand Down
6 changes: 3 additions & 3 deletions crates/environ/src/compile/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -330,9 +330,9 @@ pub trait Compiler: Send + Sync {
match (self.triple().operating_system, self.triple().architecture) {
(
OperatingSystem::MacOSX { .. }
| OperatingSystem::Darwin
| OperatingSystem::Ios
| OperatingSystem::Tvos,
| OperatingSystem::Darwin(_)
| OperatingSystem::IOS(_)
| OperatingSystem::TvOS(_),
Architecture::Aarch64(..),
) => 0x4000,
// 64 KB is the maximal page size (i.e. memory translation granule size)
Expand Down
2 changes: 1 addition & 1 deletion supply-chain/audits.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4396,7 +4396,7 @@ end = "2025-07-30"
criteria = "safe-to-deploy"
user-id = 6825 # Dan Gohman (sunfishcode)
start = "2019-03-06"
end = "2024-07-14"
end = "2025-12-06"

[[trusted.termcolor]]
criteria = "safe-to-deploy"
Expand Down
10 changes: 5 additions & 5 deletions supply-chain/imports.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1028,11 +1028,11 @@ user-login = "alexcrichton"
user-name = "Alex Crichton"

[[publisher.target-lexicon]]
version = "0.12.16"
when = "2024-07-30"
user-id = 696
user-login = "fitzgen"
user-name = "Nick Fitzgerald"
version = "0.13.0"
when = "2024-12-05"
user-id = 6825
user-login = "sunfishcode"
user-name = "Dan Gohman"

[[publisher.termcolor]]
version = "1.4.1"
Expand Down

0 comments on commit 85fa4e5

Please sign in to comment.