mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 12:19:24 +00:00
This is technically a semver break due to bumping spin to 0.10, with the types from spin being directly exposed. Long-term, we should not directly expose spin but instead have our own types which are thin wrappers around spin (clearly defining our API and allowing upgrading internals without breaking semver).
26 lines
710 B
TOML
26 lines
710 B
TOML
[package]
|
|
name = "std-shims"
|
|
version = "0.1.2"
|
|
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"
|
|
rust-version = "1.80"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
spin = { version = "0.10", default-features = false, features = ["use_ticket_mutex", "once", "lazy"] }
|
|
hashbrown = { version = "0.14", default-features = false, features = ["ahash", "inline-more"] }
|
|
|
|
[features]
|
|
std = []
|
|
default = ["std"]
|