2022-04-23 20:03:09 +02:00
|
|
|
[package]
|
2022-09-02 17:40:19 +02:00
|
|
|
name = "actix-admin-macros"
|
|
|
|
description = "macros to be used with actix-admin crate"
|
|
|
|
license = "MIT OR Apache-2.0"
|
2022-10-11 19:03:05 +02:00
|
|
|
repository = "https://github.com/mgugger/actix-admin"
|
2023-01-15 14:20:27 +01:00
|
|
|
version = "0.3.0"
|
2022-04-23 20:03:09 +02:00
|
|
|
edition = "2021"
|
2022-09-02 17:37:13 +02:00
|
|
|
exclude = [
|
|
|
|
"tests/*"
|
|
|
|
]
|
2022-04-23 20:03:09 +02:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2022-06-06 12:55:25 +02:00
|
|
|
bae = "0.1.7"
|
2022-04-23 20:03:09 +02:00
|
|
|
quote = "1.0"
|
|
|
|
syn = { version = "1.0", features = ["full", "extra-traits"] }
|
2022-07-25 16:57:42 +02:00
|
|
|
proc-macro2 = { version = "1.0.36", default-features = false }
|