2023-04-22 08:38:47 +00:00
|
|
|
[package]
|
|
|
|
name = "std-shims"
|
2023-08-08 22:18:59 +00:00
|
|
|
version = "0.1.1"
|
2023-04-22 08:38:47 +00:00
|
|
|
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"
|
2023-08-02 18:17:57 +00:00
|
|
|
rust-version = "1.70"
|
2023-04-22 08:38:47 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
|
|
|
[dependencies]
|
2023-10-31 11:41:23 +00:00
|
|
|
spin = { version = "0.9", default-features = false, features = ["use_ticket_mutex", "once"] }
|
|
|
|
hashbrown = { version = "0.14", default-features = false, features = ["ahash", "inline-more"] }
|
2023-04-22 08:38:47 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
std = []
|
|
|
|
default = ["std"]
|