Skip to content

Commit

Permalink
feat: add --skip-tls-verify option to accept self-signed certs
Browse files Browse the repository at this point in the history
Co-authored-by: Matúš Ferech <[email protected]>
  • Loading branch information
nponsard and matusf committed Oct 3, 2023
1 parent 2c65d9e commit 274b074
Show file tree
Hide file tree
Showing 5 changed files with 179 additions and 63 deletions.
168 changes: 110 additions & 58 deletions Cargo.lock

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

12 changes: 9 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@ default-run = "openapi-fuzzer"

[dependencies]
argh = "0.1.4"
url = {version = "2.2.0", features = ["serde"]}
url = { version = "2.2.0", features = ["serde"] }
anyhow = "1.0.37"
openapiv3 = "0.5.0"
serde = "1.0"
serde_yaml = "0.8"
ureq = {version = "2.1.0", features = ["json", "native-certs"]}
ureq = { version = "2.7.0", features = ["json", "native-certs"] }
rustls = { version = "0.21", features = ["dangerous_configuration"] }
openapi_utils = "0.2.2"
arbitrary = "1"
serde_json = "1.0"
Expand All @@ -39,4 +40,9 @@ ci = ["github"]
# The installers to generate for each app
installers = []
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"aarch64-apple-darwin",
]
Loading

0 comments on commit 274b074

Please sign in to comment.