serai/common/std-shims/Cargo.toml
2023-07-26 02:59:24 -04:00

21 lines
539 B
TOML

[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]
spin = { version = "0.9", features = ["mutex", "once"] }
hashbrown = "0.14"
[features]
std = []
default = ["std"]