-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
41 lines (38 loc) · 1.01 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
38
39
40
41
[package]
name = "mimicaw"
version = "0.1.3"
description = """
A library for writing asynchronous tests.
"""
license = "MIT OR Apache-2.0"
authors = [ "Yusuke Sasaki <yusuke.sasaki.nuem@gmail.com>" ]
edition = "2018"
repository = "https://github.com/ubnt-intrepid/mimicaw.git"
readme = "README.md"
categories = [ "development-tools::testing" ]
keywords = [ "test", "framework", "async" ]
[dependencies]
console = "0.9"
futures-core = "0.3"
futures-channel = "0.3"
futures-util = { version = "0.3", features = [ "std" ], default-features = false }
getopts = "0.2"
num-format = "0.4"
pin-project = "0.4"
[dev-dependencies]
async-std = { version = "1", features = ["attributes"] }
cargo-husky = { version = "1.5", features = [ "precommit-hook", "run-cargo-fmt" ] }
chrono = "0.4"
futures = "0.3"
futures-timer = "2"
maybe-unwind = "0.1"
rand = "0.7"
sxd-document = "0.3"
tokio = { version = "0.2.0", features = [ "full" ] }
version-sync = "0.8"
[workspace]
members = [
".",
"examples/framework",
"examples/framework/macros",
]