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