Skip to content

Commit

Permalink
Merge pull request #41 from axiomhq/arne/fix-reqwest-features
Browse files Browse the repository at this point in the history
Disable reqwest default features
  • Loading branch information
bahlo committed Jan 26, 2023
2 parents 6fc280e + c6f5c0f commit 1b10d54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
include:
- runtime: Tokio
- runtime: async-std
flags: --no-default-features --features async-std
flags: --no-default-features --features async-std,default-tls
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ include = ["src/**/*.rs", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
resolver = "2"

[dependencies]
reqwest = { version = "0.11", features = ["json", "stream", "gzip", "blocking"] }
reqwest = { version = "0.11", default-features = false, features = ["json", "stream", "gzip", "blocking"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = { version = "0.4", features = ["serde"] }
Expand Down

0 comments on commit 1b10d54

Please sign in to comment.