aboutsummaryrefslogtreecommitdiff
path: root/rust/macros/tests/invalid/Cargo.toml
diff options
context:
space:
mode:
authorFederico Igne <git@federicoigne.com>2021-11-08 18:06:56 +0000
committerFederico Igne <git@federicoigne.com>2021-11-08 18:06:56 +0000
commitcd067503a7546eaee904a9b5c6ae30eb0175d376 (patch)
tree2f625fc40314fa2abbe60da496b6f0993af8a779 /rust/macros/tests/invalid/Cargo.toml
parentb6d7705471f0a583f1d115472ddbc8c4f8a420a9 (diff)
downloadexercism-cd067503a7546eaee904a9b5c6ae30eb0175d376.tar.gz
exercism-cd067503a7546eaee904a9b5c6ae30eb0175d376.zip
[rust] Macros
Diffstat (limited to 'rust/macros/tests/invalid/Cargo.toml')
-rw-r--r--rust/macros/tests/invalid/Cargo.toml55
1 files changed, 55 insertions, 0 deletions
diff --git a/rust/macros/tests/invalid/Cargo.toml b/rust/macros/tests/invalid/Cargo.toml
new file mode 100644
index 0000000..b096d99
--- /dev/null
+++ b/rust/macros/tests/invalid/Cargo.toml
@@ -0,0 +1,55 @@
1#
2# This Cargo.toml file is used by the simple-trybuild module.
3# When adding a new file, please name the [[bin]] name to match the file
4# it is used to produce an error message
5#
6
7[package]
8name = "macros-tests"
9version = "0.0.0"
10edition = "2018"
11publish = false
12
13[dependencies.macros]
14path = "../../"
15default-features = false
16
17[[bin]]
18name = "comma-sep-rs"
19path = "comma-sep.rs"
20
21[[bin]]
22name = "double-commas-rs"
23path = "double-commas.rs"
24
25[[bin]]
26name = "only-arrow-rs"
27path = "only-arrow.rs"
28
29[[bin]]
30name = "only-comma-rs"
31path = "only-comma.rs"
32
33[[bin]]
34name = "single-argument-rs"
35path = "single-argument.rs"
36
37[[bin]]
38name = "triple-arguments-rs"
39path = "triple-arguments.rs"
40
41[[bin]]
42name = "two-arrows-rs"
43path = "two-arrows.rs"
44
45[[bin]]
46name = "leading-comma-rs"
47path = "leading-comma.rs"
48
49[[bin]]
50name = "no-comma-rs"
51path = "no-comma.rs"
52
53[[bin]]
54name = "missing-argument-rs"
55path = "missing-argument.rs"