-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (34 loc) · 1.15 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
[workspace]
[workspace.package]
version = "0.5.1"
authors = ["Tomek Piotrowski"]
documentation = "https://docs.rs/lets_expect"
rust-version = "1.64"
edition = "2021"
license = "MIT"
repository = "https://github.com/tomekpiotrowski/lets_expect"
categories = ["development-tools::testing"]
[workspace.dependencies]
tokio = { version = "1", features = ["macros"] }
syn = { version = "1.0.103", features = ["full", "extra-traits"] }
quote = "1.0.21"
proc-macro2 = "1.0.47"
colored = "2.0.0"
[package]
name = "lets_expect"
description = "Clean tests for Rust"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
categories.workspace = true
[dependencies]
lets_expect_core = { version = "=0.5.1", path = "lets_expect_core" }
lets_expect_assertions = { version = "=0.5.1", path = "lets_expect_assertions" }
lets_expect_macro = { version = "=0.5.1", path = "lets_expect_macro" }
tokio = { workspace = true, optional = true }
[dev-dependencies]
tokio-test = { version = "0.4.2" }
[features]
tokio = ["dep:tokio", "lets_expect_assertions/tokio", "lets_expect_core/tokio", "lets_expect_macro/tokio"]