-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1a6d4aa
commit c5f498c
Showing
3 changed files
with
19 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,11 @@ name = "paperclip-macros" | |
version = "0.1.0" | ||
authors = ["Ravi Shankar <[email protected]>"] | ||
edition = "2018" | ||
description = "Macros for paperclip OpenAPI codegen" | ||
documentation = "https://paperclip.waffles.space/paperclip_macros" | ||
license = "MIT OR Apache-2.0" | ||
homepage = "https://github.com/wafflespeanut/paperclip" | ||
repository = "https://github.com/wafflespeanut/paperclip" | ||
|
||
[lib] | ||
proc-macro = true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,13 @@ name = "paperclip" | |
version = "0.1.0" | ||
authors = ["Ravi Shankar <[email protected]>"] | ||
edition = "2018" | ||
description = "WIP OpenAPI codegen" | ||
documentation = "https://paperclip.waffles.space/paperclip" | ||
keywords = ["openapi", "api", "swagger", "http", "web"] | ||
license = "MIT OR Apache-2.0" | ||
homepage = "https://github.com/wafflespeanut/paperclip" | ||
repository = "https://github.com/wafflespeanut/paperclip" | ||
readme = "../README.md" | ||
|
||
[dependencies] | ||
failure = "0.1.5" | ||
|
@@ -11,7 +18,7 @@ heck = { version = "0.3.1", optional = true } | |
itertools = "0.8.0" | ||
lazy_static = "1.3.0" | ||
log = "0.4.6" | ||
paperclip-macros = { path = "../macros" } | ||
paperclip-macros = { path = "../macros", version = "0.1.0" } | ||
parking_lot = { version = "0.8.0" } | ||
quote = { version = "0.6.12", optional = true } | ||
regex = "1.1.6" | ||
|