mirror of
https://github.com/Hopiu/lychee.git
synced 2026-05-12 07:43:12 +00:00
Prepare for release v0.10.0 (#629)
This commit is contained in:
parent
611f74fe56
commit
b40aacd459
10 changed files with 337 additions and 340 deletions
647
Cargo.lock
generated
647
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -256,7 +256,7 @@ OPTIONS:
|
|||
the system
|
||||
-t, --timeout <timeout> Website timeout in seconds from connect to response finished [default:
|
||||
20]
|
||||
-u, --user-agent <user-agent> User agent [default: lychee/0.9.0]
|
||||
-u, --user-agent <user-agent> User agent [default: lychee/0.10.0]
|
||||
|
||||
ARGS:
|
||||
<inputs>... The inputs (where to get links to check from). These can be: files (e.g. `README.md`), file globs
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ name = "builder"
|
|||
path = "builder.rs"
|
||||
|
||||
[dependencies]
|
||||
lychee-lib = { path = "../../lychee-lib", version = "0.9.0" }
|
||||
lychee-lib = { path = "../../lychee-lib", version = "0.10.0" }
|
||||
tokio = { version = "1.18.2", features = ["full"] }
|
||||
regex = "1.5.6"
|
||||
http = "0.2.7"
|
||||
|
|
|
|||
|
|
@ -10,5 +10,5 @@ path = "client_pool.rs"
|
|||
[dependencies]
|
||||
futures = "0.3.21"
|
||||
tokio-stream = "0.1.8"
|
||||
lychee-lib = { path = "../../lychee-lib", version = "0.9.0" }
|
||||
lychee-lib = { path = "../../lychee-lib", version = "0.10.0" }
|
||||
tokio = { version = "1.18.2", features = ["full"] }
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ name = "collect_links"
|
|||
path = "collect_links.rs"
|
||||
|
||||
[dependencies]
|
||||
lychee-lib = { path = "../../lychee-lib", version = "0.9.0" }
|
||||
lychee-lib = { path = "../../lychee-lib", version = "0.10.0" }
|
||||
tokio = { version = "1.18.2", features = ["full"] }
|
||||
regex = "1.5.6"
|
||||
http = "0.2.7"
|
||||
|
|
|
|||
|
|
@ -8,5 +8,5 @@ name = "extract"
|
|||
path = "extract.rs"
|
||||
|
||||
[dependencies]
|
||||
lychee-lib = { path = "../../lychee-lib", version = "0.9.0" }
|
||||
lychee-lib = { path = "../../lychee-lib", version = "0.10.0" }
|
||||
tokio = { version = "1.18.2", features = ["full"] }
|
||||
|
|
|
|||
|
|
@ -8,5 +8,5 @@ name = "simple"
|
|||
path = "simple.rs"
|
||||
|
||||
[dependencies]
|
||||
lychee-lib = { path = "../../lychee-lib", version = "0.9.0" }
|
||||
lychee-lib = { path = "../../lychee-lib", version = "0.10.0" }
|
||||
tokio = { version = "1.18.2", features = ["full"] }
|
||||
|
|
|
|||
|
|
@ -14,10 +14,10 @@ keywords = [
|
|||
]
|
||||
license = "Apache-2.0/MIT"
|
||||
repository = "https://github.com/lycheeverse/lychee"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
|
||||
[dependencies]
|
||||
lychee-lib = { path = "../lychee-lib", version = "0.9.0", default-features = false }
|
||||
lychee-lib = { path = "../lychee-lib", version = "0.10.0", default-features = false }
|
||||
anyhow = "1.0.57"
|
||||
console = "0.15.0"
|
||||
const_format = "0.2.24"
|
||||
|
|
@ -33,16 +33,16 @@ reqwest = { version = "0.11.10", features = ["gzip"] }
|
|||
# This is necessary for the homebrew build
|
||||
# https://github.com/Homebrew/homebrew-core/pull/70216
|
||||
ring = "0.16.20"
|
||||
serde = { version = "1.0.136", features = ["derive"] }
|
||||
serde = { version = "1.0.137", features = ["derive"] }
|
||||
serde_json = "1.0.81"
|
||||
structopt = "0.3.26"
|
||||
tabled = "0.6.1"
|
||||
tabled = "0.7.0"
|
||||
tokio = { version = "1.18.2", features = ["full"] }
|
||||
toml = "0.5.9"
|
||||
futures = "0.3.21"
|
||||
tokio-stream = "0.1.8"
|
||||
once_cell = "1.12.0"
|
||||
dashmap = { version = "5.2.0", features = ["serde"] }
|
||||
dashmap = { version = "5.3.4", features = ["serde"] }
|
||||
csv = "1.1.6"
|
||||
humantime = "2.1.0"
|
||||
secrecy = { version = "0.8.0", features = ["serde"] }
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ use std::fmt::{self, Display};
|
|||
|
||||
use super::StatsFormatter;
|
||||
use anyhow::Result;
|
||||
use tabled::{Alignment, Full, Modify, Table, Tabled};
|
||||
use tabled::{object::Segment, Alignment, Modify, Table, Tabled};
|
||||
|
||||
use crate::stats::ResponseStats;
|
||||
|
||||
|
|
@ -48,7 +48,7 @@ fn stats_table(stats: &ResponseStats) -> String {
|
|||
let style = tabled::Style::github_markdown().header_intersection('|');
|
||||
|
||||
Table::new(stats)
|
||||
.with(Modify::new(Full).with(Alignment::left()))
|
||||
.with(Modify::new(Segment::all()).with(Alignment::left()))
|
||||
.with(style)
|
||||
.to_string()
|
||||
}
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ keywords = [
|
|||
]
|
||||
license = "Apache-2.0/MIT"
|
||||
repository = "https://github.com/lycheeverse/lychee"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
|
||||
[dependencies]
|
||||
check-if-email-exists = "0.8.29"
|
||||
|
|
@ -33,7 +33,7 @@ reqwest = { version = "0.11.10", features = ["gzip", "trust-dns"] }
|
|||
# This is necessary for the homebrew build
|
||||
# https://github.com/Homebrew/homebrew-core/pull/70216
|
||||
ring = "0.16.20"
|
||||
serde = { version = "1.0.136", features = ["derive"] }
|
||||
serde = { version = "1.0.137", features = ["derive"] }
|
||||
shellexpand = "2.1.0"
|
||||
tokio = { version = "1.18.2", features = ["full"] }
|
||||
typed-builder = "0.10.0"
|
||||
|
|
|
|||
Loading…
Reference in a new issue