mirror of
https://github.com/Hopiu/lychee.git
synced 2026-04-05 14:01:00 +00:00
Bumps the dependencies group with 2 updates: [tokio](https://github.com/tokio-rs/tokio) and [async-trait](https://github.com/dtolnay/async-trait). Updates `tokio` from 1.39.3 to 1.40.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.39.3...tokio-1.40.0) Updates `async-trait` from 0.1.81 to 0.1.82 - [Release notes](https://github.com/dtolnay/async-trait/releases) - [Commits](https://github.com/dtolnay/async-trait/compare/0.1.81...0.1.82) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: async-trait dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
18 lines
417 B
TOML
18 lines
417 B
TOML
[package]
|
|
name = "simple"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[example]]
|
|
name = "simple"
|
|
path = "simple.rs"
|
|
|
|
[dependencies]
|
|
lychee-lib = { path = "../../lychee-lib", default-features = false }
|
|
tokio = { version = "1.40.0", features = ["full"] }
|
|
|
|
[features]
|
|
email-check = ["lychee-lib/email-check"]
|
|
native-tls = ["lychee-lib/native-tls"]
|
|
rustls-tls = ["lychee-lib/rustls-tls"]
|
|
default = ["native-tls", "email-check"]
|