exercism-solutions/rust/macros/tests/invalid/Cargo.toml

56 lines
918 B
TOML
Raw Normal View History

2024-01-07 18:35:20 -06:00
#
# This Cargo.toml file is used by the simple-trybuild module.
# When adding a new file, please name the [[bin]] name to match the file
# it is used to produce an error message
#
[package]
name = "macros-tests"
version = "0.0.0"
edition = "2021"
publish = false
[dependencies.macros]
path = "../../"
default-features = false
[[bin]]
name = "comma-sep-rs"
path = "comma-sep.rs"
[[bin]]
name = "double-commas-rs"
path = "double-commas.rs"
[[bin]]
name = "only-arrow-rs"
path = "only-arrow.rs"
[[bin]]
name = "only-comma-rs"
path = "only-comma.rs"
[[bin]]
name = "single-argument-rs"
path = "single-argument.rs"
[[bin]]
name = "triple-arguments-rs"
path = "triple-arguments.rs"
[[bin]]
name = "two-arrows-rs"
path = "two-arrows.rs"
[[bin]]
name = "leading-comma-rs"
path = "leading-comma.rs"
[[bin]]
name = "no-comma-rs"
path = "no-comma.rs"
[[bin]]
name = "missing-argument-rs"
path = "missing-argument.rs"