Files
exponential_backoff/Cargo.toml

22 lines
473 B
TOML

[package]
name = "exponential_backoff"
version = "0.1.3"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = "1.24.2"
reqwest = "0.11.14"
chrono = "0.4.23"
google-youtube3 = "5.0.2"
serde_json = "1.0.91"
rand = "0.8.5"
log = { version = "0.4" , optional=true}
tracing = { version = "0.1.37" , optional=true}
[features]
default = ["tracing"]
log = ["dep:log"]
tracing = ["dep:tracing"]