-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 803 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 803 Bytes
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
[package]
name = "eb"
description = "A command executor exercising exponential backoff"
edition = "2021"
version = "0.5.0"
rust-version = "1.74"
authors = ["Kristofer Rye <kristofer.rye@gmail.com>"]
license = "GPL-3.0-only"
repository = "https://github.com/rye/eb"
readme = "README.md"
keywords = ["cli", "exponential", "backoff", "tool"]
categories = ["command-line-utilities"]
[badges]
is-it-maintained-issue-resolution = { repository = "rye/eb" }
is-it-maintained-open-issues = { repository = "rye/eb" }
maintenance = { status = "actively-developed" }
[features]
default = []
[dependencies]
anyhow = "1"
clap = { version = "4", default-features = false, features = ["std", "suggestions", "color"] }
simple_logger = { version = "5", optional = true }
log = "0.4.20"
rand = "0.9.0"
thiserror = "2"