Skip to content
This repository has been archived by the owner on Aug 30, 2022. It is now read-only.

add dependabot config #649

Merged
merged 2 commits into from
Jan 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
version: 2
updates:
- package-ecosystem: cargo
directory: "/rust"
schedule:
interval: daily
time: "09:00"
timezone: "Europe/Berlin"

- package-ecosystem: cargo
directory: "/bindings/python"
schedule:
interval: weekly
day: "monday"

- package-ecosystem: pip
directory: "/bindings/python/examples/keras_house_prices"
schedule:
interval: weekly
day: "monday"

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ The example can be found under [rust/examples/](./rust/examples/). It uses a dum
but is network-capable, so it's a good starting point for checking connectivity with
the coordinator.

### `test-drive-net.rs`
### `test-drive`

Make sure you have a running instance of the coordinator and that the clients
you will spawn with the command below are able to reach it through the network.
Expand All @@ -247,7 +247,7 @@ running on `127.0.0.1:8081`:

```bash
cd rust
RUST_LOG=info cargo run --example test-drive-net -- -n 20 -u http://127.0.0.1:8081
RUST_LOG=info cargo run --example test-drive -- -n 20 -u http://127.0.0.1:8081
```

For more in-depth details on how to run examples, see the accompanying Getting
Expand Down
4 changes: 2 additions & 2 deletions README.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ The example can be found under [rust/examples/](./rust/examples/). It uses a dum
but is network-capable, so it's a good starting point for checking connectivity with
the coordinator.

### `test-drive-net.rs`
### `test-drive`

Make sure you have a running instance of the coordinator and that the clients
you will spawn with the command below are able to reach it through the network.
Expand All @@ -157,7 +157,7 @@ running on `127.0.0.1:8081`:

```bash
cd rust
RUST_LOG=info cargo run --example test-drive-net -- -n 20 -u http://127.0.0.1:8081
RUST_LOG=info cargo run --example test-drive -- -n 20 -u http://127.0.0.1:8081
```

For more in-depth details on how to run examples, see the accompanying Getting
Expand Down
4 changes: 4 additions & 0 deletions rust/examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ license-file = "../../LICENSE"
keywords = ["federated-learning", "fl", "ai", "machine-learning"]
categories = ["science", "cryptography"]

# https://github.com/http-rs/tide/issues/225
# https://github.com/dependabot/dependabot-core/issues/1156
autobins = false

[dev-dependencies]
async-trait = "0.1.42"
# TODO (XN-1372): can't upgrade yet because of tokio
Expand Down