mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
20 lines
461 B
TOML
20 lines
461 B
TOML
[package]
|
|
name = "ntex-macros"
|
|
version = "0.1.0"
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
description = "Ntex runtime macros"
|
|
repository = "https://github.com/ntex-rs/ntex"
|
|
documentation = "https://docs.rs/ntex-macros/"
|
|
categories = ["network-programming", "asynchronous"]
|
|
license = "MIT"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
quote = "^1"
|
|
syn = { version = "^1", features = ["full"] }
|
|
|
|
[dev-dependencies]
|
|
ntex = { version = "0.1.1" }
|