-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 900 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
[package]
name = "test-each"
description = "Generate tests at compile-time based on file resources"
documentation = "https://docs.rs/test-each"
readme = "README.md"
version.workspace = true
authors.workspace = true
edition.workspace = true
repository.workspace = true
homepage.workspace = true
license-file.workspace = true
keywords.workspace = true
categories.workspace = true
[workspace.package]
version = "0.2.1"
authors = ["Remo Pas <remo.pas22@gmail.com>"]
edition = "2021"
repository = "https://github.com/remkop22/test-each"
homepage = "https://github.com/remkop22/test-each"
license-file = "LICENSE"
keywords = ["test", "proc-macro", "codegen"]
categories = ["development-tools::testing", "development-tools::build-utils", "filesystem"]
[lib]
doctest = false
[workspace]
members = ["test-each-codegen"]
[dependencies]
test-each-codegen = { version = "0.2.1", path = "test-each-codegen" }