mirror of
https://github.com/Hopiu/lychee.git
synced 2026-03-26 01:10:25 +00:00
Bumps [regex](https://github.com/rust-lang/regex) from 1.9.0 to 1.9.1. - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.0...1.9.1) --- updated-dependencies: - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
21 lines
609 B
TOML
21 lines
609 B
TOML
[package]
|
|
name = "builder"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[example]]
|
|
name = "builder"
|
|
path = "builder.rs"
|
|
|
|
[dependencies]
|
|
lychee-lib = { path = "../../lychee-lib", version = "0.13.0", default-features = false }
|
|
tokio = { version = "1.29.1", features = ["full"] }
|
|
regex = "1.9.1"
|
|
http = "0.2.9"
|
|
reqwest = { version = "0.11.18", default-features = false, features = ["gzip"] }
|
|
|
|
[features]
|
|
email-check = ["lychee-lib/email-check"]
|
|
native-tls = ["lychee-lib/native-tls", "reqwest/native-tls"]
|
|
rustls-tls = ["lychee-lib/rustls-tls", "reqwest/rustls-tls-native-roots"]
|
|
default = ["native-tls", "email-check"]
|