forked from mongodb/mongo-task-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (39 loc) · 1000 Bytes
/
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
38
39
40
41
42
[package]
name = "mongo-task-generator"
description = "Dynamically split evergreen tasks into subtasks for testing the mongodb/mongo project."
license = "Apache-2.0"
version = "0.7.8"
repository = "https://github.com/mongodb/mongo-task-generator"
authors = ["Decision Automation Group <[email protected]>"]
edition = "2018"
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
chrono = "0.4"
clap = "3.1"
cmd_lib = "1.3"
futures = "0.3"
lazy_static = "1.4"
maplit = "1"
rand = "0.8.5"
regex = "1"
reqwest = "0.11.13"
reqwest-middleware = "0.2.0"
reqwest-retry = "0.2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.8"
shellexpand = "2.1"
shrub-rs = "0.5.1"
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = {version = "0.3", features = ["json", "fmt", "std"]}
[dev-dependencies]
assert_cmd = "2.0"
cargo-nextest = "0.9"
rstest = "0.15"
simple-error = "0.2"
tempdir = "0.3"
[profile.release]
opt-level = 2
lto = "thin"