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

Updating dependencies #35

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,14 +158,14 @@ jobs:
- uses: actions/checkout@v2

- name: check if README matches MSRV defined here
run: grep '1.70.0' README.md
run: grep '1.75.0' README.md

- name: check if Cargo.toml matches MSRV defined here
run: grep 'rust-version = "1.70.0"' Cargo.toml
run: grep 'rust-version = "1.75.0"' Cargo.toml

- uses: actions-rs/toolchain@v1
with:
toolchain: 1.70.0
toolchain: 1.75.0
override: true

- name: Check if it builds
Expand Down
123 changes: 89 additions & 34 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description = "Iridium SBD Direct-IP communication protocol"
documentation = "https://docs.rs/directip"
license = "MIT OR Apache-2.0"
repository = "https://github.com/castelao/DirectIP"
rust-version = "1.70.0"
rust-version = "1.75.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down Expand Up @@ -39,7 +39,7 @@ directip = { version = "0.2.6", path = "." }
sqlx = { version = "=0.7.0", features = ["sqlite", "runtime-tokio-native-tls"] }
tempfile = "3.8.0"
tokio = { version = "1.32.0", features = ["macros"] }
tracing = "0.1"
tracing = "0.1.40"

[lib]
name = "directip"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ the core support for applications such as the one listed below.

## Minimum supported Rust version

Currently the minimum supported Rust version is 1.70.0
Currently the minimum supported Rust version is 1.75.0

## License

Expand Down
Loading