20 lines
359 B
TOML
20 lines
359 B
TOML
[package]
|
|
name = "boa_macros"
|
|
description = "Macros for the Boa JavaScript engine."
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
quote = "1.0.23"
|
|
syn = "1.0.107"
|
|
proc-macro2 = "1.0"
|
|
synstructure = "0.12"
|