-
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.
See CHANGELOG.md for details. Signed-off-by: Tiago Castro <[email protected]>
- Loading branch information
1 parent
961f4b7
commit 5afe9c5
Showing
5 changed files
with
11 additions
and
15 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
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 |
---|---|---|
@@ -1,7 +1,6 @@ | ||
[package] | ||
name = "paperclip" | ||
version = "0.7.1" | ||
authors = ["Ravi Shankar <[email protected]>"] | ||
version = "0.8.0" | ||
edition = "2018" | ||
description = "OpenAPI tooling library for type-safe compile-time checked HTTP APIs" | ||
documentation = "https://paperclip-rs.github.io/paperclip/paperclip" | ||
|
@@ -18,9 +17,9 @@ path = "src/bin/main.rs" | |
required-features = ["cli"] | ||
|
||
[dependencies] | ||
paperclip-actix = { path = "plugins/actix-web", version = "0.5.1", optional = true } | ||
paperclip-core = { path = "core", version = "0.5.2" } | ||
paperclip-macros = { path = "macros", version = "0.6.1", optional = true } | ||
paperclip-actix = { path = "plugins/actix-web", version = "0.6.0", optional = true } | ||
paperclip-core = { path = "core", version = "0.6.0" } | ||
paperclip-macros = { path = "macros", version = "0.6.2", optional = true } | ||
|
||
env_logger = { version = "0.8", optional = true } | ||
git2 = { version = "0.15", optional = 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
[package] | ||
name = "paperclip-core" | ||
version = "0.5.2" | ||
authors = ["Ravi Shankar <[email protected]>"] | ||
version = "0.6.0" | ||
edition = "2018" | ||
description = "Core types and traits for paperclip OpenAPI tooling library" | ||
documentation = "https://paperclip-rs.github.io/paperclip/paperclip_core" | ||
|
@@ -10,7 +9,7 @@ homepage = "https://github.com/paperclip-rs/paperclip" | |
repository = "https://github.com/paperclip-rs/paperclip" | ||
|
||
[dependencies] | ||
paperclip-macros = { path = "../macros", version = "0.6.0" } | ||
paperclip-macros = { path = "../macros", version = "0.6.2" } | ||
actix-web2 = { version = "2", optional = true, default-features = false, package = "actix-web" } | ||
actix-web3 = { version = "3", optional = true, default-features = false, package = "actix-web" } | ||
actix-web4 = { version = "4", optional = true, default-features = false, package = "actix-web" } | ||
|
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 |
---|---|---|
@@ -1,7 +1,6 @@ | ||
[package] | ||
name = "paperclip-macros" | ||
version = "0.6.1" | ||
authors = ["Ravi Shankar <[email protected]>"] | ||
version = "0.6.2" | ||
edition = "2018" | ||
description = "Macros for paperclip OpenAPI tooling library" | ||
documentation = "https://paperclip-rs.github.io/paperclip/paperclip_macros" | ||
|
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 |
---|---|---|
@@ -1,7 +1,6 @@ | ||
[package] | ||
name = "paperclip-actix" | ||
version = "0.5.1" | ||
authors = ["Ravi Shankar <[email protected]>"] | ||
version = "0.6.0" | ||
edition = "2018" | ||
description = "Paperclip OpenAPI plugin for actix-web framework" | ||
documentation = "https://paperclip-rs.github.io/paperclip/paperclip_actix" | ||
|
@@ -10,8 +9,8 @@ homepage = "https://github.com/paperclip-rs/paperclip" | |
repository = "https://github.com/paperclip-rs/paperclip" | ||
|
||
[dependencies] | ||
paperclip-core = { path = "../../core", version = "0.5.1", optional = true } | ||
paperclip-macros = { path = "../../macros", version = "0.6.0", features = ["actix"] } | ||
paperclip-core = { path = "../../core", version = "0.6.0", optional = true } | ||
paperclip-macros = { path = "../../macros", version = "0.6.2", features = ["actix"] } | ||
futures = "0.3" | ||
actix-service1 = { version = "1", package = "actix-service", optional = true } | ||
actix-service2 = { version = "2", package = "actix-service", optional = true } | ||
|