Compare commits

...

2 commits

Author SHA1 Message Date
asonix 5793bf2f0e Bump version
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2023-01-09 20:25:55 -06:00
asonix e3c02c19b8 Don't follow redirects 2023-01-09 20:25:39 -06:00
3 changed files with 3 additions and 2 deletions

2
Cargo.lock generated
View file

@ -421,7 +421,7 @@ dependencies = [
[[package]]
name = "deny-proxy"
version = "0.1.1"
version = "0.1.2"
dependencies = [
"actix-web",
"actix-web-lab",

View file

@ -1,6 +1,6 @@
[package]
name = "deny-proxy"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -60,6 +60,7 @@ async fn main() -> Result<(), Error> {
client: Client::builder()
.wrap(Tracing)
.timeout(Duration::from_secs(30))
.disable_redirects()
.finish(),
};