anki/rslib/linkchecker/Cargo.toml

23 lines
838 B
TOML
Raw Normal View History

[package]
name = "linkchecker"
version = "0.0.0"
authors = ["Ankitects Pty Ltd and contributors"]
2022-11-09 10:47:06 +01:00
edition = "2021"
license = "AGPL-3.0-or-later"
2022-11-09 10:47:06 +01:00
# [[test]]
# name = "links"
# required-features = ["links"]
[dependencies]
anki = { path = ".." }
2022-11-09 10:47:06 +01:00
linkcheck = { git = "https://github.com/ankitects/linkcheck.git", rev = "2f20798ce521cc594d510d4e417e76d5eac04d4b" }
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",] }
2022-09-24 04:39:21 +02:00
futures = "0.3.24"
itertools = "0.10.5"
2022-11-09 10:47:06 +01:00
strum = { version = "0.24.1", features = ["derive"] }
tokio = { version = "1.21.1", features = ["full"] }