2023-04-22 08:38:47 +00:00
|
|
|
[package]
|
|
|
|
name = "std-shims"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "A series of std shims to make alloc more feasible"
|
|
|
|
license = "MIT"
|
|
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/common/std-shims"
|
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
|
|
keywords = ["nostd", "no_std", "alloc", "io"]
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
|
|
|
[dependencies]
|
2023-07-26 06:59:24 +00:00
|
|
|
spin = { version = "0.9", features = ["mutex", "once"] }
|
2023-06-29 01:16:33 +00:00
|
|
|
hashbrown = "0.14"
|
2023-04-22 08:38:47 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
std = []
|
|
|
|
default = ["std"]
|