mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-16 17:07:35 +00:00
1e448dec21
transcript, dalek-ff-group, ed449, and ciphersuite are all usable with no_std alone. The rest additionally require alloc. Part of #279.
20 lines
482 B
TOML
20 lines
482 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]
|
|
hashbrown = "0.13"
|
|
|
|
[features]
|
|
std = []
|
|
default = ["std"]
|