-
Notifications
You must be signed in to change notification settings - Fork 2
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
57b13f0
commit d1484a7
Showing
6 changed files
with
12 additions
and
12 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,7 @@ | ||
[package] | ||
name = "pretend-awc" | ||
edition = "2018" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
description = "awc based client for pretend." | ||
authors = ["Lucien XU <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -13,5 +13,5 @@ categories = ["web-programming::http-client"] | |
readme = "README.md" | ||
|
||
[dependencies] | ||
pretend = { path = "../pretend", version = "0.1.0" } | ||
pretend = { path = "../pretend", version = "0.2.0" } | ||
awc = "2.0" |
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,7 @@ | ||
[package] | ||
name = "pretend-codegen" | ||
edition = "2018" | ||
version = "0.1.1" | ||
version = "0.2.0" | ||
description = "codegen for pretend." | ||
authors = ["Lucien XU <[email protected]>"] | ||
license = "MIT" | ||
|
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,7 @@ | ||
[package] | ||
name = "pretend-isahc" | ||
edition = "2018" | ||
version = "0.1.1" | ||
version = "0.2.0" | ||
description = "isahc based client for pretend." | ||
authors = ["Lucien XU <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -13,5 +13,5 @@ categories = ["web-programming::http-client"] | |
readme = "README.md" | ||
|
||
[dependencies] | ||
pretend = { path = "../pretend", version = "0.1.0" } | ||
pretend = { path = "../pretend", version = "0.2.0" } | ||
isahc = "1.3" |
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,7 @@ | ||
[package] | ||
name = "pretend-reqwest" | ||
edition = "2018" | ||
version = "0.1.1" | ||
version = "0.2.0" | ||
description = "reqwest based client for pretend." | ||
authors = ["Lucien XU <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -13,10 +13,10 @@ categories = ["web-programming::http-client"] | |
readme = "README.md" | ||
|
||
[dependencies] | ||
pretend = { path = "../pretend", version = "0.1.0" } | ||
pretend = { path = "../pretend", version = "0.2.0" } | ||
reqwest = { version = "0.11" } | ||
hyper = ">=0.14, <0.14.5" # Make socket2 compatible with Rust 1.44 | ||
|
||
[features] | ||
default = [] | ||
blocking = ["reqwest/blocking"] | ||
blocking = ["reqwest/blocking"] |
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,7 @@ | ||
[package] | ||
name = "pretend" | ||
edition = "2018" | ||
version = "0.1.1" | ||
version = "0.2.0" | ||
description = "pretend is a modular, Feign-inspired, HTTP client based on macros." | ||
authors = ["Lucien XU <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -18,7 +18,7 @@ bytes = "1.0" | |
encoding_rs = "0.8" | ||
http = "0.2" | ||
mime = "0.3" | ||
pretend-codegen = { path = "../pretend-codegen", version = "0.1.0" } | ||
pretend-codegen = { path = "../pretend-codegen", version = "0.2.0" } | ||
serde = "1.0" | ||
serde_json = "1.0" | ||
serde_urlencoded = "0.7" | ||
|