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:
Gwilym Inzani 2024-09-30 21:40:41 +01:00
parent 1a9d5901cc
commit 7bb9d951c6

View file

@ -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]