Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,18 @@ rust-version = "1.85.0"

[workspace.dependencies]
# Workspace dependencies
reqsign-aliyun-oss = { version = "2.0.2", path = "services/aliyun-oss" }
reqsign-aws-v4 = { version = "2.0.2", path = "services/aws-v4" }
reqsign-azure-storage = { version = "2.0.2", path = "services/azure-storage" }
reqsign-command-execute-tokio = { version = "2.0.2", path = "context/command-execute-tokio" }
reqsign-core = { version = "2.0.2", path = "core" }
reqsign-file-read-tokio = { version = "2.0.2", path = "context/file-read-tokio" }
reqsign-google = { version = "2.0.2", path = "services/google" }
reqsign-http-send-reqwest = { version = "3.0.0", path = "context/http-send-reqwest" }
reqsign-huaweicloud-obs = { version = "2.0.2", path = "services/huaweicloud-obs" }
reqsign-oracle = { version = "2.0.2", path = "services/oracle" }
reqsign-tencent-cos = { version = "2.0.2", path = "services/tencent-cos" }
reqsign-volcengine-tos = { version = "2.0.2", path = "services/volcengine-tos" }
reqsign-aliyun-oss = { version = "3.0.0", path = "services/aliyun-oss" }
reqsign-aws-v4 = { version = "3.0.0", path = "services/aws-v4" }
reqsign-azure-storage = { version = "3.0.0", path = "services/azure-storage" }
reqsign-command-execute-tokio = { version = "3.0.0", path = "context/command-execute-tokio" }
reqsign-core = { version = "3.0.0", path = "core" }
reqsign-file-read-tokio = { version = "3.0.0", path = "context/file-read-tokio" }
reqsign-google = { version = "3.0.0", path = "services/google" }
reqsign-http-send-reqwest = { version = "4.0.0", path = "context/http-send-reqwest" }
reqsign-huaweicloud-obs = { version = "3.0.0", path = "services/huaweicloud-obs" }
reqsign-oracle = { version = "3.0.0", path = "services/oracle" }
reqsign-tencent-cos = { version = "3.0.0", path = "services/tencent-cos" }
reqsign-volcengine-tos = { version = "3.0.0", path = "services/volcengine-tos" }

# Crates.io dependencies
anyhow = "1"
Expand Down
2 changes: 1 addition & 1 deletion context/command-execute-tokio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "reqsign-command-execute-tokio"
version = "2.0.2"
version = "3.0.0"

categories = ["asynchronous"]
description = "Tokio-based command execution implementation for reqsign"
Expand Down
2 changes: 1 addition & 1 deletion context/file-read-tokio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "reqsign-file-read-tokio"
version = "2.0.2"
version = "3.0.0"

categories = ["asynchronous"]
description = "Tokio-based file reader implementation for reqsign"
Expand Down
2 changes: 1 addition & 1 deletion context/http-send-reqwest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "reqsign-http-send-reqwest"
version = "3.0.0"
version = "4.0.0"

categories = ["asynchronous"]
description = "Reqwest-based HTTP client implementation for reqsign."
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "reqsign-core"
version = "2.0.2"
version = "3.0.0"

categories = ["command-line-utilities", "web-programming"]
description = "Signing API requests without effort."
Expand Down
2 changes: 1 addition & 1 deletion reqsign/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "reqsign"
version = "0.19.0"
version = "0.20.0"

categories = ["authentication", "web-programming::http-client"]
description = "Signing HTTP requests for AWS, Azure, Google, Huawei, Aliyun, Tencent and Oracle services"
Expand Down
8 changes: 4 additions & 4 deletions reqsign/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Add `reqsign` to your `Cargo.toml`:

```toml
[dependencies]
reqsign = "0.19"
reqsign = "0.20"
```

By default, this includes the `default-context` feature which provides a ready-to-use context implementation using `reqwest` and `tokio`.
Expand All @@ -29,7 +29,7 @@ To use specific services only:

```toml
[dependencies]
reqsign = { version = "0.19", default-features = false, features = ["aws", "default-context"] }
reqsign = { version = "0.20", default-features = false, features = ["aws", "default-context"] }
```

## Examples
Expand Down Expand Up @@ -178,6 +178,6 @@ This crate supports WebAssembly (WASM) targets. However, the `default-context` f
Example for WASM:
```toml
[dependencies]
reqsign = { version = "0.19", default-features = false, features = ["aws"] }
reqsign-http-send-reqwest = "3"
reqsign = { version = "0.20", default-features = false, features = ["aws"] }
reqsign-http-send-reqwest = "4"
```
2 changes: 1 addition & 1 deletion services/aliyun-oss/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "reqsign-aliyun-oss"
version = "2.0.2"
version = "3.0.0"

description = "Aliyun OSS signing implementation for reqsign."

Expand Down
2 changes: 1 addition & 1 deletion services/aws-v4/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "reqsign-aws-v4"
version = "2.0.2"
version = "3.0.0"

description = "AWS SigV4 signing implementation for reqsign."

Expand Down
2 changes: 1 addition & 1 deletion services/azure-storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "reqsign-azure-storage"
version = "2.0.2"
version = "3.0.0"

description = "Azure Storage signing implementation for reqsign."

Expand Down
2 changes: 1 addition & 1 deletion services/google/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "reqsign-google"
version = "2.0.2"
version = "3.0.0"

description = "Google Cloud Platform signing implementation for reqsign."

Expand Down
2 changes: 1 addition & 1 deletion services/huaweicloud-obs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "reqsign-huaweicloud-obs"
version = "2.0.2"
version = "3.0.0"

description = "Huawei Cloud OBS signing implementation for reqsign."

Expand Down
2 changes: 1 addition & 1 deletion services/oracle/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "reqsign-oracle"
version = "2.0.2"
version = "3.0.0"

description = "Oracle Cloud signing implementation for reqsign."

Expand Down
2 changes: 1 addition & 1 deletion services/tencent-cos/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "reqsign-tencent-cos"
version = "2.0.2"
version = "3.0.0"

description = "Tencent Cloud COS signing implementation for reqsign."

Expand Down
2 changes: 1 addition & 1 deletion services/volcengine-tos/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "reqsign-volcengine-tos"
version = "2.0.2"
version = "3.0.0"

description = "Volcengine TOS signing implementation for reqsign."

Expand Down
Loading