1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-24 00:01:11 +01:00
actix-net/actix-macros/Cargo.toml

37 lines
851 B
TOML
Raw Normal View History

2019-11-25 16:49:11 +01:00
[package]
name = "actix-macros"
2023-07-20 00:52:56 +02:00
version = "0.2.4"
2021-06-08 18:48:30 +02:00
authors = [
"Nikolay Kim <fafhrd91@gmail.com>",
"Ibraheem Ahmed <ibrah1440@gmail.com>",
"Rob Ede <robjtede@icloud.com>",
2021-06-08 18:48:30 +02:00
]
2021-02-02 03:07:58 +01:00
description = "Macros for Actix system and runtime"
2023-09-17 21:25:58 +02:00
repository = "https://github.com/actix/actix-net"
2019-11-25 16:49:11 +01:00
categories = ["network-programming", "asynchronous"]
2023-09-17 21:25:58 +02:00
license.workspace = true
2023-07-17 04:05:39 +02:00
edition.workspace = true
rust-version.workspace = true
2019-11-25 16:49:11 +01:00
2023-09-17 21:25:58 +02:00
[package.metadata.cargo-machete]
ignored = [
"proc_macro2", # specified for minimal versions compat
]
2019-11-25 16:49:11 +01:00
[lib]
proc-macro = true
[dependencies]
2022-12-21 21:36:26 +01:00
quote = "1"
syn = { version = "2", features = ["full"] }
2019-11-25 16:49:11 +01:00
2023-09-17 21:25:58 +02:00
# minimal versions compat
2023-10-29 22:15:40 +01:00
[target.'cfg(any())'.dependencies]
2023-09-17 21:25:58 +02:00
proc-macro2 = "1.0.60"
2019-11-25 16:49:11 +01:00
[dev-dependencies]
2022-12-21 21:36:26 +01:00
actix-rt = "2"
futures-util = { version = "0.3.17", default-features = false }
rustversion-msrv = "0.100"
2020-04-26 21:11:16 +02:00
trybuild = "1"