mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 00:01:34 +11:00
Fix build issue due to atomic u128s (#774)
Add fallback feature for portable-atomic. This is needed since without it, we don't get anything that the platform doesn't natively support, which is only up to 32 bits. We newly need to change this because once_cell no longer imports with default features. - [x] no changelog update needed
This commit is contained in:
commit
1faa1766a1
|
@ -24,8 +24,8 @@ agb_fixnum = { version = "0.21.0", path = "../agb-fixnum" }
|
|||
agb_hashmap = { version = "0.21.0", path = "../agb-hashmap", features = ["allocator_api"] }
|
||||
bilge = "0.2"
|
||||
qrcodegen-no-heap = { version = "1.8", optional = true }
|
||||
portable-atomic = { version = "1.6.0", default-features = false, features = ["unsafe-assume-single-core"] }
|
||||
once_cell = { version = "1.19.0", default-features = false, features = ["critical-section"] }
|
||||
portable-atomic = { version = "1.6.0", default-features = false, features = ["unsafe-assume-single-core", "fallback"] }
|
||||
once_cell = { version = "1.20.1", default-features = false, features = ["critical-section"] }
|
||||
critical-section = { version = "1.1.2", features = ["restore-state-u16"] }
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
|
|
Loading…
Reference in a new issue