30 lines
867 B
TOML
30 lines
867 B
TOML
[package]
|
|
name = "linkchecker"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
authors = ["Ankitects Pty Ltd and contributors"]
|
|
license = "AGPL-3.0-or-later"
|
|
|
|
#[[test]]
|
|
#name = "links"
|
|
#required-features = ["links"]
|
|
|
|
[dependencies]
|
|
linkcheck = { git = "https://github.com/ankitects/linkcheck.git", rev = "2f20798ce521cc594d510d4e417e76d5eac04d4b" }
|
|
anki = { path = ".." }
|
|
tokio = { version = "1.21.1", features = ["full"] }
|
|
strum = { version = "0.24.1", features = ["derive"] }
|
|
futures = "0.3.24"
|
|
reqwest = { git="https://github.com/ankitects/reqwest.git", rev="7591444614de02b658ddab125efba7b2bb4e2335", default-features=false, features=[
|
|
"json",
|
|
"socks",
|
|
"stream",
|
|
"multipart",
|
|
# the Bazel build scripts separate these out by platform
|
|
"native-tls",
|
|
"rustls-tls",
|
|
"rustls-tls-webpki-roots",
|
|
"rustls-tls-native-roots",
|
|
] }
|
|
itertools = "0.10.5"
|