Skip to content

Commit

Permalink
feat: removes dependency on openssl
Browse files Browse the repository at this point in the history
  • Loading branch information
EverlastingBugstopper committed May 24, 2021
1 parent 7925eb2 commit 39f4d21
Show file tree
Hide file tree
Showing 3 changed files with 104 additions and 5 deletions.
99 changes: 99 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ composition-js = ["harmonizer"]

[dependencies]

# workspace deps
# workspace dependencies
binstall = { path = "./installers/binstall" }
houston = { path = "./crates/houston" }
robot-panic = { path = "./crates/robot-panic" }
Expand All @@ -41,7 +41,7 @@ sdl-encoder = { path = "./crates/sdl-encoder" }
sputnik = { path = "./crates/sputnik" }
timber = { path = "./crates/timber" }

# crates.io deps
# crates.io dependencies
ansi_term = "0.12.1"
anyhow = "1.0.38"
atty = "0.2.14"
Expand All @@ -50,7 +50,7 @@ camino = { version = "1.0.2", features = ["serde1"] }
chrono = "0.4"
console = "0.14.0"
git-url-parse = "0.3.1"
git2 = "0.13.20"
git2 = { version = "0.13.20", default-features = false, features = ["vendored-openssl"] }
harmonizer = { version = "0.3.0", optional = true }
heck = "0.3.2"
humantime = "2.1.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/rover-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ graphql-parser = "0.3.0"
graphql_client = "0.9"
http = "0.2"
regex = "1.5.4"
reqwest = {version = "0.11", features = ["json", "blocking", "native-tls-vendored"]}
reqwest = {version = "0.11", default-features = false, features = ["json", "blocking", "rustls-tls"]}
sdl-encoder = {path = "../sdl-encoder"}
serde = "1"
serde_json = "1"
Expand All @@ -28,7 +28,7 @@ tracing = "0.1"
[build-dependencies]
camino = "1"
online = "0.2.2"
reqwest = {version = "0.11", features = ["blocking", "native-tls-vendored"]}
reqwest = {version = "0.11", default-features = false, features = ["json", "blocking", "native-tls-vendored"]}
uuid = {version = "0.8", features = ["v4"]}

[dev-dependencies]
Expand Down

0 comments on commit 39f4d21

Please sign in to comment.