2023-02-07 08:05:21 +00:00
|
|
|
[package]
|
2024-06-20 06:16:04 +00:00
|
|
|
name = "ostd-macros"
|
2025-03-14 12:02:41 +00:00
|
|
|
version = "0.13.0"
|
2023-02-07 08:05:21 +00:00
|
|
|
edition = "2021"
|
2024-07-01 08:00:09 +00:00
|
|
|
description = "OSTD's proc macros"
|
|
|
|
license = "MPL-2.0"
|
|
|
|
repository ="https://github.com/asterinas/asterinas"
|
2023-02-07 08:05:21 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2024-02-21 08:58:40 +00:00
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
2023-02-07 08:05:21 +00:00
|
|
|
[dependencies]
|
2024-02-21 08:58:40 +00:00
|
|
|
proc-macro2 = "1.0.78"
|
|
|
|
quote = "1.0.35"
|
2024-06-21 05:51:13 +00:00
|
|
|
rand = "0.8.5"
|
2024-02-21 08:58:40 +00:00
|
|
|
syn = { version = "2.0.48", features = ["full"] }
|
2025-01-24 16:56:07 +00:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|