cargo-binstall/.github/dependabot.yml
Jiahao XU dc77a1ab93
Refactor: Extract new crate simple-git (#1304)
`binstalk-downloader` contains stuff about http(s) before the
git code is moved into it and now it becomes http and git.

While git indeed uses http stuff, which is why I decided to put
it into binstalk-downloader, it is more than just downloading
since it is stateful (can be cached locally and updated)
where as http is stateless.

Also `binstalk-downloader`'s codegen time now increases
dramatically and it also creates extra dependencies for
binstalk-fetchers, delaying its execution.

The git code also don't use anything from `binstalk-downloader`
at all, it makes sense to be an independent crate.

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
2023-08-19 01:08:55 +00:00

84 lines
2.3 KiB
YAML

# Dependabot dependency version checks / updates
version: 2
updates:
- package-ecosystem: "github-actions"
# Workflow files stored in the
# default location of `.github/workflows`
directory: "/"
schedule:
interval: "daily"
# If we include `/`, then dependabot would also create PR
# for every compatible updates.
#
# We only want incompatible updates for direct dependencies
# from dependabot since compatible updates is covered by
# `update-transitive-deps.yml`
- package-ecosystem: "cargo"
directory: "/crates/atomic-file-install"
schedule:
interval: "daily"
- package-ecosystem: "cargo"
directory: "/crates/bin"
schedule:
interval: "daily"
- package-ecosystem: "cargo"
directory: "/crates/binstalk"
schedule:
interval: "daily"
- package-ecosystem: "cargo"
directory: "/crates/binstalk-bins"
schedule:
interval: "daily"
- package-ecosystem: "cargo"
directory: "/crates/binstalk-fetchers"
schedule:
interval: "daily"
- package-ecosystem: "cargo"
directory: "/crates/binstalk-registry"
schedule:
interval: "daily"
- package-ecosystem: "cargo"
directory: "/crates/binstalk-downloader"
schedule:
interval: "daily"
- package-ecosystem: "cargo"
directory: "/crates/binstalk-manifests"
schedule:
interval: "daily"
- package-ecosystem: "cargo"
directory: "/crates/binstalk-types"
schedule:
interval: "daily"
- package-ecosystem: "cargo"
directory: "/crates/cargo-toml-workspace"
schedule:
interval: "daily"
- package-ecosystem: "cargo"
directory: "/crates/detect-targets"
schedule:
interval: "daily"
- package-ecosystem: "cargo"
directory: "/crates/detect-wasi"
schedule:
interval: "daily"
- package-ecosystem: "cargo"
directory: "/crates/fs-lock"
schedule:
interval: "daily"
- package-ecosystem: "cargo"
directory: "/crates/leon"
schedule:
interval: "daily"
- package-ecosystem: "cargo"
directory: "/crates/leon-macros"
schedule:
interval: "daily"
- package-ecosystem: "cargo"
directory: "/crates/normalize-path"
schedule:
interval: "daily"
- package-ecosystem: "cargo"
directory: "/crates/simple-git"
schedule:
interval: "daily"