mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 08:11:33 +11:00
Add fallback feature
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.
This commit is contained in:
parent
1a9d5901cc
commit
7bb9d951c6
|
@ -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"] }
|
agb_hashmap = { version = "0.21.0", path = "../agb-hashmap", features = ["allocator_api"] }
|
||||||
bilge = "0.2"
|
bilge = "0.2"
|
||||||
qrcodegen-no-heap = { version = "1.8", optional = true }
|
qrcodegen-no-heap = { version = "1.8", optional = true }
|
||||||
portable-atomic = { version = "1.6.0", default-features = false, features = ["unsafe-assume-single-core"] }
|
portable-atomic = { version = "1.6.0", default-features = false, features = ["unsafe-assume-single-core", "fallback"] }
|
||||||
once_cell = { version = "1.19.0", default-features = false, features = ["critical-section"] }
|
once_cell = { version = "1.20.1", default-features = false, features = ["critical-section"] }
|
||||||
critical-section = { version = "1.1.2", features = ["restore-state-u16"] }
|
critical-section = { version = "1.1.2", features = ["restore-state-u16"] }
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
|
|
Loading…
Reference in a new issue