-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (23 loc) · 824 Bytes
/
Cargo.toml
File metadata and controls
27 lines (23 loc) · 824 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
[package]
edition = "2018"
homepage = "https://github.com/cramt/shoulda"
keywords = ["test", "BDD", "TDD", "assertion"]
license = "MIT"
name = "shoulda"
repository = "https://github.com/cramt/shoulda"
version.workspace = true
authors.workspace = true
description.workspace = true
documentation.workspace = true
[dependencies]
shoulda_core = { path = "./shoulda_core", version = "0.2.0" }
shoulda_macro = { path = "./shoulda_macro", version = "0.2.0" }
[workspace]
members = ["shoulda_core", "shoulda_macro", "tests"]
[workspace.package]
version = "0.2.1"
authors = ["Alexandra Østermark <alex.cramt@gmail.com>"]
description = "derive macro for test assertions"
documentation = "https://docs.rs/shoulda_core/0.1.2/shoulda_core/index.html"
[package.metadata.docs.rs]
no-default-features = true