forked from softprops/again
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (33 loc) · 1.04 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "again"
version = "0.1.2"
authors = ["softprops <d.tangren@gmail.com>"]
description = "wasm-compatible retry util for std library futures"
edition = "2018"
documentation = "https://docs.rs/again"
homepage = "https://github.com/softprops/again"
repository = "https://github.com/softprops/again"
keywords = ["retry", "futures", "futures-retry"]
license = "MIT"
readme = "README.md"
categories = [
"asynchronous",
"wasm",
"web-programming"
]
[badges]
maintenance = { status = "actively-developed" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["log", "rand"]
wasm-bindgen = ["getrandom/wasm-bindgen"]
[dependencies]
log = { version = "0.4", optional = true }
rand = { version = "0.8", optional = true }
getrandom = { version = "0.2", optional = true }
wasm-timer = { package = "fluvio-wasm-timer", version = "0.2.5" }
[dev-dependencies]
approx = "0.5"
pretty_env_logger = "0.4"
reqwest = "0.11"
tokio = { version = "1", features = ["rt-multi-thread","macros"] }