Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Deniskore committed Jan 11, 2024
1 parent 489b643 commit 8ea72e1
Show file tree
Hide file tree
Showing 4 changed files with 198 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,23 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@1.61
- uses: dtolnay/rust-toolchain@1.65
- run: cargo check

test:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@1.61
- uses: dtolnay/rust-toolchain@1.65
- run: cargo test

fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@1.61
- uses: dtolnay/rust-toolchain@1.65
- run: rustup component add rustfmt
- run: cargo fmt --all -- --check

Expand All @@ -33,6 +33,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@1.61
- uses: dtolnay/rust-toolchain@1.65
- run: rustup component add clippy
- run: cargo clippy -- -D warnings
188 changes: 188 additions & 0 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iptools"
version = "0.2.4"
version = "0.2.5"
authors = ["Denis Avvakumov"]
license = "MIT"
readme = "README.md"
Expand All @@ -14,9 +14,9 @@ categories = ["algorithms", "network-programming"]
edition = "2021"

[dependencies]
regex = "1.9.3"
once_cell = "1.18.0"
ahash = "0.8.3"
regex = "1.10.2"
once_cell = "1.19.0"
ahash = "0.8.7"

[dev-dependencies]
pretty_assertions = "1.4.0"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This is a port of package [iptools](https://github.com/bd808/python-iptools) fro
Add the following dependency to your Cargo manifest:
```
[dependencies]
iptools = "0.2.4"
iptools = "0.2.5"
```

## Example of usage
Expand All @@ -30,7 +30,7 @@ println!("{:?}", first_range.contains("127.0.0.3"));
```

## Supported Rust Versions
Rust 1.61.0+
Rust 1.65.0+

## License

Expand Down

0 comments on commit 8ea72e1

Please sign in to comment.