Skip to content

Commit

Permalink
Merge pull request #302 from drahnr/bernhard-no-more-openssl
Browse files Browse the repository at this point in the history
drop the openssl dependency
  • Loading branch information
tamasfe authored Aug 16, 2022
2 parents e329b17 + 5b3ef6c commit 73c202d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/taplo-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ hex = "0.4"
itertools = "0.10.3"
once_cell = "1.4"
regex = "1.4"
reqwest = { version = "0.11.4", features = ["json"] }
reqwest = { version = "0.11.9", default-features = false, features = ["json", "rustls-tls"] }
schemars = "0.8"
serde = "1"
serde_json = "1"
Expand Down
2 changes: 1 addition & 1 deletion crates/taplo-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ lru = "0.7.2"
parking_lot = "0.12.0"
percent-encoding = "2.1.0"
regex = "1.5.4"
reqwest = { version = "0.11.9", features = ["json"] }
reqwest = { version = "0.11.9", default-features = false, features = ["json", "rustls-tls"] }
schemars = { version = "0.8.8", features = ["url"] }
semver = { version = "1.0.5", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/taplo-lsp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ lsp-types = { version = "0.93.0", features = ["proposed"] }
once_cell = "1.5"
parking_lot = "0.12.0"
regex = "1.5.4"
reqwest = { version = "0.11.4", features = ["json"] }
reqwest = { version = "0.11.9", default-features = false, features = ["json", "rustls-tls"] }
schemars = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
Expand Down

0 comments on commit 73c202d

Please sign in to comment.