16 lines
405 B
TOML
16 lines
405 B
TOML
[package]
|
|
name = "relax-macros"
|
|
version = "0.1.0-alpha.3"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Derive macro to implement Relax/Relaxed traits (https://crates.io/crates/relax)"
|
|
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = { workspace = true, features = ["full"] }
|
|
quote = { workspace = true }
|
|
proc-macro2 = { workspace = true }
|