Skip to content

Commit 5952d47

Browse files
committed
Fix reqwest Dependency
I should have removed this in 0.26.0. This commit actually removes it.
1 parent 21e9cff commit 5952d47

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 0.27.0 - 2026-02-02
4+
5+
### Changed
6+
7+
- We no longer disable default features for the reqwest crate. This should have been fixed in 0.26.0.
8+
39
## 0.26.0 - 2026-01-17
410

511
### Changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sendgrid"
3-
version = "0.26.0"
3+
version = "0.27.0"
44
edition = "2024"
55
authors = ["Garrett Squire <github@garrettsquire.com>"]
66
description = "An unofficial client library for the SendGrid API"
@@ -13,7 +13,7 @@ readme = "README.md"
1313

1414
[dependencies]
1515
data-encoding = "2.10"
16-
reqwest = { version = "0.13", default-features = false, features = ["json"] }
16+
reqwest = { version = "0.13", features = ["json"] }
1717
serde = { version = "1.0", features = ["derive"] }
1818
serde_json = "1.0"
1919
thiserror = "2.0"

0 commit comments

Comments
 (0)