mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-05 14:07:39 +03:00
Use boot-time for sleep
Boot-time: "This library reimplements std::time::Instant to use suspend-aware monotonic time if target system supports it. Otherwise it uses monotonic time or reexports std::time::Instant." Will be obsoleted when https://github.com/tokio-rs/tokio/issues/3185 is resolved. Fixes #22
This commit is contained in:
parent
0f148c58d3
commit
ecbaa1bcb5
3 changed files with 16 additions and 0 deletions
11
Cargo.lock
generated
11
Cargo.lock
generated
|
@ -173,6 +173,16 @@ dependencies = [
|
||||||
"generic-array",
|
"generic-array",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "boot-time"
|
||||||
|
version = "0.1.2"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "ce2b094c3b8fd302af9393806bb8af1b83a5a948ca7a91e87a92ea32167157f6"
|
||||||
|
dependencies = [
|
||||||
|
"cfg-if",
|
||||||
|
"libc",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "brotli"
|
name = "brotli"
|
||||||
version = "3.4.0"
|
version = "3.4.0"
|
||||||
|
@ -1062,6 +1072,7 @@ version = "0.31.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"askama",
|
"askama",
|
||||||
"base64",
|
"base64",
|
||||||
|
"boot-time",
|
||||||
"brotli",
|
"brotli",
|
||||||
"build_html",
|
"build_html",
|
||||||
"cached",
|
"cached",
|
||||||
|
|
|
@ -42,6 +42,7 @@ fastrand = "2.0.1"
|
||||||
log = "0.4.20"
|
log = "0.4.20"
|
||||||
pretty_env_logger = "0.5.0"
|
pretty_env_logger = "0.5.0"
|
||||||
dotenvy = "0.15.7"
|
dotenvy = "0.15.7"
|
||||||
|
boot-time = "0.1.2"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
lipsum = "0.9.0"
|
lipsum = "0.9.0"
|
||||||
|
|
|
@ -10,6 +10,10 @@ use log::info;
|
||||||
|
|
||||||
use serde_json::json;
|
use serde_json::json;
|
||||||
|
|
||||||
|
use boot_time; /*"This library reimplements std::time::Instant to use suspend-aware monotonic time if target system supports it.
|
||||||
|
Otherwise it uses monotonic time or reexports std::time::Instant."
|
||||||
|
See #22. Will be obsoleted when https://github.com/tokio-rs/tokio/issues/3185 is resolved. */
|
||||||
|
|
||||||
static REDDIT_ANDROID_OAUTH_CLIENT_ID: &str = "ohXpoqrZYub1kg";
|
static REDDIT_ANDROID_OAUTH_CLIENT_ID: &str = "ohXpoqrZYub1kg";
|
||||||
|
|
||||||
static AUTH_ENDPOINT: &str = "https://accounts.reddit.com";
|
static AUTH_ENDPOINT: &str = "https://accounts.reddit.com";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue