2024-03-28 17:34:48 +01:00
|
|
|
[package]
|
|
|
|
name = "rustlings-macros"
|
2024-04-24 16:15:14 +02:00
|
|
|
description = "A macros crate intended to be used only by Rustlings"
|
2024-03-28 17:34:48 +01:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
2024-04-24 16:15:14 +02:00
|
|
|
repository.workspace = true
|
2024-03-28 17:34:48 +01:00
|
|
|
license.workspace = true
|
|
|
|
edition.workspace = true
|
2024-08-02 16:40:06 +02:00
|
|
|
rust-version.workspace = true
|
2024-04-25 19:54:03 +02:00
|
|
|
include = [
|
|
|
|
"/src/",
|
|
|
|
"/info.toml",
|
|
|
|
]
|
2024-03-28 17:34:48 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2024-08-24 00:14:12 +02:00
|
|
|
quote = "1.0.37"
|
2024-04-23 19:18:25 +02:00
|
|
|
serde.workspace = true
|
|
|
|
toml_edit.workspace = true
|
2024-08-16 00:15:33 +02:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|