Skip to content

Commit

Permalink
Update dependencies (hyper excluded)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexliesenfeld committed Jan 30, 2024
1 parent 228845d commit 3a796f3
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,39 +18,40 @@ lazy_static = "1.4"
base64 = "0.21"
regex = "1.10"
log = "0.4"
url = "2.4"
url = "2.5"
assert-json-diff = "2.0"
async-trait = "0.1"
async-object-pool = "0.1"
crossbeam-utils = "0.8"
futures-util = "0.3"
similar = "2.3"
similar = "2.4"
levenshtein = "1.0"
form_urlencoded = "1.2"

hyper = { version = "0.14", features = ["server", "http1", "tcp"] }
tokio = { version = "1.33", features = ["sync", "macros", "rt-multi-thread", "signal"] }
hyper = { version = "0.14", features = ["server", "http1"] }
tokio = { version = "1.35", features = ["sync", "macros", "rt-multi-thread", "signal"] }

isahc = { version = "1.7", optional = true }
basic-cookies = { version = "0.1", optional = true }
colored = { version = "2.0", optional = true }
colored = { version = "2.1", optional = true }
clap = { version = "4.4", features = ["derive", "env"], optional = true }
env_logger = { version = "0.10", optional = true }
env_logger = { version = "0.11", optional = true }
serde_yaml = { version = "0.9", optional = true }
async-std = { version = "1.12", features = ["attributes", "unstable"] }

[dev-dependencies]
env_logger = "0.10"
env_logger = "0.11"
tokio-test = "0.4"
quote = "1.0"
actix-rt = "2.9"
colored = "2.0"
ureq = "2.8"
colored = "2.1"
ureq = "2.9"

isahc = { version = "1.7", features = ["json"] }
syn = { version = "2.0", features = ["full"] }

reqwest = "0.11.22"
reqwest = "0.11"

[features]
default = ["cookies"]
standalone = ["clap", "env_logger", "serde_yaml", "remote"]
Expand Down

0 comments on commit 3a796f3

Please sign in to comment.