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

24 lines
549 B
TOML
Raw Normal View History

2019-11-25 16:49:11 +01:00
[package]
name = "actix-macros"
2020-05-18 08:36:23 +02:00
version = "0.1.2"
2019-11-25 16:49:11 +01:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2019-12-01 15:30:24 +01:00
description = "Actix runtime macros"
2019-11-25 16:49:11 +01:00
repository = "https://github.com/actix/actix-net"
documentation = "https://docs.rs/actix-macros/"
categories = ["network-programming", "asynchronous"]
license = "MIT OR Apache-2.0"
2019-11-25 16:49:11 +01:00
edition = "2018"
[lib]
proc-macro = true
[dependencies]
2020-03-06 05:45:21 +01:00
quote = "1.0.3"
2019-11-25 16:49:11 +01:00
syn = { version = "^1", features = ["full"] }
[dev-dependencies]
2020-04-26 21:11:16 +02:00
actix-rt = "1.0"
2020-05-18 08:36:23 +02:00
futures-util = { version = "0.3", default-features = false }
2020-04-26 21:11:16 +02:00
trybuild = "1"