The standard library is still required with `default-features = false` on bincode

I’m trying to use the bincode crate. As it’s default features, it uses the standard library, but I’m working in a no_std environment. I’ve added default-features = false to my Cargo.toml, but it still doesn’t compile. My dependencies: [package] name = "fsys" version = "0.1.0" edition = "2021" [dependencies] bincode = { version = "1.3.3",… Read More The standard library is still required with `default-features = false` on bincode