Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change dependabot to weekly #21

Merged
merged 1 commit into from
Nov 14, 2024
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
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ updates:
- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: "monthly"
interval: "weekly"
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ lto = "thin" # Do a second optimization pass over the entire program, inclu
nalgebra = "0.33.2"
rand = { version = "0.8.5", features = ["rand_chacha"] }
rand_distr = "0.4.3"
rerun = "0.19.1"
thiserror = "2.0.1"
serde = { version = "1.0.214", features = ["derive"] }
rerun = "0.20.0"
thiserror = "2.0.3"
serde = { version = "1.0.215", features = ["derive"] }
serde_yaml = "0.9.34"
env_logger = "0.11.5"
log = "0.4.22"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Peng is a minimal quadrotor autonomy framework written in Rust that provides rea
### Installation from Crates.io

```bash
# Install rerun-cli (ensure version >= 0.19.0)
# Install rerun-cli
cargo install rerun-cli
cargo install peng_quad
peng_quad config/quad.yaml
Expand All @@ -59,7 +59,7 @@ peng_quad config/quad.yaml
### Installation from Source

```bash
# Install rerun-cli (ensure version >= 0.19.0)
# Install rerun-cli
cargo install rerun-cli
git clone https://github.com/makeecat/Peng.git
cd Peng
Expand Down