mirror of
https://github.com/Hopiu/lychee.git
synced 2026-03-16 20:50:25 +00:00
* Bump flake 1.83.0 -> 1.87.0 * Move archive functionality into lychee-lib * Create example, update name and docs * Split function & update tests * Remove trailing slashes in API calls & update tests * Apply lint suggestions * Rename function * Move module * Add cargo-nextest to devShell to support 'make test'
19 lines
434 B
TOML
19 lines
434 B
TOML
[package]
|
|
name = "archive"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[[example]]
|
|
name = "archive"
|
|
path = "archive.rs"
|
|
|
|
[dependencies]
|
|
lychee-lib = { path = "../../lychee-lib", default-features = false }
|
|
tokio = { version = "1.45.1", features = ["full"] }
|
|
url = "2.5.4"
|
|
|
|
[features]
|
|
email-check = ["lychee-lib/email-check"]
|
|
native-tls = ["lychee-lib/native-tls"]
|
|
rustls-tls = ["lychee-lib/rustls-tls"]
|
|
default = ["native-tls", "email-check"]
|