forked from mgattozzi/assay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (25 loc) · 937 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
[package]
name = "assay"
version = "0.1.1"
edition = "2021"
authors = ["Michael Gattozzi <[email protected]>"]
description = "A super powered testing macro for Rust"
documentation = "https://docs.rs/assay"
readme = "README.md"
repository = "https://github.com/mgattozzi/assay"
license = "MPL-2.0"
keywords = ["proc-macro", "test", "testing"]
categories = ["development-tools", "development-tools::testing"]
[dependencies]
assay-proc-macro = { path = "assay-proc-macro", version = "0.1.0", default-features = false }
async-std = { version = "^1.10.0", optional = true }
pretty_assertions_sorted = "^1.0.0"
rusty-fork = "^0.3.0"
tempfile = "3.2.0"
tokio = { version = "^1.16.0", features = ["rt-multi-thread"], optional = true }
[workspace]
members = ["assay-proc-macro"]
[features]
default = ["async-tokio-runtime"]
async-tokio-runtime = ["tokio", "assay-proc-macro/async"]
async-std-runtime = ["async-std", "assay-proc-macro/async"]