mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-26 21:50:26 +00:00
ac7b98daac
Indirects it via a minimal wrapper which can be trivially patched.
19 lines
572 B
TOML
19 lines
572 B
TOML
[package]
|
|
name = "patchable-async-sleep"
|
|
version = "0.1.0"
|
|
description = "An async sleep function, patchable to the preferred runtime"
|
|
license = "MIT"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/common/patchable-async-sleep"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
keywords = ["async", "sleep", "tokio", "smol", "async-std"]
|
|
edition = "2021"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
tokio = { version = "1", default-features = false, features = [ "time"] }
|