22 lines
490 B
TOML
22 lines
490 B
TOML
[package]
|
|
name = "ostd-macros"
|
|
version = "0.17.0"
|
|
edition = "2024"
|
|
description = "OSTD's proc macros"
|
|
license = "MPL-2.0"
|
|
repository ="https://github.com/asterinas/asterinas"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = { version = "1.0.95", features = ["span-locations"] }
|
|
quote = "1.0.35"
|
|
rand = "0.9.2"
|
|
syn = { version = "2.0.48", features = ["full"] }
|
|
|
|
[lints]
|
|
workspace = true
|