anki/rslib/linkchecker/Cargo.toml
Damien Elmes 26c640805c Update Rust deps
axum-client-ip excluded, as it will need further work.
2023-03-31 14:38:24 +10:00

35 lines
839 B
TOML

[package]
name = "linkchecker"
publish = false
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
# [[test]]
# name = "links"
# required-features = ["links"]
[dependencies]
anki = { path = ".." }
linkcheck = { git = "https://github.com/ankitects/linkcheck.git", rev = "2f20798ce521cc594d510d4e417e76d5eac04d4b" }
futures = "0.3.28"
itertools = "0.10.5"
lazy_static = "1.4.0"
regex = "1.7.3"
strum = { version = "0.24.1", features = ["derive"] }
tokio = { version = "1.27.0", features = ["full"] }
workspace-hack = { version = "0.1", path = "../../tools/workspace-hack" }
[features]
rustls = ["reqwest/rustls-tls", "reqwest/rustls-tls-native-roots"]
native-tls = ["reqwest/native-tls"]
[dependencies.reqwest]
version = "0.11.16"
default-features = false