Skip to content

Commit

Permalink
Merge pull request #67 from thomastaylor312/fix/native-tls
Browse files Browse the repository at this point in the history
fix(codegen): Uses rustls over native-tls
  • Loading branch information
thomastaylor312 authored Jan 8, 2022
2 parents e816815 + 011bf38 commit 3e1682d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "weld-codegen"
version = "0.2.3"
version = "0.2.4"
edition = "2021"
authors = [ "wasmcloud Team" ]
license = "Apache-2.0"
Expand Down Expand Up @@ -29,13 +29,13 @@ atelier_smithy = "0.2"
bytes = "1.0"
cfg-if = "1.0"
directories = "4.0"
downloader = "0.2"
downloader = { version = "0.2", features = ["rustls-tls"], default-features = false }
handlebars = "4.0"
Inflector = "0.11"
lazy_static = "1.4"
lexical-sort = "0.3"
minicbor = { version = "0.11", features = ["derive", "std", "half" ] }
reqwest = { version = "0.11", features = [ "blocking" ] }
reqwest = { version = "0.11", default-features = false, features = [ "blocking", "rustls-tls" ] }
rustc-hash = { version = "1.1", default_features = false }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
Expand Down

0 comments on commit 3e1682d

Please sign in to comment.