blob: 5df648b2d0f52252015e6afc44d30d98c1743470 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
[package]
name = "rustlings-macros"
description = "A macros crate intended to be used only by Rustlings"
version.workspace = true
authors.workspace = true
repository.workspace = true
license.workspace = true
edition.workspace = true
rust-version.workspace = true
include = [
"/src/",
"/info.toml",
]
[lib]
proc-macro = true
[dependencies]
quote = "1.0"
serde.workspace = true
toml.workspace = true
[lints]
workspace = true
|