refactor Factory trait

This commit is contained in:
Nikolay Kim 2020-04-01 14:34:45 +06:00
parent d2edbdf9f1
commit c1607f1698
16 changed files with 96 additions and 108 deletions

20
ntex-macros/Cargo.toml Normal file
View file

@ -0,0 +1,20 @@
[package]
name = "ntex-macros"
version = "0.1.0"
description = "ntex proc macros"
readme = "README.md"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
license = "MIT"
edition = "2018"
[lib]
proc-macro = true
[dependencies]
quote = "^1"
syn = { version = "^1", features = ["full", "parsing"] }
proc-macro2 = "^1"
[dev-dependencies]
ntex = { path = "../ntex/" }
futures = { version = "0.3.1" }