blob: 191448231b435283b84435f6132db7caec4378f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
[package]
name = "ridicule-macros"
version = "0.2.0"
license = "MIT OR Apache-2.0"
description = "Macros for Ridicule, a mocking library supporting non-static function generics"
edition = "2021"
[lib]
proc-macro = true
[dependencies]
quote = "1.0.26"
syn = { version = "1.0.109", features = ["full", "printing", "extra-traits"] }
proc-macro-error = "1.0.4"
proc-macro2 = "1.0.52"
[dev-dependencies]
ridicule = { version = "0.2.0", path = ".." }
|